-
new Knoppix hangs in vmware : waiting for root device
Knoppix: ADRIANE-KNOPPIX_V6.7.0CD-2011-08-01-DE.iso
VMware: 3.0.1 build-227600
/dev/sda1 2GB, swap
/dev/sda2 6GB /
After install the boot give up with:
Waiting for root device /dev/sda2
Any hint?
Greetz
neo67
-
Senior Member
registered user
I think that the SCSI HDD controller of the VMware virtual machine needs three additional kernel modules not compiled into the kernel (mptbase, mptspi, mptscsih). They already exist on the HDD in the directory /lib/modules/2.6.39.3/kernel/drivers/message/fusion but are inaccessible during boot up. I found out the names of these modules when I issued and while I was running Knoppix 6.7.0 from CD in the VMware virtual machine.
I created an initial ramdisk /boot/initrd.img-2.6.39.3 on the Knoppix partition with these kernel modules inside. I used the update-initramfs command notwithstanding the disadvantage of a large initial ramdisk because there are some kernel modules added automatically.
I also appended the line
Code:
initrd /boot/initrd.img-2.6.39.3
to the section with the title "Knoppix" in the configuration file /boot/grub/menu.lst on the Knoppix partition.
-
Senior Member
registered user
Originally Posted by
klaus2008
I think that the SCSI HDD controller of the VMware virtual machine needs three additional kernel modules not compiled into the kernel (mptbase, mptspi, mptscsih). They already exist on the HDD in the directory /lib/modules/2.6.39.3/kernel/drivers/message/fusion but are inaccessible during boot up.
If that is the case, perhaps just change the emulated HDD controller might be a better choice. My VMplayer has limited GUI functionality, perhaps it requires manual edit; but in VirtualBox I can select from the gui IDE, SATA, SCSI and others as my HDD controller(s). I think the capability should exist in VMWare, somewhere .....
-
Senior Member
registered user
Originally Posted by
neo67
Knoppix: ADRIANE-KNOPPIX_V6.7.0CD-2011-08-01-DE.iso
VMware: 3.0.1 build-227600
/dev/sda1 2GB, swap
/dev/sda2 6GB /
After install the boot give up with:
Waiting for root device /dev/sda2
Any hint?
My best tip right now, if you are running Linux, is install qemu-kvm and use that. It runs like a charm. I'm posting this from 6.7.0 DVD iso, using 64-bits kernel, running iceweasel 5. qemu-kvm in my 64-bits remastering of Knoppix 6.4.4.
-
Senior Member
registered user
@kl522
You are right. It is possible to use an IDE HDD for Knoppix 6.7.0 although the wizard of VMware Player only supports the creation of an SCSI HDD.
I used VMmanager to create a new virtual machine for VMware Player with an IDE HDD (8 GB). I formatted the new disk with GParted (2 GB swap and 6 GB reiserfs) and installed Knoppix 6.7.0 using 0wn. The bootloader was installed in the MBR. After installation of Knoppix 6.7.0 I disconnected the CD and was able to boot up the virtual machine without using an additional initial ramdisk.
-
Senior Member
registered user
There's an additional problem using vmware: Right now, you have to manually patch the module sources to get them to compile with 2.6.38+ kernels. If you want to run it with your own compiled kernel or under 6.7.0, there is currently no other way. It's not too hard, but a hassle still.
Even though the problem has been known for months, and the use of the offending kernel flags has been discouraged for years, it has not been corrected.
Under Knoppix, I have found qemu-kvm to be much more useful for testing - everyday vm running may be something else, though, and I'm not in any way discontinuing my use of vmware.
Here are the commands I needed to run 6.7.0 ISO under qemu-kvm
Code:
#qemu-img create -f qcow /store/vm/qemu/knx670_disk.img 4G &
# qemu -cdrom /store/download/iso/KNOPPIX_V6.7.0DVD-2011-08-01-EN.iso -hda /store/vm/qemu/knx670_disk.img -m 1024 -boot d &
I use 64-bits throughout, at least it goes fast.
-
Senior Member
registered user
Originally Posted by
Capricorny
Under Knoppix, I have found qemu-kvm to be much more useful for testing - everyday vm running may be something else, though, and I'm not in any way discontinuing my use of vmware.
Here are the commands I needed to run 6.7.0 ISO under qemu-kvm
Code:
#qemu-img create -f qcow /store/vm/qemu/knx670_disk.img 4G &
# qemu -cdrom /store/download/iso/KNOPPIX_V6.7.0DVD-2011-08-01-EN.iso -hda /store/vm/qemu/knx670_disk.img -m 1024 -boot d &
I use 64-bits throughout, at least it goes fast.
I ***SUSPECT*** you probably did not actually used kvm. On my system, to use qemu with kvm, I have to do this :-
Code:
# modprobe kvm-intel ( depends on whether your hardware is intel or amd )
# qemu -enable-kvm ..........
My kernel config is probably different from yours, so I don't know for sure. Without kvm, qemu is as slow as dog. With kvm, qemu is comparable with virtualbox and vmplayer, 32bit or 64bit.
Also there are a few GUI for qemu. The one I installed is AQEMU. Helps a bit, but unfortunately the display seems to be clobbered. Maybe is my supporting library version is bugged .....
-
Senior Member
registered user
Originally Posted by
kl522
I ***SUSPECT*** you probably did not actually used kvm. On my system, to use qemu with kvm, I have to do this :-
Code:
# modprobe kvm-intel ( depends on whether your hardware is intel or amd )
# qemu -enable-kvm ..........
My kernel config is probably different from yours, so I don't know for sure. Without kvm, qemu is as slow as dog. With kvm, qemu is comparable with virtualbox and vmplayer, 32bit or 64bit.
Also there are a few GUI for qemu. The one I installed is AQEMU. Helps a bit, but unfortunately the display seems to be clobbered. Maybe is my supporting library version is bugged .....
Well, your suspicion fails completely. I haven't looked into the details, but somehow, I have to reinstall qemu-kvm (look for that package) after remastering to have it run correctly, i.e. with kvm. It complains if it can't, and runs very slowly, yes. (But still fast enough to debug parts of the booting process.) Maybe something to do with kernel module configuration, and remember, my setup is entriely 64-bits. Package organization may be different.
I don't feel the need for a GUI, for my limited use. And using the command line, I get all the complaints logged straight away. (Like qemu not being able to use kvm.)
-
Senior Member
registered user
Just for fun: This is posted from iceweasel 5.0 running under knoppix64 booted from 7.6.0 DVD ISO file, running under qemu-kvm. Not at all slow, would definitely not have been possible with plain qemu emulation. Maybe the 64-bits design helps here, too.
Edit:
Kernel config is 2.6.39.2, downloaded from debian-knoppix site and compiled as-is. Seems to run without any hitches, only trouble is with vmware, but all post 2.6.37-kernels are affected by that, I think.
Last edited by Capricorny; 08-06-2011 at 01:34 PM.
-
Senior Member
registered user
Just a remark, I'm bypassing the DVD burning step on the way to USB flash/Poor man's install by running qemu with USB access:
Code:
# lsusb
Bus 002 Device 006: ID 0951:1624 Kingston Technology
.....
#qemu -cdrom /store/download/iso/KNOPPIX_V6.7.0DVD-2011-08-01-EN.iso -hda /store/vm/qemu/knx670_disk.img -m 1024 -boot d -usb -usbdevice host:0951:1624 &
Then, run "Install Knoppix to flash disk" in the virtual machine. We could of course have copied the files directly from loop-mounted ISO, but this method allows us to check things
Also, the purging and installing steps prior to remastering can be carried out in qemu virtual machine sessions, making administrative tasks very much easier.
Tags for this Thread
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
Supermicro 2U 6028R-E1CR24N 24x LFF- Wholesale Build Your Own Storage Server
$278.99
Dell Poweredge R630 Server 2x E5-2620 V4 =16 Cores | S130 | 32GB RAM | 2x trays
$165.99
Dell Poweredge R630 2x Xeon E5-2680 v3 2.5ghz 24-Cores / 32gb / 500gb / 495w
$164.99
Cisco C220 M4 2x Xeon E5-2680 v4 2.4ghz 28-Cores / 128gb / MRAID12 / 2x 770w
$264.99
Dell PowerEdge R630 Server 2x E5-2640v3 2.60Ghz 16-Core 64GB H330
$195.00
HP PROLIANT DL380 GEN9 719061-B21 Server 15x3.5" 2*XEON E5-2640 v3 128GB
$175.00
Dell PowerEdge R630 Server | 2x Xeon E5-2667v4, 128GB, RAM, H730, Dual 750w PSU
$229.00
2U 12 Bay SAS3 SuperMicro Server 6028U-TR4T+ W/ X10DRU-i+ Barebone 12 Caddy RAIL
$199.00
Dell R640 8x 2.5" SFF Server iDRAC ENT - Wholesale Custom Build Your Server
$269.99
DELL POWEREDGE R630 8 x 2.5'' 2X E5-2680V4 32GB RAM IDRAC ENT & NDC 2X 495W PSU
$174.95