Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "EMF Build Server Setup/VMWare"

(New page: If you'd like to run multiple server instances on the same machine, you can use some virtualization software such as [http://www.vmware.com/download/player/ VMWare Player]. If installing ...)
 
m
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
 
If you'd like to run multiple server instances on the same machine, you can use some virtualization software such as [http://www.vmware.com/download/player/ VMWare Player].
 
If you'd like to run multiple server instances on the same machine, you can use some virtualization software such as [http://www.vmware.com/download/player/ VMWare Player].
  
If installing on a Debian/Ubuntu-basesd system, you may run into problems running the installer. Here's the workaround:
+
===Install The Player===
 +
 
 +
If installing on a Debian/Ubuntu-based system, you may run into problems running the installer. Here's the workaround.
  
 
1. First, set your gcc compiler to match the one your system's kernel used.  
 
1. First, set your gcc compiler to match the one your system's kernel used.  
Line 16: Line 18:
 
{{codeblock|<nowiki>cd /tmp/; tar xzf VMware-player-2.0.1-55017.i386.tar.gz; \
 
{{codeblock|<nowiki>cd /tmp/; tar xzf VMware-player-2.0.1-55017.i386.tar.gz; \
 
cd vmware-player-distrib; ./vmware-install.pl</nowiki>}}
 
cd vmware-player-distrib; ./vmware-install.pl</nowiki>}}
 +
 +
===Get An Image===
 +
 +
Download a VMWare appliance from one of these places, then unpack it and start it up.
 +
 +
* [http://search-www.vmware.com/socialsearch/query?cn=vmware&cc=www&st=1&adv=0&bn_uf=VMware_Site_appliances_dir&bn_if=VMware_Site_appliances_dir&q=ubuntu+server&x=0&y=0 VMWare Appliances Directory]
 +
* [http://canned-os.blogspot.com/2008/01/finally-grandmas-lamp-101-download-link.html The Canned OS Project]
 +
 +
===Configure The Image===
 +
 +
Now that you have a working linux image, you can start installing other software into it, and configuring the filesystem according to these instructions.
 +
 +
* [[EMF Build Server Setup|Ubuntu/Debian Build Server Setup]]
 +
* [[EMFT Build Server Setup|RedHat/Fedora Build Server Setup]]
 +
 +
[[Category:Releng]]

Latest revision as of 12:30, 9 April 2008

If you'd like to run multiple server instances on the same machine, you can use some virtualization software such as VMWare Player.

Install The Player

If installing on a Debian/Ubuntu-based system, you may run into problems running the installer. Here's the workaround.

1. First, set your gcc compiler to match the one your system's kernel used.

cd /usr/bin; mv gcc gcc.ORIG; ln -s gcc-4.1 gcc

2. Next, install your kernel's header files, and symlink them to where the installer wants them:

apt-get install linux-headers-$(uname -r); \
cd /usr/src/; ln -s ln -s linux-headers-2.6.22-1-mepis-smp linux

3. Unpack the provided tar.gz, and run the installer:

cd /tmp/; tar xzf VMware-player-2.0.1-55017.i386.tar.gz; \
cd vmware-player-distrib; ./vmware-install.pl

Get An Image

Download a VMWare appliance from one of these places, then unpack it and start it up.

Configure The Image

Now that you have a working linux image, you can start installing other software into it, and configuring the filesystem according to these instructions.

Back to the top