# LXC ### Installation On debian install it using __snap__ it is the preferred way. ### Initialization: Follow [this](https://www.digitalocean.com/community/tutorials/how-to-install-and-configure-lxd-on-ubuntu-20-04) tutorial to set up **lxd**. ### Launch and list containers: ```bash lxc launch ubuntu:22.04 lxc list ``` to stop a container: ```bash lxc stop ``` to delete a container: ```bash lxc delete ``` ### Setup static ip for container: ```bash lxc config device override eth0 lxc config device set eth0 ipv4.address ``` ### Start a shell inside a container: ``` lxc shell ``` ### Exposing container to the public: Todo, for now follow linked tutorial. Host it on your own.