> Hi > > Thomas's advice did help to make sure that the SCSI drivers were loaded > when > the Ramdisk loaded. > However now I get the following error: > > Mounting root filesystem > Mount: error 6 mounting ext3 > pivotroot: pivot_root(/sysroot,/sysroot/initrd) failed: 2 > umount /initrd/proc failed: 2 > Freeing unused kernel memory: 120k freed > Kernel pani: No init found. Try passing init=option to kernel. > > Any ideas what this about? > The kernel needs to locate the init program in order to boot the system. Normally ther kernel will assume /sbin/init, but in order to get to the program you must have access to the root filesystem. In order to mount the root filesystem, the root=/dev/sda2 (example) will need to be passed to the kernel at boot time. You have the scsi and lvm modules loaded through the initrd, but in order to access a logical volume you would usually have to do a vgchange -a y or something to enable the lvm for that volume group... If your root= kernel command points to the correct device, and if that device is an logical volume and it still doesn't work, then check www.tldp.org or ask on one of the LVM lists!!! Hope this helps! Thomas