Requirements & Basics
Reuirements
Install requirements for debian
apt-get install lxc libvirt0 libpam-cgfs bridge-utils uidmap
Basics
Start Container
lxc-start -n %NAME%
Stop Container
lxc-stop -n %NAME%
Attach Container (get access to cli inside container)
lxc-attach -n %NAME%
List info/state of containers
lxc-ls --fancy
Create container (template downloaded for unprivileged container)
lxc-create -n %NAME% -t download -- -r bookworm
Destroy (delete) container - container have to be stopped before
lxc-destroy -n %NAME%