Boot

/dev/root 在 CentOS 7 中不存在

  • November 30, 2017

嘗試從 USB 設備安裝 CentOS 7 時收到此錯誤消息:

/dev/root 在 CentOS 7 中不存在

我怎麼解決這個問題?

在 Windows 上使用Win32 Disk Imager或在 Linux/OSX 上使用 dd 將 ISO 寫入 U 盤。

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

我最近使用了第一個,這樣做後它啟動得很好。

用這個:

fdisk -l – 要顯示所有可用的磁碟,請選擇您的外置隨身碟

dd if="absolute location to your .iso file" of="absolute path shown with above command output"

對我來說,我在我的分發 ISO 文件的確切路徑上,所以我使用了

dd if=CentOS.iso of=/dev/sdb2– sdb2 是我的外置隨身碟

答對了 !!

引用自:https://unix.stackexchange.com/questions/147426