mount: Arugument list too Long
This above error you will receive when you are looking to mount the partition which is more than limited in size.
Due to an file system limitations. You will get the above Error
When you want to create an large file system here you go
Do not create any valid partitions by entering into the fdisk.
Directly Create PV
~]#pvcreate /dev/sdd
~]#vgcreate VG0 /dev/sdd
~]#lvcreate -l 100%FREE -n LV0 VG0
~]#mkfs.xfs /dev/VG0/LV0
~]#mount /dev/VG0/LV0 /filesystem
No comments:
Post a Comment