DistroBox: Try Out Multiple Linux Distributions via the Terminal

Linux TLDR
Last Updated:
Reading time: 5 minutes

As you all know, Linux is famous for its multiple variants in the name of distributions, each offering unique software repositories, package managers, desktop environments, release cycles, stability, and much more.

The well-known Linux distributions are Debian, Ubuntu, RedHat, Fedora, and Arch, with the major difference between them being their target audience. For example, some distributions are tailored for desktop systems, some for server systems, and others for technophiles, and so forth.

If your current system runs on Ubuntu and you want to utilize a tool or package manager from another system like RedHat, you either need to set up and use a virtual machine or dual-boot it, which is precisely the issue that tools like DistroBox solve.

What is DistroBox?

DistroBox is a command-line program that allows you to run multiple Linux distributions within the terminal and run graphical applications from those distributions on the host system as if they were native applications.

It uses container-based technologies like Docker or Podman (whichever you prefer) to build a container using the Linux distribution of your choice, tightly integrating it with the host to enable sharing of the user’s HOME directory, external storage, USB devices, and graphical apps (X11/Wayland), as well as audio.

This approach of using multiple Linux distributions at once has its own advantages, some of which are discussed in the next section.

Advantages of DistroBox

The following is a list of the advantages of using DistroBox.

  • Create a test environment for making changes without affecting your host distribution.
  • Test a program or application on multiple Linux distributions.
  • Try out the latest Linux distribution features as they arrive.
  • Experience the new desktop environment (DE) before it officially arrives.
  • Access distribution-specific programs or applications natively on your host distribution.

How to Install DistroBox on Linux

The first thing you have to do is make sure either Docker or Podman (recommended) is installed on your host distribution. Then, if your current distribution is one from the below list, then DistroBox is already packaged in it, and you can install it using your default package manager.

πŸ“
Check out this full list if the listed distribution is not one that you are currently using.
  • Alpine Linux 3.19
  • Arch Linux (AUR)
  • Debian 13
  • Fedora 37, 38, and 39
  • Gentoo
  • Kali Linux Rolling
  • openSUSE Tumbleweed
  • Raspbian Testing
  • Ubuntu 24.04

If your distribution is not on the list, then you can run the following command to install DistroBox:

$ curl -s https://raw.githubusercontent.com/89luca89/distrobox/main/install | sudo sh

The curl command above will download the DistroBox installation script and execute it with superuser privileges. If you’re uncomfortable running an unknown script with superuser privileges, you can use the following command to install it:

$ curl -s https://raw.githubusercontent.com/89luca89/distrobox/main/install | sh -s -- --prefix ~/.local

Once the installation is complete, you can move on to the next section, learning usage.

Usage of DistroBox

In this section, our primary focus is on creating new DistroBox instances, ways to access CLI and GUI tools and applications inside and outside the container, and listing, updating, and removing DistroBox instances. So, let’s begin with…

Creating DistroBox Instances with a Specific Name and Hostname

The DistroBox container (a complete operating system in itself) can easily be created using the DistroBox command-line program. For example, if you issue the following command without any options, it will ask you to pull the default Fedora 39 image.

$ distrobox create

Output:

running distrobox create command without option

If you press the β€œy” key, it will start pulling the image from the registry. However, if you want to pull and use a specific Linux distribution, such as Ubuntu 23.10, then run.

πŸ’‘
If you have an Nvidia GPU and want to expose it to your DistroBox container, use the β€œ--nvidia” option.
$ distrobox create -i ubuntu:23.10 -n ubuntu

Whereas,

  • The β€œ-i” or β€œ--image” option will specify the container name (the OS name, such as β€œUbuntuβ€œ) along with its version (e.g., β€œ23.10β€œ), separated by a colon.
  • The β€œ-n” or β€œ--name” option will be used to give a memorable name to your container that can later be used to access it.

Output:

pulling ubuntu image using distrobox

(Optional) To have a different hostname for your DistroBox container, you can use the β€œ--hostname” option with a name parameter that will be used as the hostname.

