Install the XenServer Tools on ubuntu
Put the xs-tools.iso in the virtual DVD..
Log in to the vm via the console or SSH
Create a dir called xs-tools under /mn/
sudo mkdir /mnt/xs-tools
- Mount the XenServer Tool iso to Linux
sudo mount /dev/xvdd /mnt/xs-tools
- Go to the linux dir on the mounted iso
cd /mnt/xs-tools/Linux/
- Check version of the utilities
ls -l | grep .deb
You will se something like this:
Linux$ ls -l | grep .deb dr-xr-xr-x 2 root root 2048 May 25 2013 debian-lenny -r--r--r-- 1 root root 150 Nov 28 15:57 versions.deb -r--r--r-- 1 root root 53484 Nov 28 15:57 xe-guest-utilities_6.2.0-1133_amd64.deb -r--r--r-- 1 root root 53486 Nov 28 15:57 xe-guest-utilities_6.2.0-1133_i386.de
- Check if you are running 32bit or 64 bit
uname -i x86_64
As you see I’m running 64 bit.
- To Install the 64 bit package type:
<pre class=”toolbar:2 nums:false lang:default decode:true title=” to=”” install=”” type:=”“>sudo dpkg -i xe-guest-utilities_6.2.0-1133_amd64.deb</pre>
if you have the 32 bit version then you should install the 32 bit package
sudo dpkg -i xe-guest-utilities_6.2.0-1133_i386.de
Now you have the xenserver tools installed to your ubuntu machine