Skip to content

Instantly share code, notes, and snippets.

@webdevsuperfast
Forked from Jatapiaro/qemu_ubuntu.md
Last active March 7, 2022 03:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save webdevsuperfast/95b8f4cb6734de9e0150c2d99b694946 to your computer and use it in GitHub Desktop.
Save webdevsuperfast/95b8f4cb6734de9e0150c2d99b694946 to your computer and use it in GitHub Desktop.
How to install QEMU on MacOS Catalina and install a Fedora VM

Install QEMU on OSX

QEMU requires brew in OSX, so we need to install brew first.

Installing Brew

To install brew we need to have the developer tools enabled in our system. In order to install those tools, we have two options.

  1. Download Xcode form the AppStore
  2. In your terminal run the following command: xcode-select --install

Once you have the developer tools, run the following command in your terminal to install brew:

$ ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

Once the installation is finished, we can test the brew installation in our terminal with the command

$ brew doctor

Installing QEMU

Now that we have brew on the system we can proceed to the QEMU installation. To do that we use a simple command:

$ brew install qemu

When the installation is finished, we can run the following command to test if the installation was successful:

$ qemu-system-x86_64 --version

Installing Fedora on QEMU

We need to follow a series of steps in order to install an Fedora VM on QEMU. The first one is go to the Ubuntu website and download an .iso file of the operating system. Once we have the .iso, we need to to this:

  1. Create a folder in your computer (with any name and anywhere). $ mkdir fedora_vm
  2. Move the .iso file in the folder that you just create. $ mv fedora_iso.iso ./your-folder
  3. Then move inside the folder you just create $ cd fedora_vm
  4. Inside the folder, create the drive file of the system qemu-img create -f qcow2 fedora_drive.qcow2 10G
  5. Run ls to verify that the .iso and the qcow file are inside the folder

Once you have the previous steps, you can run the following command to run the iso and complete the installation:

qemu-system-x86_64 \
  -m 4096 \
  -vga std \
  -display default,show-cursor=on \
  -usb \
  -device usb-tablet \
  -cdrom fedora_iso.iso
  -drive file=fedora_drive.qcow2,if=virtio \
  -accel hvf \
  -cpu host

The previous command, will run the iso, when you are there, you need to complete the Fedora installation, so once you see something you must:

  1. Click on Install Fedora
  2. Select erase disk when the installer ask about it
  3. When the installer asks you to restart the machine close the QEMU window.

Now, in order to make more easy to run our QEMU VM, we are going to create a shell command. So, lets do the following.

First, create a new file in any place you want:

$ vi fedoravm.sh

Then, paste the following and adept it to your needs:

qemu-system-x86_64 \
  -m 4096 \
  -vga std \
  -display default,show-cursor=on \
  -usb \
  -device usb-tablet \
  -cdrom fedora_iso.iso
  -drive file=~/absolute/path/to/your/fedora_drive.qcow2,if=virtio \
  -accel hvf \
  -cpu host

And finally, write and quit.

As you can see, the command deletes the instruction about the .iso file. This is because now we have the operating system already installed. Now in order to run the vm, we need to make our file executable. So run the following command:

$ chmod +x fedoravm.sh

And finally to run it:

$ ./fedoravm

And that is it. We should see our virtual machine running correctly.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment