Advertisement
Guest User

Untitled

a guest
May 25th, 2012
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. Ubuntu Guest Console (Configure Guest):
  2.  
  3. apt-get update && apt-get install linux-image-generic-pae
  4. cp /etc/init/tty1.conf /etc/init/hvc0.conf
  5. nano -w /etc/init/hvc0.conf (replace all tty1 with hvc0)
  6. shutdown -P now
  7. Citrix XenServer Console (Configure XenServer):
  8.  
  9. xe vm-list power-state=halted (write down UUID for TKL VM)
  10. xe vm-param-set uuid=<UUID> HVM-boot-policy=
  11. xe vm-param-set uuid=<UUID> PV-bootloader=pygrub
  12. xe vm-disk-list uuid=<UUID> (find VB disk UUID)
  13. xe vbd-param-set uuid=<VBD UUID> bootable=true
  14. Start appliance and restart XenCenter Manager
  15. Ubuntu Guest Console (Install XenTools)
  16.  
  17. mount /dev/xvdd /cdrom
  18. dpkg -i /mnt/Linux/xe-guest-utilities*i386.deb (OR dpkg -i /mnt/Linux/xe-guest-utilities*amd64.deb for 64-bit appliances)
  19. umount /mnt
  20. sudo reboot
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement