I made a install of XEN but after booting into xen, it reboots sometime later, without an information. does anyone know what to do. I did the install acording to: https://wiki.ubuntu.com/XenVirtualMachine/XenOnUbuntuBinaryInstall have Raid1 on two s-ata drives and a lspci like this: xen@ubuntu:~$ lspci 0000:00:00.0 Memory controller: nVidia Corporation: Unknown device 005e (rev a3) 0000:00:01.0 ISA bridge: nVidia Corporation: Unknown device 0050 (rev a3) 0000:00:01.1 SMBus: nVidia Corporation: Unknown device 0052 (rev a2) 0000:00:02.0 USB Controller: nVidia Corporation: Unknown device 005a (rev a2) 0000:00:02.1 USB Controller: nVidia Corporation: Unknown device 005b (rev a3) 0000:00:06.0 IDE interface: nVidia Corporation: Unknown device 0053 (rev f2) 0000:00:07.0 IDE interface: nVidia Corporation: Unknown device 0054 (rev f3) 0000:00:08.0 IDE interface: nVidia Corporation: Unknown device 0055 (rev f3) 0000:00:09.0 PCI bridge: nVidia Corporation: Unknown device 005c (rev a2) 0000:00:0a.0 Bridge: nVidia Corporation: Unknown device 0057 (rev a3) 0000:00:0b.0 PCI bridge: nVidia Corporation: Unknown device 005d (rev a3) 0000:00:0c.0 PCI bridge: nVidia Corporation: Unknown device 005d (rev a3) 0000:00:0d.0 PCI bridge: nVidia Corporation: Unknown device 005d (rev a3) 0000:00:0e.0 PCI bridge: nVidia Corporation: Unknown device 005d (rev a3) 0000:00:18.0 Host bridge: Advanced Micro Devices [AMD] K8 NorthBridge 0000:00:18.1 Host bridge: Advanced Micro Devices [AMD] K8 NorthBridge 0000:00:18.2 Host bridge: Advanced Micro Devices [AMD] K8 NorthBridge 0000:00:18.3 Host bridge: Advanced Micro Devices [AMD] K8 NorthBridge 0000:01:00.0 VGA compatible controller: nVidia Corporation: Unknown device 0160 (rev a1) 0000:05:07.0 Ethernet controller: 3Com Corporation 3c905B 100BaseTX [Cyclone] (r ev 30) 0000:05:0b.0 FireWire (IEEE 1394): Texas Instruments TSB43AB22/A IEEE-1394a-2000 Controller (PHY/Link) xen@ubuntu:~$ _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
Quoting Tulasi <kuzum@mebias.org>:> I made a install of XEN but after booting into xen, it reboots > sometime later, without an information. > > does anyone know what to do. >Add ''noreboot'' (without quotes) to the Xen commandline in your grub or lilo configuration. Now Xen will just halt when something goes wrong instead of immediately rebooting, thus allowing you to see what went wrong. See section 10.3 in the Xen users manual, http://www.cl.cam.ac.uk/Research/SRG/netos/xen/readmes/user/user.html It''s quite possible that the 2.6.12 kernel does not support your nVidia SATA controller. I would recommend you try Xen 3.0.2 that was released a few days ago (it uses kernel 2.6.16). It can be found at http://www.cl.cam.ac.uk/Research/SRG/netos/xen/downloads Cheers, Peter _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
non of the kernels seems to understand my nVidia Sata controller: Cannot open root device "md2" or unknown block(0,0) please append a correct "root=" boot option kernel panic - not syncing: VFS: Unable to mount root fs on unknown-block(0,0) here is my grub conf. title Ubuntu, kernel 2.6.12-9-386 root (hd0,0) kernel /vmlinuz-2.6.12-9-386 root=/dev/md2 ro quiet splash initrd /initrd.img-2.6.12-9-386 savedefault boot title Xen 3.0 / XenLinux 2.6 kernel /xen-3.0.1.gz noreboot module /vmlinuz-2.6.12.6-xen root=/dev/md2 ro console=tty0 title Xen 3.0 / XenLinux 2.6 kernel /xen-3.0.2.gz noreboot module /vmlinuz-2.6.16-xen root=/dev/md2 ro console=tty0 strange Ubuntu 5.10 does recognize the harddrives not so the the latest Ubuntu Dapper, same with Fedora4 and the latest Fedora5 should i get just two IDE Harddisk? thanks Am Sonntag, den 09.04.2006, 15:29 +0200 schrieb Peter Fokkinga:> Quoting Tulasi <kuzum@mebias.org>: > > I made a install of XEN but after booting into xen, it reboots > > sometime later, without an information. > > > > does anyone know what to do. > > > Add ''noreboot'' (without quotes) to the Xen commandline in your > grub or lilo configuration. Now Xen will just halt when something > goes wrong instead of immediately rebooting, thus allowing you > to see what went wrong. See section 10.3 in the Xen users manual, > http://www.cl.cam.ac.uk/Research/SRG/netos/xen/readmes/user/user.html > > It''s quite possible that the 2.6.12 kernel does not support your > nVidia SATA controller. I would recommend you try Xen 3.0.2 that > was released a few days ago (it uses kernel 2.6.16). It can be > found at http://www.cl.cam.ac.uk/Research/SRG/netos/xen/downloads > > Cheers, Peter > > _______________________________________________ > Xen-users mailing list > Xen-users@lists.xensource.com > http://lists.xensource.com/xen-users_______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
Hello Tulasi, I think the problem is not the SATA driver, but that you are running on a RAID (md2). As seen in your non-Xen booting, you are using a initrd, so you also need to create and use one for your xen boot. For Xen 3.0.2 it works this way: depmod 2.6.16-xen mkinitrd -o /boot/initrd.img-2.6.16.xen 2.6.16-xen In menu.lst: title Xen 3.0.2 / XenLinux 2.6.16 root (hd0,0) kernel /boot/xen-3.0.2.gz dom0_mem=262144 module /boot/vmlinuz-2.6.16-xen root=/dev/md2 ro console=tty0 module /boot/initrd.img-2.6.16-xen savedefault boot Seneca T> non of the kernels seems to understand my nVidia Sata controller: T> Cannot open root device "md2" or unknown block(0,0) T> please append a correct "root=" boot option T> kernel panic - not syncing: VFS: Unable to mount root fs on T> unknown-block(0,0) T> here is my grub conf. T> title Ubuntu, kernel 2.6.12-9-386 T> root (hd0,0) T> kernel /vmlinuz-2.6.12-9-386 root=/dev/md2 ro quiet splash T> initrd /initrd.img-2.6.12-9-386 T> savedefault T> boot T> title Xen 3.0 / XenLinux 2.6 T> kernel /xen-3.0.1.gz noreboot T> module /vmlinuz-2.6.12.6-xen root=/dev/md2 ro console=tty0 T> title Xen 3.0 / XenLinux 2.6 T> kernel /xen-3.0.2.gz noreboot T> module /vmlinuz-2.6.16-xen root=/dev/md2 ro console=tty0 T> strange Ubuntu 5.10 does recognize the harddrives not so the the latest T> Ubuntu Dapper, same with Fedora4 and the latest Fedora5 T> should i get just two IDE Harddisk? T> thanks T> Am Sonntag, den 09.04.2006, 15:29 +0200 schrieb Peter Fokkinga:>> Quoting Tulasi <kuzum@mebias.org>: >> > I made a install of XEN but after booting into xen, it reboots >> > sometime later, without an information. >> > >> > does anyone know what to do. >> > >> Add ''noreboot'' (without quotes) to the Xen commandline in your >> grub or lilo configuration. Now Xen will just halt when something >> goes wrong instead of immediately rebooting, thus allowing you >> to see what went wrong. See section 10.3 in the Xen users manual, >> http://www.cl.cam.ac.uk/Research/SRG/netos/xen/readmes/user/user.html >> >> It''s quite possible that the 2.6.12 kernel does not support your >> nVidia SATA controller. I would recommend you try Xen 3.0.2 that >> was released a few days ago (it uses kernel 2.6.16). It can be >> found at http://www.cl.cam.ac.uk/Research/SRG/netos/xen/downloads >> >> Cheers, Peter >> >> _______________________________________________ >> Xen-users mailing list >> Xen-users@lists.xensource.com >> http://lists.xensource.com/xen-usersT> _______________________________________________ T> Xen-users mailing list T> Xen-users@lists.xensource.com T> http://lists.xensource.com/xen-users _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
Quoting Tulasi <kuzum@mebias.org>:> non of the kernels seems to understand my nVidia Sata controller: > > Cannot open root device "md2" or unknown block(0,0) > please append a correct "root=" boot option > kernel panic - not syncing: VFS: Unable to mount root fs on > unknown-block(0,0) >Are you sure it''s the nVidia controller that is the culprit, and not the md driver? It could be that the md driver is compiled as a module, in which case you need to create a initrd image. Since your using raid1, you should be able to boot from one of the disks that make up the raid volume. If /dev/md2 is composed of /dev/sda2 and /dev/sdb2 (example), then change the argumentline to root=/dev/sda2 If you can boot with root=/dev/sda2 then it''s not a controller problem. Good luck, Peter _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
Thanks Seneca still get error: mdadm: error opening /devfs/md/1: No such file or directory mdadm: error opening /devfs/md/2: No such file or directory mount: devfs: not mounted mount: unknown filesystem type "devfs" ivot_root: No such file or directory sbin/init: 428: cannot open dev/console: No such file kernel panic: bla bla bla..... regards Am Sonntag, den 09.04.2006, 23:39 +0200 schrieb Seneca: Hello Tulasi, I think the problem is not the SATA driver, but that you are running on a RAID (md2). As seen in your non-Xen booting, you are using a initrd, so you also need to create and use one for your xen boot. For Xen 3.0.2 it works this way: depmod 2.6.16-xen mkinitrd -o /boot/initrd.img-2.6.16.xen 2.6.16-xen In menu.lst: title Xen 3.0.2 / XenLinux 2.6.16 root (hd0,0) kernel /boot/xen-3.0.2.gz dom0_mem=262144 module /boot/vmlinuz-2.6.16-xen root=/dev/md2 ro console=tty0 module /boot/initrd.img-2.6.16-xen savedefault boot Seneca T> non of the kernels seems to understand my nVidia Sata controller: T> Cannot open root device "md2" or unknown block(0,0) T> please append a correct "root=" boot option T> kernel panic - not syncing: VFS: Unable to mount root fs on T> unknown-block(0,0) T> here is my grub conf. T> title Ubuntu, kernel 2.6.12-9-386 T> root (hd0,0) T> kernel /vmlinuz-2.6.12-9-386 root=/dev/md2 ro quiet splash T> initrd /initrd.img-2.6.12-9-386 T> savedefault T> boot T> title Xen 3.0 / XenLinux 2.6 T> kernel /xen-3.0.1.gz noreboot T> module /vmlinuz-2.6.12.6-xen root=/dev/md2 ro console=tty0 T> title Xen 3.0 / XenLinux 2.6 T> kernel /xen-3.0.2.gz noreboot T> module /vmlinuz-2.6.16-xen root=/dev/md2 ro console=tty0 T> strange Ubuntu 5.10 does recognize the harddrives not so the the latest T> Ubuntu Dapper, same with Fedora4 and the latest Fedora5 T> should i get just two IDE Harddisk? T> thanks T> Am Sonntag, den 09.04.2006, 15:29 +0200 schrieb Peter Fokkinga:>> Quoting Tulasi <kuzum@mebias.org>: >> > I made a install of XEN but after booting into xen, it reboots >> > sometime later, without an information. >> > >> > does anyone know what to do. >> > >> Add ''noreboot'' (without quotes) to the Xen commandline in your >> grub or lilo configuration. Now Xen will just halt when something >> goes wrong instead of immediately rebooting, thus allowing you >> to see what went wrong. See section 10.3 in the Xen users manual, >> http://www.cl.cam.ac.uk/Research/SRG/netos/xen/readmes/user/user.html >> >> It''s quite possible that the 2.6.12 kernel does not support your >> nVidia SATA controller. I would recommend you try Xen 3.0.2 that >> was released a few days ago (it uses kernel 2.6.16). It can be >> found at http://www.cl.cam.ac.uk/Research/SRG/netos/xen/downloads >> >> Cheers, Peter >> >> _______________________________________________ >> Xen-users mailing list >> Xen-users@lists.xensource.com >> http://lists.xensource.com/xen-usersT> _______________________________________________ T> Xen-users mailing list T> Xen-users@lists.xensource.com T> http://lists.xensource.com/xen-users _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
Hello Tulasi, I see a misspeling in my suggestion, once it is initrd.img-2.6.16-xen and once initrd.img-2.6.16.xen It must be exactly the same of cause, otherwise the file will not be found by grub. T> mdadm: error opening /devfs/md/1: No such file or directory T> mdadm: error opening /devfs/md/2: No such file or directory Now this looks really odd. Could you post your /etc/fstab file, the current menu.lst and a dir of /boot ? Seneca You wrote at Montag, 10. April 2006 23:57: T> Thanks Seneca T> still get error: T> mdadm: error opening /devfs/md/1: No such file or directory T> mdadm: error opening /devfs/md/2: No such file or directory T> mount: devfs: not mounted T> mount: unknown filesystem type "devfs" T> ivot_root: No such file or directory T> sbin/init: 428: cannot open dev/console: No such file T> kernel panic: bla bla bla..... T> regards T> Am Sonntag, den 09.04.2006, 23:39 +0200 schrieb Seneca: T> Hello Tulasi, T> I think the problem is not the SATA driver, but that you are running T> on a RAID (md2). As seen in your non-Xen booting, you are using a T> initrd, so you also need to create and use one for your xen boot. T> For Xen 3.0.2 it works this way: T> depmod 2.6.16-xen T> mkinitrd -o /boot/initrd.img-2.6.16.xen 2.6.16-xen T> In menu.lst: T> title Xen 3.0.2 / XenLinux 2.6.16 T> root (hd0,0) T> kernel /boot/xen-3.0.2.gz dom0_mem=262144 T> module /boot/vmlinuz-2.6.16-xen root=/dev/md2 ro console=tty0 T> module /boot/initrd.img-2.6.16-xen T> savedefault T> boot T> Seneca T>> non of the kernels seems to understand my nVidia Sata controller: T>> Cannot open root device "md2" or unknown block(0,0) T>> please append a correct "root=" boot option T>> kernel panic - not syncing: VFS: Unable to mount root fs on T>> unknown-block(0,0) T>> here is my grub conf. T>> title Ubuntu, kernel 2.6.12-9-386 T>> root (hd0,0) T>> kernel /vmlinuz-2.6.12-9-386 root=/dev/md2 ro quiet splash T>> initrd /initrd.img-2.6.12-9-386 T>> savedefault T>> boot T>> title Xen 3.0 / XenLinux 2.6 T>> kernel /xen-3.0.1.gz noreboot T>> module /vmlinuz-2.6.12.6-xen root=/dev/md2 ro console=tty0 T>> title Xen 3.0 / XenLinux 2.6 T>> kernel /xen-3.0.2.gz noreboot T>> module /vmlinuz-2.6.16-xen root=/dev/md2 ro console=tty0 T>> strange Ubuntu 5.10 does recognize the harddrives not so the the T> latest T>> Ubuntu Dapper, same with Fedora4 and the latest Fedora5 T>> should i get just two IDE Harddisk? T>> thanks T>> Am Sonntag, den 09.04.2006, 15:29 +0200 schrieb Peter Fokkinga:>>> Quoting Tulasi <kuzum@mebias.org>: >>> > I made a install of XEN but after booting into xen, it reboots >>> > sometime later, without an information. >>> > >>> > does anyone know what to do. >>> > >>> Add ''noreboot'' (without quotes) to the Xen commandline in your >>> grub or lilo configuration. Now Xen will just halt when something >>> goes wrong instead of immediately rebooting, thus allowing you >>> to see what went wrong. See section 10.3 in the Xen users manual, >>> http://www.cl.cam.ac.uk/Research/SRG/netos/xen/readmes/user/user.html >>> >>> It''s quite possible that the 2.6.12 kernel does not support your >>> nVidia SATA controller. I would recommend you try Xen 3.0.2 that >>> was released a few days ago (it uses kernel 2.6.16). It can be >>> found at http://www.cl.cam.ac.uk/Research/SRG/netos/xen/downloads >>> >>> Cheers, Peter >>> >>> _______________________________________________ >>> Xen-users mailing list >>> Xen-users@lists.xensource.com >>> http://lists.xensource.com/xen-usersT>> _______________________________________________ T>> Xen-users mailing list T>> Xen-users@lists.xensource.com T>> http://lists.xensource.com/xen-users T> _______________________________________________ T> Xen-users mailing list T> Xen-users@lists.xensource.com T> http://lists.xensource.com/xen-users _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
Hello Seneca here is the requested information: xen@ubuntu:~$ cat /etc/fstab # /etc/fstab: static file system information. # # <file system> <mount point> <type> <options> <dump> <pass> proc /proc proc defaults 0 0 /dev/md2 / ext3 defaults,errors=remount-ro 0 1 /dev/md0 /boot ext3 defaults 0 2 /dev/md3 /srv ext3 defaults 0 2 /dev/md1 none swap sw 0 0 /dev/hdb /media/cdrom0 udf,iso9660 user,noauto 0 0 xen@ubuntu:~$ /boot/grub/menu.lst: title Ubuntu, kernel 2.6.12-9-386 root (hd0,0) kernel /vmlinuz-2.6.12-9-386 root=/dev/md2 ro quiet splash initrd /initrd.img-2.6.12-9-386 savedefault boot title Xen 3.0 / XenLinux 2.6.16 root (hd0,0) kernel /xen-3.0.2.gz noreboot dom0_mem=262144 module /vmlinuz-2.6.16-xen root=/dev/md2 ro console=tty0 module /initrd.img-2.6.16.xen savedefault boot title Ubuntu, kernel 2.6.12-9-386 (recovery mode) root (hd0,0) kernel /vmlinuz-2.6.12-9-386 root=/dev/md2 ro single initrd /initrd.img-2.6.12-9-386 boot title Ubuntu, memtest86+ root (hd0,0) kernel /memtest86+.bin boot and last the boot dir: Am Dienstag, den 11.04.2006, 08:25 +0200 schrieb Seneca:> Hello Tulasi, > > I see a misspeling in my suggestion, once it is > > initrd.img-2.6.16-xen > > and once > > initrd.img-2.6.16.xen > > It must be exactly the same of cause, otherwise the file will not be > found by grub. > > > T> mdadm: error opening /devfs/md/1: No such file or directory > T> mdadm: error opening /devfs/md/2: No such file or directory > > Now this looks really odd. Could you post your /etc/fstab file, > the current menu.lst and a dir of /boot ? > > Seneca > > > > You wrote at Montag, 10. April 2006 23:57: > > T> Thanks Seneca > > > T> still get error: > > T> mdadm: error opening /devfs/md/1: No such file or directory > T> mdadm: error opening /devfs/md/2: No such file or directory > T> mount: devfs: not mounted > T> mount: unknown filesystem type "devfs" > T> ivot_root: No such file or directory > T> sbin/init: 428: cannot open dev/console: No such file > T> kernel panic: bla bla bla..... > > T> regards > > T> Am Sonntag, den 09.04.2006, 23:39 +0200 schrieb Seneca: > > T> Hello Tulasi, > > T> I think the problem is not the SATA driver, but that you are running > T> on a RAID (md2). As seen in your non-Xen booting, you are using a > T> initrd, so you also need to create and use one for your xen boot. > > T> For Xen 3.0.2 it works this way: > > T> depmod 2.6.16-xen > T> mkinitrd -o /boot/initrd.img-2.6.16.xen 2.6.16-xen > > T> In menu.lst: > > T> title Xen 3.0.2 / XenLinux 2.6.16 > T> root (hd0,0) > T> kernel /boot/xen-3.0.2.gz dom0_mem=262144 > T> module /boot/vmlinuz-2.6.16-xen root=/dev/md2 ro console=tty0 > T> module /boot/initrd.img-2.6.16-xen > T> savedefault > T> boot > > T> Seneca > > T>> non of the kernels seems to understand my nVidia Sata controller: > > T>> Cannot open root device "md2" or unknown block(0,0) > T>> please append a correct "root=" boot option > T>> kernel panic - not syncing: VFS: Unable to mount root fs on > T>> unknown-block(0,0) > > T>> here is my grub conf. > > T>> title Ubuntu, kernel 2.6.12-9-386 > T>> root (hd0,0) > T>> kernel /vmlinuz-2.6.12-9-386 root=/dev/md2 ro quiet splash > T>> initrd /initrd.img-2.6.12-9-386 > T>> savedefault > T>> boot > > T>> title Xen 3.0 / XenLinux 2.6 > T>> kernel /xen-3.0.1.gz noreboot > T>> module /vmlinuz-2.6.12.6-xen root=/dev/md2 ro console=tty0 > > T>> title Xen 3.0 / XenLinux 2.6 > T>> kernel /xen-3.0.2.gz noreboot > T>> module /vmlinuz-2.6.16-xen root=/dev/md2 ro console=tty0 > > T>> strange Ubuntu 5.10 does recognize the harddrives not so the the > T> latest > T>> Ubuntu Dapper, same with Fedora4 and the latest Fedora5 > > T>> should i get just two IDE Harddisk? > > T>> thanks > > T>> Am Sonntag, den 09.04.2006, 15:29 +0200 schrieb Peter Fokkinga: > >>> Quoting Tulasi <kuzum@mebias.org>: > >>> > I made a install of XEN but after booting into xen, it reboots > >>> > sometime later, without an information. > >>> > > >>> > does anyone know what to do. > >>> > > >>> Add ''noreboot'' (without quotes) to the Xen commandline in your > >>> grub or lilo configuration. Now Xen will just halt when something > >>> goes wrong instead of immediately rebooting, thus allowing you > >>> to see what went wrong. See section 10.3 in the Xen users manual, > >>> http://www.cl.cam.ac.uk/Research/SRG/netos/xen/readmes/user/user.html > >>> > >>> It''s quite possible that the 2.6.12 kernel does not support your > >>> nVidia SATA controller. I would recommend you try Xen 3.0.2 that > >>> was released a few days ago (it uses kernel 2.6.16). It can be > >>> found at http://www.cl.cam.ac.uk/Research/SRG/netos/xen/downloads > >>> > >>> Cheers, Peter > >>> > >>> _______________________________________________ > >>> Xen-users mailing list > >>> Xen-users@lists.xensource.com > >>> http://lists.xensource.com/xen-users > > > T>> _______________________________________________ > T>> Xen-users mailing list > T>> Xen-users@lists.xensource.com > T>> http://lists.xensource.com/xen-users > > > T> _______________________________________________ > T> Xen-users mailing list > T> Xen-users@lists.xensource.com > T> http://lists.xensource.com/xen-users > > > _______________________________________________ > Xen-users mailing list > Xen-users@lists.xensource.com > http://lists.xensource.com/xen-users_______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
I cant see anything wrong in the setup, and since it boots without problems with your ubuntu 2.6.12 kernel it *should* also work with the xen 2.6.16. There have been discussions about similar problems and possible solutions in the thread below: http://ubuntuforums.org/showthread.php?t=25938 Btw. did you install the precompiled xen 3.0.2 distribution or did you compile it from source? Seneca T> Hello Seneca T> here is the requested information: T> xen@ubuntu:~$ cat /etc/fstab T> # /etc/fstab: static file system information. T> # T> # <file system> <mount point> <type> <options> <dump> <pass> T> proc /proc proc defaults 0 0 T> /dev/md2 / ext3 defaults,errors=remount-ro 0 T> 1 T> /dev/md0 /boot ext3 defaults 0 2 T> /dev/md3 /srv ext3 defaults 0 2 T> /dev/md1 none swap sw 0 0 T> /dev/hdb /media/cdrom0 udf,iso9660 user,noauto 0 0 T> xen@ubuntu:~$ T> /boot/grub/menu.lst: T> title Ubuntu, kernel 2.6.12-9-386 T> root (hd0,0) T> kernel /vmlinuz-2.6.12-9-386 root=/dev/md2 ro quiet splash T> initrd /initrd.img-2.6.12-9-386 T> savedefault T> boot T> title Xen 3.0 / XenLinux 2.6.16 T> root (hd0,0) T> kernel /xen-3.0.2.gz noreboot dom0_mem=262144 T> module /vmlinuz-2.6.16-xen root=/dev/md2 ro console=tty0 T> module /initrd.img-2.6.16.xen T> savedefault T> boot T> title Ubuntu, kernel 2.6.12-9-386 (recovery mode) T> root (hd0,0) T> kernel /vmlinuz-2.6.12-9-386 root=/dev/md2 ro single T> initrd /initrd.img-2.6.12-9-386 T> boot T> title Ubuntu, memtest86+ T> root (hd0,0) T> kernel /memtest86+.bin T> boot T> and last the boot dir: T> Am Dienstag, den 11.04.2006, 08:25 +0200 schrieb Seneca:>> Hello Tulasi, >> >> I see a misspeling in my suggestion, once it is >> >> initrd.img-2.6.16-xen >> >> and once >> >> initrd.img-2.6.16.xen >> >> It must be exactly the same of cause, otherwise the file will not be >> found by grub. >> >> >> T> mdadm: error opening /devfs/md/1: No such file or directory >> T> mdadm: error opening /devfs/md/2: No such file or directory >> >> Now this looks really odd. Could you post your /etc/fstab file, >> the current menu.lst and a dir of /boot ? >> >> Seneca >> >> >> >> You wrote at Montag, 10. April 2006 23:57: >> >> T> Thanks Seneca >> >> >> T> still get error: >> >> T> mdadm: error opening /devfs/md/1: No such file or directory >> T> mdadm: error opening /devfs/md/2: No such file or directory >> T> mount: devfs: not mounted >> T> mount: unknown filesystem type "devfs" >> T> ivot_root: No such file or directory >> T> sbin/init: 428: cannot open dev/console: No such file >> T> kernel panic: bla bla bla..... >> >> T> regards >> >> T> Am Sonntag, den 09.04.2006, 23:39 +0200 schrieb Seneca: >> >> T> Hello Tulasi, >> >> T> I think the problem is not the SATA driver, but that you are running >> T> on a RAID (md2). As seen in your non-Xen booting, you are using a >> T> initrd, so you also need to create and use one for your xen boot. >> >> T> For Xen 3.0.2 it works this way: >> >> T> depmod 2.6.16-xen >> T> mkinitrd -o /boot/initrd.img-2.6.16.xen 2.6.16-xen >> >> T> In menu.lst: >> >> T> title Xen 3.0.2 / XenLinux 2.6.16 >> T> root (hd0,0) >> T> kernel /boot/xen-3.0.2.gz dom0_mem=262144 >> T> module /boot/vmlinuz-2.6.16-xen root=/dev/md2 ro console=tty0 >> T> module /boot/initrd.img-2.6.16-xen >> T> savedefault >> T> boot >> >> T> Seneca >> >> T>> non of the kernels seems to understand my nVidia Sata controller: >> >> T>> Cannot open root device "md2" or unknown block(0,0) >> T>> please append a correct "root=" boot option >> T>> kernel panic - not syncing: VFS: Unable to mount root fs on >> T>> unknown-block(0,0) >> >> T>> here is my grub conf. >> >> T>> title Ubuntu, kernel 2.6.12-9-386 >> T>> root (hd0,0) >> T>> kernel /vmlinuz-2.6.12-9-386 root=/dev/md2 ro quiet splash >> T>> initrd /initrd.img-2.6.12-9-386 >> T>> savedefault >> T>> boot >> >> T>> title Xen 3.0 / XenLinux 2.6 >> T>> kernel /xen-3.0.1.gz noreboot >> T>> module /vmlinuz-2.6.12.6-xen root=/dev/md2 ro console=tty0 >> >> T>> title Xen 3.0 / XenLinux 2.6 >> T>> kernel /xen-3.0.2.gz noreboot >> T>> module /vmlinuz-2.6.16-xen root=/dev/md2 ro console=tty0 >> >> T>> strange Ubuntu 5.10 does recognize the harddrives not so the the >> T> latest >> T>> Ubuntu Dapper, same with Fedora4 and the latest Fedora5 >> >> T>> should i get just two IDE Harddisk? >> >> T>> thanks >> >> T>> Am Sonntag, den 09.04.2006, 15:29 +0200 schrieb Peter Fokkinga: >> >>> Quoting Tulasi <kuzum@mebias.org>: >> >>> > I made a install of XEN but after booting into xen, it reboots >> >>> > sometime later, without an information. >> >>> > >> >>> > does anyone know what to do. >> >>> > >> >>> Add ''noreboot'' (without quotes) to the Xen commandline in your >> >>> grub or lilo configuration. Now Xen will just halt when something >> >>> goes wrong instead of immediately rebooting, thus allowing you >> >>> to see what went wrong. See section 10.3 in the Xen users manual, >> >>> http://www.cl.cam.ac.uk/Research/SRG/netos/xen/readmes/user/user.html >> >>> >> >>> It''s quite possible that the 2.6.12 kernel does not support your >> >>> nVidia SATA controller. I would recommend you try Xen 3.0.2 that >> >>> was released a few days ago (it uses kernel 2.6.16). It can be >> >>> found at http://www.cl.cam.ac.uk/Research/SRG/netos/xen/downloads >> >>> >> >>> Cheers, Peter >> >>> >> >>> _______________________________________________ >> >>> Xen-users mailing list >> >>> Xen-users@lists.xensource.com >> >>> http://lists.xensource.com/xen-users >> >> >> T>> _______________________________________________ >> T>> Xen-users mailing list >> T>> Xen-users@lists.xensource.com >> T>> http://lists.xensource.com/xen-users >> >> >> T> _______________________________________________ >> T> Xen-users mailing list >> T> Xen-users@lists.xensource.com >> T> http://lists.xensource.com/xen-users >> >> >> _______________________________________________ >> Xen-users mailing list >> Xen-users@lists.xensource.com >> http://lists.xensource.com/xen-users-- Seneca _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
anyone see this kind of odd behavior? I am trying to start a VM and it doesn''t return a console, just the following: #:/etc/xen# xm create stones.conf -c Using config file "stones.conf". Started domain stones_dom1 #:/etc/xen# xm list Name ID Mem(MiB) VCPUs State Time(s) Domain-0 0 256 4 r----- 1068.3 the conf file reads as follows: name="stones_dom1" memory=256 kernel="/boot/vmlinuz-2.6.12.6-xen" vif=[''mac=a2:09:8f:0a:fe:5d, bridge=br-ext'', ''mac=4a:10:96:1a: 8f:cf,bridge=br-int''] disk=[ ''phy:main/stones_root,sda1,w'', ''phy:main/stones_swap,sda2,w'' ] root="/dev/sda1 ro" thanks for any help. chris _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
yes I can''t see anything wrong as well, I also have a bug running on the latest ubuntu dapper, where the harddisk not recognized on this machine. anyhow thanks for advice, will have a look at your given link. regards Zitat von Seneca <acenes@gmx.net>:> I cant see anything wrong in the setup, and since it boots without > problems with your ubuntu 2.6.12 kernel it *should* also work with > the xen 2.6.16. There have been discussions about similar problems > and possible solutions in the thread below: > > http://ubuntuforums.org/showthread.php?t=25938 > > Btw. did you install the precompiled xen 3.0.2 distribution or did you > compile it from source? > > Seneca > > T> Hello Seneca > > T> here is the requested information: > > T> xen@ubuntu:~$ cat /etc/fstab > T> # /etc/fstab: static file system information. > T> # > T> # <file system> <mount point> <type> <options> <dump> <pass> > T> proc /proc proc defaults 0 0 > T> /dev/md2 / ext3 defaults,errors=remount-ro 0 > T> 1 > T> /dev/md0 /boot ext3 defaults 0 2 > T> /dev/md3 /srv ext3 defaults 0 2 > T> /dev/md1 none swap sw 0 0 > T> /dev/hdb /media/cdrom0 udf,iso9660 user,noauto 0 0 > T> xen@ubuntu:~$ > > T> /boot/grub/menu.lst: > T> title Ubuntu, kernel 2.6.12-9-386 > T> root (hd0,0) > T> kernel /vmlinuz-2.6.12-9-386 root=/dev/md2 ro quiet splash > T> initrd /initrd.img-2.6.12-9-386 > T> savedefault > T> boot > > T> title Xen 3.0 / XenLinux 2.6.16 > T> root (hd0,0) > T> kernel /xen-3.0.2.gz noreboot dom0_mem=262144 > T> module /vmlinuz-2.6.16-xen root=/dev/md2 ro console=tty0 > T> module /initrd.img-2.6.16.xen > T> savedefault > T> boot > > T> title Ubuntu, kernel 2.6.12-9-386 (recovery mode) > T> root (hd0,0) > T> kernel /vmlinuz-2.6.12-9-386 root=/dev/md2 ro single > T> initrd /initrd.img-2.6.12-9-386 > T> boot > > T> title Ubuntu, memtest86+ > T> root (hd0,0) > T> kernel /memtest86+.bin > T> boot > > T> and last the boot dir: > > > > T> Am Dienstag, den 11.04.2006, 08:25 +0200 schrieb Seneca: > >>> Hello Tulasi, >>> >>> I see a misspeling in my suggestion, once it is >>> >>> initrd.img-2.6.16-xen >>> >>> and once >>> >>> initrd.img-2.6.16.xen >>> >>> It must be exactly the same of cause, otherwise the file will not be >>> found by grub. >>> >>> >>> T> mdadm: error opening /devfs/md/1: No such file or directory >>> T> mdadm: error opening /devfs/md/2: No such file or directory >>> >>> Now this looks really odd. Could you post your /etc/fstab file, >>> the current menu.lst and a dir of /boot ? >>> >>> Seneca >>> >>> >>> >>> You wrote at Montag, 10. April 2006 23:57: >>> >>> T> Thanks Seneca >>> >>> >>> T> still get error: >>> >>> T> mdadm: error opening /devfs/md/1: No such file or directory >>> T> mdadm: error opening /devfs/md/2: No such file or directory >>> T> mount: devfs: not mounted >>> T> mount: unknown filesystem type "devfs" >>> T> ivot_root: No such file or directory >>> T> sbin/init: 428: cannot open dev/console: No such file >>> T> kernel panic: bla bla bla..... >>> >>> T> regards >>> >>> T> Am Sonntag, den 09.04.2006, 23:39 +0200 schrieb Seneca: >>> >>> T> Hello Tulasi, >>> >>> T> I think the problem is not the SATA driver, but that you are running >>> T> on a RAID (md2). As seen in your non-Xen booting, you are using a >>> T> initrd, so you also need to create and use one for your xen boot. >>> >>> T> For Xen 3.0.2 it works this way: >>> >>> T> depmod 2.6.16-xen >>> T> mkinitrd -o /boot/initrd.img-2.6.16.xen 2.6.16-xen >>> >>> T> In menu.lst: >>> >>> T> title Xen 3.0.2 / XenLinux 2.6.16 >>> T> root (hd0,0) >>> T> kernel /boot/xen-3.0.2.gz dom0_mem=262144 >>> T> module /boot/vmlinuz-2.6.16-xen root=/dev/md2 ro console=tty0 >>> T> module /boot/initrd.img-2.6.16-xen >>> T> savedefault >>> T> boot >>> >>> T> Seneca >>> >>> T>> non of the kernels seems to understand my nVidia Sata controller: >>> >>> T>> Cannot open root device "md2" or unknown block(0,0) >>> T>> please append a correct "root=" boot option >>> T>> kernel panic - not syncing: VFS: Unable to mount root fs on >>> T>> unknown-block(0,0) >>> >>> T>> here is my grub conf. >>> >>> T>> title Ubuntu, kernel 2.6.12-9-386 >>> T>> root (hd0,0) >>> T>> kernel /vmlinuz-2.6.12-9-386 root=/dev/md2 ro quiet splash >>> T>> initrd /initrd.img-2.6.12-9-386 >>> T>> savedefault >>> T>> boot >>> >>> T>> title Xen 3.0 / XenLinux 2.6 >>> T>> kernel /xen-3.0.1.gz noreboot >>> T>> module /vmlinuz-2.6.12.6-xen root=/dev/md2 ro console=tty0 >>> >>> T>> title Xen 3.0 / XenLinux 2.6 >>> T>> kernel /xen-3.0.2.gz noreboot >>> T>> module /vmlinuz-2.6.16-xen root=/dev/md2 ro console=tty0 >>> >>> T>> strange Ubuntu 5.10 does recognize the harddrives not so the the >>> T> latest >>> T>> Ubuntu Dapper, same with Fedora4 and the latest Fedora5 >>> >>> T>> should i get just two IDE Harddisk? >>> >>> T>> thanks >>> >>> T>> Am Sonntag, den 09.04.2006, 15:29 +0200 schrieb Peter Fokkinga: >>> >>> Quoting Tulasi <kuzum@mebias.org>: >>> >>> > I made a install of XEN but after booting into xen, it reboots >>> >>> > sometime later, without an information. >>> >>> > >>> >>> > does anyone know what to do. >>> >>> > >>> >>> Add ''noreboot'' (without quotes) to the Xen commandline in your >>> >>> grub or lilo configuration. Now Xen will just halt when something >>> >>> goes wrong instead of immediately rebooting, thus allowing you >>> >>> to see what went wrong. See section 10.3 in the Xen users manual, >>> >>> http://www.cl.cam.ac.uk/Research/SRG/netos/xen/readmes/user/user.html >>> >>> >>> >>> It''s quite possible that the 2.6.12 kernel does not support your >>> >>> nVidia SATA controller. I would recommend you try Xen 3.0.2 that >>> >>> was released a few days ago (it uses kernel 2.6.16). It can be >>> >>> found at http://www.cl.cam.ac.uk/Research/SRG/netos/xen/downloads >>> >>> >>> >>> Cheers, Peter >>> >>> >>> >>> _______________________________________________ >>> >>> Xen-users mailing list >>> >>> Xen-users@lists.xensource.com >>> >>> http://lists.xensource.com/xen-users >>> >>> >>> T>> _______________________________________________ >>> T>> Xen-users mailing list >>> T>> Xen-users@lists.xensource.com >>> T>> http://lists.xensource.com/xen-users >>> >>> >>> T> _______________________________________________ >>> T> Xen-users mailing list >>> T> Xen-users@lists.xensource.com >>> T> http://lists.xensource.com/xen-users >>> >>> >>> _______________________________________________ >>> Xen-users mailing list >>> Xen-users@lists.xensource.com >>> http://lists.xensource.com/xen-users > > > -- > Seneca > > > _______________________________________________ > Xen-users mailing list > Xen-users@lists.xensource.com > http://lists.xensource.com/xen-users >_______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
by the way, I did this install with the precompiled xen, earlyer i tryed from source xen 3.0.1 without sucess either. Zitat von Seneca <acenes@gmx.net>:> I cant see anything wrong in the setup, and since it boots without > problems with your ubuntu 2.6.12 kernel it *should* also work with > the xen 2.6.16. There have been discussions about similar problems > and possible solutions in the thread below: > > http://ubuntuforums.org/showthread.php?t=25938 > > Btw. did you install the precompiled xen 3.0.2 distribution or did you > compile it from source? > > Seneca > > T> Hello Seneca > > T> here is the requested information: > > T> xen@ubuntu:~$ cat /etc/fstab > T> # /etc/fstab: static file system information. > T> # > T> # <file system> <mount point> <type> <options> <dump> <pass> > T> proc /proc proc defaults 0 0 > T> /dev/md2 / ext3 defaults,errors=remount-ro 0 > T> 1 > T> /dev/md0 /boot ext3 defaults 0 2 > T> /dev/md3 /srv ext3 defaults 0 2 > T> /dev/md1 none swap sw 0 0 > T> /dev/hdb /media/cdrom0 udf,iso9660 user,noauto 0 0 > T> xen@ubuntu:~$ > > T> /boot/grub/menu.lst: > T> title Ubuntu, kernel 2.6.12-9-386 > T> root (hd0,0) > T> kernel /vmlinuz-2.6.12-9-386 root=/dev/md2 ro quiet splash > T> initrd /initrd.img-2.6.12-9-386 > T> savedefault > T> boot > > T> title Xen 3.0 / XenLinux 2.6.16 > T> root (hd0,0) > T> kernel /xen-3.0.2.gz noreboot dom0_mem=262144 > T> module /vmlinuz-2.6.16-xen root=/dev/md2 ro console=tty0 > T> module /initrd.img-2.6.16.xen > T> savedefault > T> boot > > T> title Ubuntu, kernel 2.6.12-9-386 (recovery mode) > T> root (hd0,0) > T> kernel /vmlinuz-2.6.12-9-386 root=/dev/md2 ro single > T> initrd /initrd.img-2.6.12-9-386 > T> boot > > T> title Ubuntu, memtest86+ > T> root (hd0,0) > T> kernel /memtest86+.bin > T> boot > > T> and last the boot dir: > > > > T> Am Dienstag, den 11.04.2006, 08:25 +0200 schrieb Seneca: > >>> Hello Tulasi, >>> >>> I see a misspeling in my suggestion, once it is >>> >>> initrd.img-2.6.16-xen >>> >>> and once >>> >>> initrd.img-2.6.16.xen >>> >>> It must be exactly the same of cause, otherwise the file will not be >>> found by grub. >>> >>> >>> T> mdadm: error opening /devfs/md/1: No such file or directory >>> T> mdadm: error opening /devfs/md/2: No such file or directory >>> >>> Now this looks really odd. Could you post your /etc/fstab file, >>> the current menu.lst and a dir of /boot ? >>> >>> Seneca >>> >>> >>> >>> You wrote at Montag, 10. April 2006 23:57: >>> >>> T> Thanks Seneca >>> >>> >>> T> still get error: >>> >>> T> mdadm: error opening /devfs/md/1: No such file or directory >>> T> mdadm: error opening /devfs/md/2: No such file or directory >>> T> mount: devfs: not mounted >>> T> mount: unknown filesystem type "devfs" >>> T> ivot_root: No such file or directory >>> T> sbin/init: 428: cannot open dev/console: No such file >>> T> kernel panic: bla bla bla..... >>> >>> T> regards >>> >>> T> Am Sonntag, den 09.04.2006, 23:39 +0200 schrieb Seneca: >>> >>> T> Hello Tulasi, >>> >>> T> I think the problem is not the SATA driver, but that you are running >>> T> on a RAID (md2). As seen in your non-Xen booting, you are using a >>> T> initrd, so you also need to create and use one for your xen boot. >>> >>> T> For Xen 3.0.2 it works this way: >>> >>> T> depmod 2.6.16-xen >>> T> mkinitrd -o /boot/initrd.img-2.6.16.xen 2.6.16-xen >>> >>> T> In menu.lst: >>> >>> T> title Xen 3.0.2 / XenLinux 2.6.16 >>> T> root (hd0,0) >>> T> kernel /boot/xen-3.0.2.gz dom0_mem=262144 >>> T> module /boot/vmlinuz-2.6.16-xen root=/dev/md2 ro console=tty0 >>> T> module /boot/initrd.img-2.6.16-xen >>> T> savedefault >>> T> boot >>> >>> T> Seneca >>> >>> T>> non of the kernels seems to understand my nVidia Sata controller: >>> >>> T>> Cannot open root device "md2" or unknown block(0,0) >>> T>> please append a correct "root=" boot option >>> T>> kernel panic - not syncing: VFS: Unable to mount root fs on >>> T>> unknown-block(0,0) >>> >>> T>> here is my grub conf. >>> >>> T>> title Ubuntu, kernel 2.6.12-9-386 >>> T>> root (hd0,0) >>> T>> kernel /vmlinuz-2.6.12-9-386 root=/dev/md2 ro quiet splash >>> T>> initrd /initrd.img-2.6.12-9-386 >>> T>> savedefault >>> T>> boot >>> >>> T>> title Xen 3.0 / XenLinux 2.6 >>> T>> kernel /xen-3.0.1.gz noreboot >>> T>> module /vmlinuz-2.6.12.6-xen root=/dev/md2 ro console=tty0 >>> >>> T>> title Xen 3.0 / XenLinux 2.6 >>> T>> kernel /xen-3.0.2.gz noreboot >>> T>> module /vmlinuz-2.6.16-xen root=/dev/md2 ro console=tty0 >>> >>> T>> strange Ubuntu 5.10 does recognize the harddrives not so the the >>> T> latest >>> T>> Ubuntu Dapper, same with Fedora4 and the latest Fedora5 >>> >>> T>> should i get just two IDE Harddisk? >>> >>> T>> thanks >>> >>> T>> Am Sonntag, den 09.04.2006, 15:29 +0200 schrieb Peter Fokkinga: >>> >>> Quoting Tulasi <kuzum@mebias.org>: >>> >>> > I made a install of XEN but after booting into xen, it reboots >>> >>> > sometime later, without an information. >>> >>> > >>> >>> > does anyone know what to do. >>> >>> > >>> >>> Add ''noreboot'' (without quotes) to the Xen commandline in your >>> >>> grub or lilo configuration. Now Xen will just halt when something >>> >>> goes wrong instead of immediately rebooting, thus allowing you >>> >>> to see what went wrong. See section 10.3 in the Xen users manual, >>> >>> http://www.cl.cam.ac.uk/Research/SRG/netos/xen/readmes/user/user.html >>> >>> >>> >>> It''s quite possible that the 2.6.12 kernel does not support your >>> >>> nVidia SATA controller. I would recommend you try Xen 3.0.2 that >>> >>> was released a few days ago (it uses kernel 2.6.16). It can be >>> >>> found at http://www.cl.cam.ac.uk/Research/SRG/netos/xen/downloads >>> >>> >>> >>> Cheers, Peter >>> >>> >>> >>> _______________________________________________ >>> >>> Xen-users mailing list >>> >>> Xen-users@lists.xensource.com >>> >>> http://lists.xensource.com/xen-users >>> >>> >>> T>> _______________________________________________ >>> T>> Xen-users mailing list >>> T>> Xen-users@lists.xensource.com >>> T>> http://lists.xensource.com/xen-users >>> >>> >>> T> _______________________________________________ >>> T> Xen-users mailing list >>> T> Xen-users@lists.xensource.com >>> T> http://lists.xensource.com/xen-users >>> >>> >>> _______________________________________________ >>> Xen-users mailing list >>> Xen-users@lists.xensource.com >>> http://lists.xensource.com/xen-users > > > -- > Seneca > > > _______________________________________________ > Xen-users mailing list > Xen-users@lists.xensource.com > http://lists.xensource.com/xen-users >_______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users