
Untitled
By: a guest on
May 5th, 2012 | syntax:
None | size: 2.53 KB | hits: 11 | expires: Never
# cat /etc/debian_version
squeeze/sid
# uname -r
2.6.32-5-xen-amd64
# dpkg -l | grep -i xen
ii libxenstore3.0 3.4.3-1 Xenstore communications library for Xen
ii linux-headers-2.6-xen-amd64 2.6.32+27 Header files for Linux 2.6-xen-amd64 (meta-package)
ii linux-headers-2.6.32-5-common-xen 2.6.32-15 Common header files for Linux 2.6.32-5-xen
ii linux-headers-2.6.32-5-xen-amd64 2.6.32-15 Header files for Linux 2.6.32-5-xen-amd64
ii linux-image-2.6-xen-amd64 2.6.32+27 Linux 2.6 for 64-bit PCs (meta-package), Xen dom0 support, Xe
ii linux-image-2.6.32-5-xen-amd64 2.6.32-15 Linux 2.6.32 for 64-bit PCs, Xen dom0 support
ii linux-image-xen-amd64 2.6.32+27 Linux for 64-bit PCs (meta-package), Xen dom0 support, Xen do
ii xen-hypervisor-3.4-amd64 3.4.3-1 The Xen Hypervisor on AMD64
ii xen-utils-3.4 3.4.3-1 XEN administrative tools
ii xen-utils-common 4.0.0-1 XEN administrative tools - common files
ii xenstore-utils 3.4.3-1 Xenstore utilities for Xen
Below is a snippet of my /boot/grub/grub.cfg file:
- - - < s n i p > - - -
# Added
menuentry "Debian GNU/Linux 2.6.32-5 and Xen 3.4.3-1" --class debian --class gnu-linux --class gnu --class os {
insmod ext2
set root='(hd0,1)'
search --no-floppy --fs-uuid --set dc60eb97-4ca3-4fa1-b7ba-2fdcd88eddc9
multiboot /xen-3.4-amd64.gz dom0_mem=512M
module /vmlinuz-2.6.32-5-xen-amd64 root=UUID=c565893c-cefc-47f3-b6f8-008e948d4b02 ro vga=791 noapic nolapic nomodeset
#module /vmlinuz-2.6.32-5-xen-amd64 root=/dev/sda3 ro vga=791 noapic nolapic nomodeset
module /initrd.img-2.6.32-5-xen-amd64
}
### BEGIN /etc/grub.d/10_linux ###
menuentry "Debian GNU/Linux, with Linux 2.6.32-5-xen-amd64" --class debian --class gnu-linux --class gnu --class os {
insmod ext2
set root='(hd0,1)'
search --no-floppy --fs-uuid --set dc60eb97-4ca3-4fa1-b7ba-2fdcd88eddc9
echo Loading Linux 2.6.32-5-xen-amd64 ...
linux /vmlinuz-2.6.32-5-xen-amd64 root=UUID=c565893c-cefc-47f3-b6f8-008e948d4b02 ro vga=791 noapic nolapic
echo Loading initial ramdisk ...
initrd /initrd.img-2.6.32-5-xen-amd64
}
- - - < s n i p > - - -