I have 2 identical SSD and I want to leverage the maximum of performance by stripping access.
Inspirations:
- https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/6/html/logical_volume_manager_administration/lv_stripecreate
- https://www.tecmint.com/manage-multiple-lvm-disks-using-striping-io/
In short:
sudo pvcreate /dev/nvme0n1 sudo pvcreate /dev/nvme1n1 sudo vgcreate vg00 /dev/nvme0n1 /dev/nvme1n1 sudo lvcreate -i 2 -L 768G -n vmware vg00 sudo mkfs.btrfs /dev/vg00/vmware