7

I am running version 22.04.01 of Ubuntu and I installed LDX using the apt with the lxd-installer package.

How do I completely remove LXD from my system?

Artur Meinild
  • 31,035
Hendré
  • 779

1 Answers1

9

LXD is installed as a snap. To remove it, run:

sudo snap remove --purge lxd

Afterwards, you can remove the lxd-installer helper package:

sudo apt remove --purge lxd-installer

The --purge option in both commands ensures complete removal of everything, including configuration files etc.

Artur Meinild
  • 31,035