2023-02-12 07:16:17 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
|
|
|
|
sudo pacman -S podman fuse-overlayfs
|
|
|
|
|
2023-04-07 04:56:57 +00:00
|
|
|
sudo pacman -S distrobox
|
2023-02-12 07:16:17 +00:00
|
|
|
|
|
|
|
|
|
|
|
echo "setting storage driver to btrfs, if not using btrfs change this in ~/.config/containers/storage.conf"
|
|
|
|
mkdir ~/.config/containers/
|
|
|
|
|
|
|
|
{
|
|
|
|
echo "[storage]"
|
|
|
|
echo ""
|
|
|
|
echo "driver = \"btrfs\""
|
|
|
|
echo ""
|
|
|
|
} > ~/.config/containers/storage.conf
|
|
|
|
|