![]() |
VOOZH | about |
| Other languages Deutsch ; ; Português (Brasil) |
| Synopsis: Distrobox is a powerful tool for Linux users who want to use or try out different distributions without having to reboot the system or create virtual machines. It allows you to create containers from different Linux distributions and integrate them into your host system, offering an almost native experience. |
At present, Distrobox is not available as a Mageia package. However, it is straightforward to install.
To install, simply type the following command in the terminal:
curl -s https://raw.githubusercontent.com/89luca89/distrobox/main/install | sudo sh
or if you haven't set up your user to allow sudo
su -
curl -s https://raw.githubusercontent.com/89luca89/distrobox/main/install | sh
You must have a container environment installed in order for Distrobox to work, so either docker or podman (both available from MCC)
Distrobox uses containerization technologies such as Podman or Docker to create isolated environments. However, it goes further, sharing resources from the host system with these containers, such as:
To create a container with the Arch Linux distribution and enter it:
distrobox-create archlinux
distrobox-enter archlinux
distrobox create --image ubuntu:22.04 --name ubuntu
distrobox enter ubuntu
sudo apt update && sudo apt-get install --no-install-recommends ubuntu-desktop -y
wget https://d3nt0h4h6pmmc4.cloudfront.net/new_workspacesclient_jammy_amd64.deb
sudo apt install ./new_workspacesclient_jammy_amd64.deb -y
distrobox-export --app workspacesclient
Official documentation: [1]
This Wiki page is based on Brazilian Portugese version