Get Involved/development/Developing in a virtual machine: Difference between revisions

From KDE Community Wiki
(KDE neon Developer Edition)
(Revert inaccurate change about VirtualBox not being in the default repos; it is)
Line 10: Line 10:


* Arch/Manjaro: <code>sudo pacman -S virtualbox</code>
* Arch/Manjaro: <code>sudo pacman -S virtualbox</code>
* Fedora: not available in the default Fedora repositories.
* Fedora: <code>sudo dnf install VirtualBox</code>
* KDE Neon/Kubuntu/Ubuntu/Debian: <code>sudo apt install virtualbox</code>
* KDE Neon/Kubuntu/Ubuntu/Debian: <code>sudo apt install virtualbox</code>
* openSUSE Leap & Tumbleweed: <code>sudo zypper install virtualbox</code>
* openSUSE Leap & Tumbleweed: <code>sudo zypper install virtualbox</code>
Line 16: Line 16:
* Windows: https://virtualbox.org/wiki/Downloads
* Windows: https://virtualbox.org/wiki/Downloads


Once VirtualBox is installed, start VirtualBox.
Once VirtualBox is installed, launch it.


== Setting up the guest OS ==
== Setting up the guest OS ==
Now it's time to install an operating system inside VirtualBox. For the purposes of this tutorial, we will use KDE neon Developer Edition, as it is specifically made for this purpose. Download it from here: https://files.kde.org/neon/images/developer/current/neon-developer-current.iso
Now it's time to install an operating system inside VirtualBox. For the purposes of this tutorial, we will use KDE Neon Developer Edition, as it is specifically made for this purpose. Download it from here: https://files.kde.org/neon/images/developer/current/neon-developer-current.iso


The OS inside VirtualBox is called the "guest OS". This is distinct from the "host OS" which is the OS running on your hardware computer. It's time to set it up now.
The OS inside VirtualBox is called the "guest OS" (as distinct from the "host OS" which is the OS running on your computer). It's time to set it up now.


Click the "New" button in the toolbar and go through the wizard, entering the following recommended settings:
Click the "New" button in the toolbar and go through the wizard, entering the following recommended settings:
Line 37: Line 37:
[[File:6-_hard_disk_4.png|450px]]
[[File:6-_hard_disk_4.png|450px]]


Now click the "Start" button in the toolbar. This will prompt you to select an ISO file for the guest OS. Select the KDE neon Developer Edition ISO that you downloaded earlier:
Now click the "Start" button in the toolbar. This will prompt you to select an ISO file for the guest OS. Select the Neon Development ISO that you downloaded earlier:


[[File:7-_Select_the_OS.png|450px]]
[[File:7-_Select_the_OS.png|450px]]

Revision as of 14:41, 3 October 2022

Using a virtual machine for development can work if you are not able to set up a development environment on your main machine for any reason.

Oracle VM VirtualBox (VirtualBox) is a good option for the VM host virtualization software, as it is reliable, free, and open source.

If your hardware computer runs Linux, Virtual Machine Manager is also a good option for virtualization software. This uses the default Linux QEMU/KVM virtualization, is available in most Linux distributions. And offers the best performance.

Installing VirtualBox

In your computer's firmware/BIOS/UEFI, make sure that all hardware virtualization technologies available for your computer are enabled: Intel VT-x, Intel VT-d, AMD AMD-V, AMD-Vi, other (EPT, RVI, VMCS shadowing, GVT, SR-IOV etc.). If it is available and you can enable it, then enable it.

  • Arch/Manjaro: sudo pacman -S virtualbox
  • Fedora: sudo dnf install VirtualBox
  • KDE Neon/Kubuntu/Ubuntu/Debian: sudo apt install virtualbox
  • openSUSE Leap & Tumbleweed: sudo zypper install virtualbox
  • macOS: brew install virtualbox
  • Windows: https://virtualbox.org/wiki/Downloads

Once VirtualBox is installed, launch it.

Setting up the guest OS

Now it's time to install an operating system inside VirtualBox. For the purposes of this tutorial, we will use KDE Neon Developer Edition, as it is specifically made for this purpose. Download it from here: https://files.kde.org/neon/images/developer/current/neon-developer-current.iso

The OS inside VirtualBox is called the "guest OS" (as distinct from the "host OS" which is the OS running on your computer). It's time to set it up now.

Click the "New" button in the toolbar and go through the wizard, entering the following recommended settings:

Now click the "Start" button in the toolbar. This will prompt you to select an ISO file for the guest OS. Select the Neon Development ISO that you downloaded earlier:

The OS will boot up! How exciting. Launch the installer and install the OS. When asked to create a user account, just pick any name (e.g. "dev").

After the OS has been installed, reboot the guest OS and then install some extra drivers and such from the "Guest Additions CD Image". Download and mount it like so:

Now press F4 to open the Terminal view and install by running the following command:

sudo ./VBoxLinuxAdditions.run

Now restart the guest OS again. Once it starts up, you're ready to do your development in a VM!