qemu

How to Install and Use QEMU on Debian 9

How to Install and Use QEMU on Debian 9
QEMU is a fast processor emulation technology. QEMU does not depend on any hardware features. It does not need any kernel patches to run. So it is safe and easy to run.

QEMU does full system emulation. So, QEMU can run programs written for different architecture on your Debian 9 machine. For example, programs written for ARM based CPUs can be run on x86 CPUs with the help of QEMU.

In this article, I will show you how to install and use QEMU on Debian 9 Stretch. Let's get started.

QEMU and KVM:

QEMU can be combined with KVM to use hardware virtualization features of your CPU. QEMU + KVM will get you almost near native hardware performance.

Hardware virtualization feature is disabled by default on AMD and Intel CPU's. So you will have to enable them manually if you do wish to use it.

I recommend you enable hardware virtualization. If you don't do so, QEMU will be very slow.

Enabling Hardware Virtualization:

If you have Intel CPU, then all you have to do is, enable VT-x or VT-d from the BIOS of your motherboard.

For AMD CPU, you have to enable AMD-v from the BIOS of your motherboard.

If your CPU supports hardware virtualization, and you enabled it from the BIOS of your computer, then you can check whether Virtualization is enabled from your Debian 9 Stretch machine with the following command:

$ lscpu | grep Virt

As you can see, hardware virtualization is enabled.

Installing QEMU and KVM:

QEMU is not installed by default on Debian 9 Stretch. But it is available in the official package repository of Debian 9 Stretch. So you can easily install it.

First, update the APT package repository cache with the following command:

$ sudo apt update

The APT package repository cache should be updated.

Now install QEMU with the following command:

$ sudo apt install qemu qemu-kvm

Now press y and then press to continue.

KVM and QEMU should be installed.

Using QEMU and KVM:

In this section, I will show you how to install Alpine Linux on a QEMU + KVM virtual machine.

Creating a VM Directory:

First, create a directory where all your VM data will be stored. I will call this VM directory from now on.

Create a VM directory with the following command:

$ mkdir -p ~/qemu/alpine

Now navigate to the VM directory with the following command:

$ cd ~/qemu/alpine

Downloading Alpine Linux ISO Image:

Now download the Alpine Linux Standard ISO image from https://alpinelinux.org/downloads/ into your VM directory.

At the time of this writing, the ISO image is alpine-standard-3.8.0-x86_64.iso

Creating QEMU Image:

Now you have to create a QEMU image. It is a virtual hard drive where you will install Alpine Linux. QEMU has its own command to create a QEMU image.

I am going to create a QEMU image alpine.img and allocate 8 GB of disk space to it with the following command:

$ qemu-img create -f qcow2 alpine.img8G

NOTE: You can name the image something other than alpine.img and set the disk size to something other than 8G (8 Giga Byte).

As you can see, alpine.img is created.

Starting the Alpine Installer:

Now you can start the QEMU emulation with KVM and install Alpine Linux on the image alpine.img.

I am going to use a shell script install.sh to start the installation as I believe it makes the command easier to understand and modify later.

Now run the following command to create install.sh:

$ nano install.sh

And type in the following lines to it:

Now save the file with + x and then press y and then press .

NOTE: Here, -m 512 means 512 MB of memory (RAM) will be allocated to the virtual machine.

Now make the script install.sh executable with the following command:

$ chmod +x install.sh

Now start the install script with:

$ ./install.sh

As you can see, the Alpine installer has booted.

Now type in root and press . You should be logged in.

Now start the installer with the following command:

# setup-alpine

Now type in your keyboard layout (I picked us) and press .

Select variant (I picked us) and press .

Now type in your hostname and press .

Now select your network interface. The default is eth0, which is correct. So I pressed to select the default.

Now type in the IP address for your network interface. I will choose the default, which is dhcp assigned IP address. Once you're done, press .

I selected dhcp, so I pressed .

Now type in your new root password and press .

Now re-type the password and press .

Now it's time to select a timezone. The default is UTC, but you can list other supported timezones by pressing ? and . I am selecting the default.

Press .

Press .

Press .

Type in sda and press .

Type in sys and press .

Now type in y and press .

Alpine is being installed…

Alpine Linux is installed.

Booting Alpine from alpine.img QEMU Image:

Now create another shell script start.sh in the VM directory with the following command:

$ nano start.sh

Now add the following lines to it and save it.

Make the script start.sh executable as follows:

$ chmod +x start.sh

Finally, you can boot into your newly installed Alpine OS with QEMU KVM as follows:

$ ./start.sh

As you can see, Alpine Linux booted from the QEMU image.

Emulating Other Architectures with QEMU:

QEMU supports a lot of CPU architectures as you can see from the screenshot below.

I used the kvm command in the earlier examples. It is actually a hardware virtualization enabled qemu-system-x86_64.

You can replace all the kvm commands with qemu-system-x86_64 command in the earlier examples and it would still work. But it will run slowly as it will not use hardware virtualization.

So that's how you install and use QEMU on Debian 9 Stretch. Thanks for reading this article.

How to change Mouse pointer and cursor size, color & scheme on Windows 10
The mouse pointer and cursor in Windows 10 are very important aspects of the operating system. This can be said for other operating systems as well, s...
Gry Darmowe i otwarte silniki gier do tworzenia gier na Linuksa
Darmowe i otwarte silniki gier do tworzenia gier na Linuksa
Ten artykuł zawiera listę darmowych i otwartych silników gier, których można używać do tworzenia gier 2D i 3D w systemie Linux. Istnieje wiele takich ...
Gry Samouczek Shadow of the Tomb Raider dla systemu Linux
Samouczek Shadow of the Tomb Raider dla systemu Linux
Shadow of the Tomb Raider to dwunasty dodatek do serii Tomb Raider - przygodowej serii gier akcji stworzonej przez Eidos Montreal. Gra została dość do...