vinnie wrote: ↑18 Feb 2025, 01:46
I like nemesis very much as well, the only problems I have noticed so far are inherited from the fact that systemd was removed, but this is unfortunately the fault of arch who chose to use it
What do you mean by container support?
Youre going to like this.
Code: Select all
mount -t cgroup2 cgroup /sys/fs/cgroup
mount --make-rshared /
Now you can run containers with podman. Activate 05devel
pman -Sw podman
enter
make the module
pman -Sw yajl-2.1.0-6-x86_64
enter
Now that podman is activate you have to change a few config settings.
sudo nano /etc/containers/containers.conf
uncomment cgroups and change it to cgroups = "enabled"
scroll down to cgroup_manager
change it to cgroup_manager = "cgroupsfs" line475
ctrl-x yes to save
sudo nano /etc/storage.conf
driver should be overlay
uncomment rootless_storage_path = "$HOME/.local/share/containers/storage"
ctrl-x save changes
If your porteus install is /mnt/sda3/ we will use it (has to be ext4 partition)
mkdir /mnt/sda3/containers
cd /home/guest/.local/share/
ln -s /mnt/sda3/containers/ containers
You need distrobox and the shadow package as a final step.
pman -Sw shadow
enter
activate shadow
pman -Sw distrobox
enter
activate distrobox
Now you have to setup the subuid and subgid
sudo sh -c "echo $(id -un):100000:65536 >> /etc/subuid"
sudo sh -c "echo $(id -un):100000:65536 >> /etc/subgid"
podman system migrate
if you get a bump in the road or containers wont install.
cd /home/guest/.local/share/containers
sudo su
rm -r */
this will clear out all the old vfs or overlay files so podman doesnt error out at you
try podman system reset once again
Youre all set to install containers. you can install archlinux and use pacman and yay. I have a guide for that step
viewtopic.php?p=101939#p101939
You need quite a bit of storage space but once you have it setup if you need one app you can just do it that way.