How to Install, Create and Manage LXC (Linux Containers) in Ubuntu/Debian

Over the last decade, the open-source community has seen a steady shift to containerization as the preferred way of deploying applications thanks to the numerous benefits it offers such as portability, flexibility, increased security, and easier management of applications. Popular containerization technologies include Docker, Podman, and LXD.

Written in Go language, LXD (pronounced as Lekseed) is described as the next generation system container and virtual machine manager that allows you to manage your containers and virtual machines from the command line, or by leveraging a REST API or other third party tools. LXD is an open-source project and is an extension of LXC (Linux Containers) which is OS-level virtualization technology.

LXC came into the picture around 2008, and LXD was launched 7 years later in 2015 with the same building blocks as LXC. LXD came to make containers more user-friendly and easy to manage.

Being an extension of LXC, LXD provides advanced features such as snapshots and live migration. It also provides a daemon that lets you easily manage containers and virtual machines. It is not intended to supplant LXC, rather, it is aimed at improving the usability and handling of LXC-based containers

In this guide, we will demonstrate how you can create and manage LXC containers using LXD on Debian/Ubuntu.

Step 1: Install LXD on Ubuntu

The first step is to install LXD. There are two ways of doing this, you can install from Ubuntu’s repository using the APT package manager or you can use snap.

Using APT, first update the system:

$ sudo apt update

Then install the LXD system container hypervisor as follows.

$ sudo apt install lxd
Install LXD in Ubuntu
Install LXD in Ubuntu

Using snap, you can install the latest version of LXD.

$ sudo snap install lxd

In addition, you can install the latest LTS release which is LXD 4.0 as follows:

$ sudo snap install lxd --channel=4.0/stable

You can verify the version of LXD installed as shown:

$ lxd --version
Check LXD Version
Check LXD Version

If you used to snap, you can verify that the LXD snap package was installed as shown:

$ snap list
List LXD Snap Package
List LXD Snap Package

Step 2: Initializing LXD Service

To initialize or start the LXD container hypervisor, run the command:

$ sudo lxd init

The command presents you with a set of questions on how to configure LXD. The defaults work just fine, however, you are at liberty to specify your own settings as per your requirements.

In this example, we have created a storage pool called tecmint_pool with the ZFS file system and volume manager. For the rest of the questions, we have chosen to go with the default options. An easy way to accept the default selection is to press the ENTER button on your keyboard.

Initializing LXD Service
Initializing LXD Service

Confirm the information provided by running the command:

$ sudo lxc profile show default
Confirm LXD Profile
Confirm LXD Profile

You can further narrow it down to the storage pool created. The commands below display details of the current storage pools.

$ sudo lxc storage list
$ sudo lxc storage show tecmint_pool
List LXD Storage Pools
List LXD Storage Pools

You can also display information about the network interface in use by LXD, in this case, lxdbr0, which is the default selection.

$ sudo lxc network show lxdbr0
List LXD Network Configuration
List LXD Network Configuration

Step 3: Creating LXD Containers in Ubuntu

Now, let’s switch gears and create Linux containers. You can list all the prebuilt containers that are available for download using the command:

$ sudo lxc image list images:

This populates a huge list of all the containers in various operating systems such as Ubuntu, CentOS, Debian, and AlmaLinux, to mention a few.

You can narrow it down to a specific distribution as follows:

$ sudo lxc image list images: | grep -i centos
$ sudo lxc image list images: | grep -i debian

In this example, we are listing the available containers.

$ sudo lxc image list images: | grep -i ubuntu
List LXC Container Images
List LXC Container Images

Now, we are going to create our first container. The syntax for creating a container is as follows:

$ sudo lxc launch images:{distro}/{version}/{arch} {container-name}

Now we are going to create two containers from Ubuntu 20 and Debian 10 respectively:

$ sudo lxc launch images:ubuntu/focal tecmint-con1
$ sudo lxc launch images:debian/10 tecmint-con2

In the above examples, we have created two containers: tecmint-con1 and tecmint-con2.

To list the containers created, run the command:

$ sudo lxc list

From the output, we can see our two containers listed.

List Created LXC Containers
List Created LXC Containers

To gain shell access to a LXC container run the command:

$ sudo lxc exec tecmint-con1 bash

Once you have gained shell access, notice that the prompt changes to indicate that you are running as the root user.

Access LXC Container Shell
Access LXC Container Shell

To exit the container, run the command:

$ exit

Step 4: Managing LXD Containers in Ubuntu

Now, let’s check out some of the commands you can use to manage LXD containers.

To list all the running containers, run the command:

$ sudo lxc list
List LXC Running Containers
List LXC Running Containers

To display detailed information about an LXC container, use the syntax:

$ sudo lxc info container-name

This will provide you with information such as the container’s name, architecture, creation date, status network interfaces, bandwidth, CPU, memory, and disk usage to mention a few metrics.

Get LXC Container Info
Get LXC Container Info

To stop an LXC container, use the syntax:

$ sudo lxc stop container-name

For example, to stop container tecmint-con1, execute the command:

$ sudo lxc stop  tecmint-con1

Again, list the containers to confirm that the container has been stopped.

$ sudo lxc list
Confirm LXC Container
Confirm LXC Container

Alternatively, you can list either running or stopped containers as follows:

$ sudo lxc list | grep -i STOPPED
$ sudo lxc list | grep -i RUNNING
List Running and Stopped LXC Containers
List Running and Stopped LXC Containers

To start an LXC container, use the syntax:

$ sudo lxc start container-name

For example, to start container tecmint-con1 run the command:

$ sudo lxc start tecmint-con1
Start LXC Container
Start LXC Container

You can start or stop containers bypassing them in one command separated by a space using the following syntax:

$ sudo lxc stop container1 container2
$ sudo lxc start container1 container2

For example, to stop all containers, run:

$ sudo lxc stop tecmint-con1 tecmint-con2

To restart an LXC container, use the syntax:

$ sudo lxc restart container-name

For example, to restart container tecmint-con1 run the command:

$ sudo lxc restart tecmint-con1

Alternatively, you can pass multiple containers in a single command:

$ sudo lxc start container1 container2

For example, to restart all containers, run:

$ sudo lxc restart tecmint-con1 tecmint-con2

To delete an LXC container, first, stop it, then delete it. For example, to delete container tecmint-con2, run the command:

$ sudo lxc stop tecmint-con2
$ sudo lxc delete tecmint-con2
Delete LXC Container
Delete LXC Container

This guide has provided you with a solid foundation about LXD containers and how you can launch, create and manage containers. It’s our hope that you can now comfortably launch and manage your containers without much difficulty.

James Kiarie
This is James, a certified Linux administrator and a tech enthusiast who loves keeping in touch with emerging trends in the tech world. When I'm not running commands on the terminal, I'm taking listening to some cool music. taking a casual stroll or watching a nice movie.

Each tutorial at TecMint is created by a team of experienced Linux system administrators so that it meets our high-quality standards.

Join the TecMint Weekly Newsletter (More Than 156,129 Linux Enthusiasts Have Subscribed)
Was this article helpful? Please add a comment or buy me a coffee to show your appreciation.

Got Something to Say? Join the Discussion...

Thank you for taking the time to share your thoughts with us. We appreciate your decision to leave a comment and value your contribution to the discussion. It's important to note that we moderate all comments in accordance with our comment policy to ensure a respectful and constructive conversation.

Rest assured that your email address will remain private and will not be published or shared with anyone. We prioritize the privacy and security of our users.