Qemu

在 qemu 中出現錯誤“沒有這樣的文件或目錄”

  • December 22, 2014

我想安裝 windows 10 64 位,但我目前的 windows 版本是 32 位,所以它無法執行 setup.exe 文件,因此啟動到 ubuntu 14.10 64 位並安裝了 qemu 以使用我目前的硬碟作為虛擬硬碟和 iso光碟。這是我使用的命令

sudo qemu-system-x86_64 -cpu qemu64 -vga std -cdrom file=~/WindowsTechnicalPreview-x64-EN-US.iso -boot d -drive /dev/sda1

但這給了我錯誤

qemu-system-x86_64: -cdrom file=/home/ubuntu/WindowsTechnicalPreview-x64-EN-US.iso: could not open disk image file=/home/ubuntu/WindowsTechnicalPreview-x64-EN-US.iso: Could not open 'file=/home/ubuntu/WindowsTechnicalPreview-x64-EN-US.iso': No such file or directory

但我檢查了文件是否存在

-cdrom SOMEFILE-drive index=2,media=cdrom,file=SOMEFILE. 使用詳細-drive選項或-cdrom快捷方式,不要混淆它們。你告訴 Qemu 打開一個名為 的文件file=/home/ubuntu/WindowsTechnicalPreview-x64-EN-US.iso',而這個文件不存在。

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