From LedHed's Wiki
Jump to: navigation, search
Line 24: Line 24:
 
  sudo sed -i 's/tty1/hvc0/g' hvc0.conf
 
  sudo sed -i 's/tty1/hvc0/g' hvc0.conf
  
 +
 +
=== Graphical Console ===
 +
The "Desktop" and "Alternate" distributions of Ubuntu boot into X11/Gnome. In order to access the Gnome session from XenCenter (rather than the CLI console) you need to enable VNC on Ubuntu and setup gdm to call vnc on display 0.
 +
 +
''NOTE:'' Most tutorials involving gdm/VNC involve setting up xinetd, but if you have any packages that require openbsd-inetd (like LTSP) then you cannot install xinetd.  Here is a link for running vnc as a service from openbsd-inetd.
  
 
=== Files ===
 
=== Files ===
Line 36: Line 41:
  
 
=== References ===
 
=== References ===
 +
'''PV / XS-Tools'''
 
http://www.bishopbarrington.net/wiki/howto/lucidonxenserver
 
http://www.bishopbarrington.net/wiki/howto/lucidonxenserver
 +
 +
'''Graphical Console for PV VM's'''<br>
 +
https://help.ubuntu.com/community/Xen#GNOME%20as%20domU%20guest
 +
http://community.citrix.com/display/ocb/2008/07/02/Installing+Ubuntu+on+XenServer
 +
 +
 +
  
  
  
 
[[Category:XenServer]]
 
[[Category:XenServer]]

Revision as of 17:09, 27 May 2010

Ubuntu 10.04 LTS

Install

Within XenServer Create a new VM using the "Other Install Media".
Choose an Ubuntu amd64 ISO, i386 ISO's don't seem to work.
NOTE: XenServer 5.5 doesn't support booting from the ext4 file system! During the install process make sure to format the / partition as ext3 or create a separate /boot partition formatted as ext3 so that XenServer can access the boot images.


Make sure to enable OpenSSH either during the install or upon first boot. After the install is finished, boot the new VM. If you didn't enable SSH access during install, now is the time to do it:

sudo apt-get install openssh-server


Modifications to the Guest OS

We need to create console for Xen, the easiest way to do this is to copy tty1.conf to hvc0.conf

Duplicate /etc/init/tty1.conf

cd /etc/init
sudo cp tty1.conf hvc0.conf

Do an inline find and replace with sed

sudo sed -i 's/tty1/hvc0/g' hvc0.conf


Graphical Console

The "Desktop" and "Alternate" distributions of Ubuntu boot into X11/Gnome. In order to access the Gnome session from XenCenter (rather than the CLI console) you need to enable VNC on Ubuntu and setup gdm to call vnc on display 0.

NOTE: Most tutorials involving gdm/VNC involve setting up xinetd, but if you have any packages that require openbsd-inetd (like LTSP) then you cannot install xinetd. Here is a link for running vnc as a service from openbsd-inetd.

Files

Reference HowTo in PDF
Media:Ubuntu_10.04_XenServer_HowTo.pdf

XenServer Host Script for making a VM a PV.
Media:Makepv.sh


References

PV / XS-Tools http://www.bishopbarrington.net/wiki/howto/lucidonxenserver

Graphical Console for PV VM's
https://help.ubuntu.com/community/Xen#GNOME%20as%20domU%20guest http://community.citrix.com/display/ocb/2008/07/02/Installing+Ubuntu+on+XenServer