Centos – /dev/root does not exist in CentOS 7

bootcentossystem-installation

I get this error message when trying to install CentOS 7 from an USB device:

/dev/root does not exist in CentOS 7

How can I solve this problem?

Best Answer

Use Win32 Disk Imager on Windows or dd to write the ISO to the USB stick on Linux/OSX.

dd if=CentOS-7.0-1406-x86_64-NetInstall.iso of=/dev/sdb bs=8m

I've recently used the first and it booted fine after doing that.

Related Question