AWS Volumes Setup
Installation
Step 1: Install LVM2
sudo apt-get update
sudo apt-get install lvm2Step 2: Prepare Physical Volume
sudo pvcreate /dev/nvme1n1Step 3: Create a Volume Group
sudo vgcreate vg0 /dev/nvme1n1
sudo lvcreate -l 100%FREE -n lv_data vg0 /dev/nvme1n1Step 4: Format and Mount the Logical Volume
Step 5: Format and Mount the SSD volume
Step 6: Create the symlinks
Step 7: Automount on Startup
Step 9: Testing the Configuration
Last updated
Was this helpful?