$ distrobox create -i ubuntu:23.10 -n ubuntu --hostname distrobox

Once your container is created and you enter into it (explained in the next step), you will find that the hostname is the one you specified while creating the container.

setting custom hostname for distrobox container

Accessing a Command Prompt from a DistroBox Container

Once the image is pulled, you can enter in your container by using the container name. For example, in our previous example, we pulled an β€œUbuntu 23.10” image and named it β€œubuntuβ€œ, which can be used with the following command to access that container.

$ distrobox enter ubuntu

Output:

initializing the container for the first time

When you enter the first time, it will take some time only once to download the necessary files, configure the container, set up a new user password, and upon completion, you will be in your DistroBox container.

distrobox container created

To demonstrate that we are within the DistroBox container, I’ve displayed the versions of both the host and the DistroBox container below.

πŸ’‘
The difference between a host and a container can also be noticed by looking at their hostname.
comparing host system and distrobox container

One more thing to note is that your host distribution and DistroBox container share the same hardware and even the kernel, as can be seen in the following picture.

comparing hardware and kernel of host and distrobox container

Installing a Non-Native Distro Package with DistroBox

Once inside the DistroBox container, you can begin installing your favorite programs and applications using the default package manager specific to the Linux distribution running inside the DistroBox container.

πŸ“
When running a command with sudo, enter the password you set up while configuring the DistroBox container (not the one for your host distribution) when it asks for it.
$ sudo apt install vlc

Output:

install package inside distrobox container

Creating a Host App Launcher for a DistroBox App

Once the installation of your favorite application is completed, whether it’s CLI or GUI, you can access it by executing its command or application name inside your DistroBox container terminal.

Otherwise, if it’s a GUI application and you want to access it as a native program on your host distribution, then run the following command inside your DistroBox container.

πŸ“
Replace β€œvlc” with the program you have installed and want to access on the host distribution.
$ distrobox-export --app vlc

Output:

exporting application from distrobox container to host system

Now, the exported application will be accessible from the host distribution application menu.

accessing distrobox container program in host system

This way, you can easily export numerous apps or binaries to your host system, and if you forget to keep track of them, simply run the following command to view the list of all exported apps and binaries.

$ distrobox-export --list-apps
$ distrobox-export --list-binaries

Output:

checking the list of exported apps and binaries

In the future, if you wish to remove the exported application from the host distribution, run the following command within the DistroBox container:

$ distrobox-export --delete --app vlc

Output:

removing exported distrobox container application from host

Listing DistroBox Instances

If you are running multiple DistroBox instances, you can monitor their status by running the following command:

$ distrobox list

Output:

listing all running distrobox instance

Stop and Remove DistroBox Instances

To stop the running DistroBox container, specify its name with the following command:

$ distrobox stop ubuntu

And later, to remove the container image, run.

$ distrobox rm ubuntu

Output:

stopping and removing the distrobox container

How to Remove DistroBox from Linux

Finally, this article would be incomplete without detailing the steps for removing DistroBox. Therefore, if you have installed it from your distribution repositories, you can use your default package manager to uninstall it.

However, if you have installed it using the command mentioned in this article, then proceed to run the following command if DistroBox has been installed with superuser privileges.

$ curl -s https://raw.githubusercontent.com/89luca89/distrobox/main/uninstall | sudo sh

Or run the following command if you have installed DistroBox without superuser privileges.

$ curl -s https://raw.githubusercontent.com/89luca89/distrobox/main/uninstall | sh -s -- --prefix ~/.local

Final Word

As you can see, DistroBox is simple to learn, fun to use, and definitely helpful in certain scenarios. I’ve been using it for a while to test new features of upcoming distributions, and to be honest, I love it.

If you have any questions or queries related to the topic, then do let me know in the comment section.

Till then, peace!

Join The Conversation

Users are always welcome to leave comments about the articles, whether they are questions, comments, constructive criticism, old information, or notices of typos. Please keep in mind that all comments are moderated according to our comment policy.