Developing using a UTM Arch Linux VM on Apple Silicon computers with UBOS in a systemd-nspawn container

/docs/gears/developer/setup/utm/

Summary of the setup

Note

This setup is for UTM users on Apple Silicon, such as the newer Macs. It does not work on x86_64 Macs or PCs.

In brief:

  • Download a virtual machine and run it in UTM. It has all the tools you are going to need pre-installed – build tools, git, IDE etc.
  • In the virtual machine, run a single script to customize your setup for different types of things you might want to develop on UBOS.
  • UBOS itself runs in a Linux container.

Easy, right?

Prerequisites: install UTM

  1. Download and install UTM if you have not done so already.

Steps in detail

  1. Download the virtual appliance file. To do so, go to https://depot.ubosfiles.net/yellow/aarch64/images/index.html and look for a file whose name starts with ubosdev and has extension .utm.zip. If there are several files there with this extension, pick the one that has the most recent timestamp.

  2. Uncompress the downloaded file so it has extension .utm.

  3. Open the .utm file with UTM. A ubosdev VM will show up in the sidebar.

  4. Select the ubosdev VM and open the settings (click on the three sliders icon all the way to the right in the toolbar). Make adjustments as needed for your situation, such as how many CPUs the VM may use on your host, and how much memory.

  5. Start the VM by selecting it in the sidebar, and clicking the run icon (">").

  6. The VM will open up two windows. One is the text-based console (which you can ignore). The other is a graphics window running Gnome; this takes a little longer to come up.

  7. In the graphical window, logon as ubosdev, there is no password. root does not have a password either: we assume that’s safe enough on your computer. If you don’t think so, set one :-)

  8. Pick a better screen resolution that works for your setup:

    • In “Search”, type “Settings” and run it.
    • If there’s an error message saying “Network Unavailable” and “Error: NetworkManager not running”: ignore it, we are not running Network Manager but systemd-networkd.
    • Select “Displays” and pick a resolution that makes sense for your computer setup.
    • Close the settings app.
  9. In “Search”, type “Console” and run it (you get the “Search” by selecting “Activities” in the menu bar).

  10. Update your Arch host to the latest:

    % sudo pacman -Syu
    

    If there are a lot of updates (including the kernel, for example), reboot and resume from here after the system has come back up:

    % sudo systemctl reboot
    
  11. Set up the UBOS Gears development environment by running:

    % ubosdev-container setup
    

    This sets up development on the yellow release channel, which is the recommended channel for development.

    This might take 5-30 min, depending on your network, computer and disk speed.

  12. Once this command is complete, you can shutdown the VM any time if you like.

Setting up a container for development

You will perform your actual UBOS development in a Linux container that runs UBOS Linux. In this setup, you can have multiple UBOS Linux container templates, and each of them can be instantiated multiple times.

For example, you might have different container templates for the different UBOS Release Channels. This setup so far has only installed one, which is good enough for most purposes.

To determine which container templates you have available (that depends on the previous step):

% ubosdev-container list-templates

Instantiate one of the available templates into a container to be used for development, such as:

% ubosdev-container create --name ubosdev-yellow --template ubos-develop-yellow

You can instantiate this template multiple times, in case you have multiple workstreams going and want to keep them separate. In this tutorial, we only instantiate one template once.

Ongoing development work

  1. Run your Arch Linux development VM in UTM.

  2. To determine which UBOS Linux containers you have:

    % ubosdev-container list
    
  3. Inside your UTM development VM, run your UBOS Linux container:

    % ubosdev-container run --name <name>
    

    where <name> is the name of an available container, e.g. ubosdev-yellow.

    This gives you console access to the container. This command is simply a wrapper around the systemd-nspawn command with options that are useful. You could run it directly, too.

    You shut down the container with 3 quick ^]s in the primary container console.

  4. To open up a non-root shell inside your development container, if ubosdev-yellow is the name of your container, open a new terminal and execute:

    % sudo machinectl shell ubosdev@ubosdev-yellow
    

    This essentially does the same thing as if you were to log into your container as user ubosdev from the console or via ssh, but you don’t need to have any credentials set up.

  5. When you run the container with ubosdev-container run, your home directory on your Arch Linux host will be the same as the home directory of the ubosdev user in the UBOS Linux container. This makes development much simpler because you can edit files either on the host or in the container; they are the same.

  6. To edit your code, the geany IDE is pre-installed on the Arch Linux host. Of course, you can install others from the Arch repositories or directly.

  7. You can connect to a Site running inside the UBOS Linux development container by using the container’s name as the hostname in the URL. So if one of your running containers is named ubosdev-yellow, typing http://ubosdev-yellow/ into your browser on the Arch Linux host will talk to the web server in your container. Firefox is pre-installed on the Arch Linux host.