# 1. add storage disk to vm # List disk fdisk -l # /dev/vdb # 2. Create Partition fdisk /dev/vdb | fdisk /dev/vbc m n p (primary) 1 (partition number) # Change a parition's system id t 83 (Linux) | 8e (linux lvm) | # Write & quit w # /dev/vdb1 # 3. format disk mkfs.ext4 /dev/vdb1 | mkfs.ext /dev/vdb1 | # 4. Mounting Storage Disk Partition Formated mkdir /mnt/s2 | mkdir /mnt/mine/vol-appx | mkdir /mnt/mine/vol-appy mount /dev/vdb1 /mnt/s2 # 5. Auto Mount Boot blkid # get UUID for vdb1 # edit add /etc/fstab UUID=a213ed98-641f-4f67-9480-d92a8d7e82f7 /mnt/s2 ext4 defaults 0 0 UUID=8db0a63b-8ca0-49a2-bd78-4bb52d47caa5 /mnt/s2 ext4 defaults 0 0 # Copying files rsync -axHAWXS --numeric-ids --info=progress2 /mnt/mine/vol-appx/ /mnt/mine/vol-appy/ > rsync.out