Created
May 14, 2021 12:04
-
-
Save FleXoft/6c12c52dbe0181d532813a6ccc3d8ff1 to your computer and use it in GitHub Desktop.
linux pv vg lv mkfs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pvcreate /dev/sdc1 | |
vgcreate vtl-media /dev/sdc1 | |
lvcreate -n lv_vtl-media vtl-media --size 1500G | |
mkfs.xfs -L vtl-media /dev/mapper/vtl--media-lv_vtl--media | |
cat /etc/fstab | |
LABEL=vtl-media /vtl-media xfs defaults 0 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment