-
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
JUNIPER EX2300-48P JUNIPER EX2300 SWITCH WITH 48-PORT 10/100/1000BASE-T - New
$500.00
Juniper QFX10002-36Q 36-Port 40G QSFP+/ 12-port 100G QSFP28 **Read Details**
$999.99
Juniper Networks EX3300-48P 48 Port Gigabit PoE 4 SFP 10G Network Switch
$65.00
Juniper Networks EX3300-24P 24 Port Gigabit PoE 4 SFP 10G Network Switch
$60.00
Juniper Networks EX3300-48T 48 Port Gigabit 4 SFP 10G Network Switch
$59.00
Juniper Networks SRX345 Service Gateway 8 Port Gigabit 8 SFP 1G
$189.00
Juniper EX4300-48T-AFO 48-PORT 10/100/1000BASE DUAL AC Fully Tested 1YR WARRANTY
$110.00
Juniper EX2200-C-12T-2G 12-Port 10/100/1000 2x SFP Uplinks Compact Switch
$52.49
Juniper EX2300 Ethernet Switch
$399.90
JUNIPER NETWORKS SRX340 Services Gateway Includes HARDWAR NETW
$314.99