j authored by Jeffrey Fisher's avatar Jeffrey Fisher
...@@ -18,11 +18,13 @@ For our use case, you'll be using Distrobox to run a specific Ubuntu version on ...@@ -18,11 +18,13 @@ For our use case, you'll be using Distrobox to run a specific Ubuntu version on
# Installing Distrobox # Installing Distrobox
Official instructions: https://distrobox.privatedns.org/#installation ```sh
sudo apt update && sudo apt install -y curl podman
If Distrobox is already packaged for your Linux distribution, you can install it with your package manager. If you're on the latest version of your distribution, Distrobox is probably available in the package repositories. ```
Otherwise follow the "Curl or Wget" instructions. ```sh
curl -s https://raw.githubusercontent.com/89luca89/distrobox/main/install | sudo sh
```
# Creating the Ubuntu container # Creating the Ubuntu container
...@@ -30,6 +32,8 @@ By default Distrobox does not create a separate home directory for the container ...@@ -30,6 +32,8 @@ By default Distrobox does not create a separate home directory for the container
I like to store the home directories for my Distroboxes under `~/distrobox/`. --- Jeff I like to store the home directories for my Distroboxes under `~/distrobox/`. --- Jeff
Make the `~/distrobox/ram` directory to store the files for the container.
```sh ```sh
mkdir -p ~/distrobox/ram mkdir -p ~/distrobox/ram
``` ```
... ...
......