@clauded thanks for your answer.
It's true, not all commands are required, at least from my experience !
See in this post my lxc installation experience. I conclude that in order to install lxd
I need to run:
sudo eopkg install lxd
sudo usermod -a -G lxd $(whoami)
sudo systemctl enable lxd
# and after reboot
sudo lxd init
So your suggestion remains :
echo "root:100000:65536" | sudo tee -a /etc/subuid
echo "${USER}:100000:65536" | sudo tee -a /etc/subuid
echo "root:100000:65536" | sudo tee -a /etc/subgid
echo "${USER}:100000:65536" | sudo tee -a /etc/subgid
... and similar solution is provided in a github post I provided before, but it's Ubuntu and /etc/subuid
and /etc/subgid
are already there !!
I can try creating those files, but aren't those supposed to be created while lxd
installation ?
regards