- Create the partition using GParted for example and take note of the partition path (/dev/sd*).
- Use the command
sudo cryptsetup luksFormat <device path>
to create the encrypted partition.
- Using GParted, for example, "Open" the encrypted partition.
- Using the command
lsblk
, you should see the encrypted partition with a name ending with_crypt
, take note of it. - Create the LVM Physical volume using the command
sudo pvcreate /dev/mapper/<encrypted partition name>
.