How to list VM images in LXD (Linux Containers)

Here’s how you can list the available VM images in LXD (Linux Containers):

  1. Open a terminal and log in to your Linux system.
  2. Launch the LXD client using the following command:
lxc launch ubuntu:
  1. Use the following command to list the available VM images:
lxc image list images:

The output of this command will show a list of the available VM images in LXD, including the image name, architecture, and size. You can use this information to launch a new container with a specific image.

Leave a Comment