문제

I am trying to boot vm using qemu, the command that I use is

qemu-system-x86_64 -kernel /boot/vmlinuz-2.6.32-21-generic -hda /music/1gbfile

and its giving a error : Please append a correct "root=" boot option.

What does root mean here?

Thanks

도움이 되었습니까?

해결책

Try this:

qemu-system-x86_64 -kernel /boot/vmlinuz-2.6.32-21-generic -hda /music/1gbfile -append "root=/dev/hda"

You are basically making /dev/hda (which you provide with -hda argument) as your system's root directory. You can find more information here

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top