The steps in this subsection are executed in all the nodes of the LXD Cluster.
1. Install LXD snap
2. Add production values in sysctl
**Install LXD snap**: Execute the following commands
```bash
sudo apt update
sudo apt-get purge lxd lxd-client -y
sudo apt-get install zfsutils-linux -y
sudo snap install lxd
```
**Add production values in sysctl**: Create a file in `/etc/sysctl.d/60-lxd-production.conf` with the following content, and then execute `sudo sysctl --system`.
A common authentication method in LXD is the use of certificates, and this subsection will focus on the preparation of the certificates to be ready. Basically, we need to first create a certificate and trust it in the LXD Cluster.
All the commands in this section are executed in the first LXD node.