macOS-Simple-KVM icon indicating copy to clipboard operation
macOS-Simple-KVM copied to clipboard

What am I doing wrong

Open jrs1rules opened this issue 2 years ago • 1 comments

Screenshot 2023-02-17 6 43 24 PM Im using this as a guide https://chromeunboxed.com/i-installed-macos-on-a-chromebook/

jrs1rules avatar Feb 17 '23 23:02 jrs1rules

So, looking at the guide you linked, I can tell - from the screenshot you posted here - that you have written some commands wrong, which might be because the guide made some mistakes in writing commands. The steps (and right commands) you should use are the following: (I added sh so it actually runs, since it's not set as an executable, it will look in your /usr/bin for the basic.sh file, which isn't there, but it's instead in your macOS-Simple-KVM folder in your ~)

  • sh ./jumpstart.sh
  • sh ./basic.sh
  • qemu-img create -f qcow2 MyDisk.qcow2 64G: "MyDisk" can be whatever, but remember changing the name in the below step: First you edit the basic.sh file by using nano (nano basic.sh), as the guide showed (which is installed by using sudo apt install nano), then at the end of the file you add the following:
-drive id=SystemDisk,if=none,file=MyDisk.qcow2 \
-device ide-hd,bus=sata.4,drive=SystemDisk \

I recommending indenting; then, after adding the above snippet to the end of your basic.sh, on your keyboard, you do CTRL+O to save the file and after that do CTRL+X to close the file. And, finally, you run sh ./basic.sh, and it should run as expected.

walker84837 avatar Apr 01 '23 18:04 walker84837