Linux - Interview
*] How to permanently mount a disk in linux
create a vol attach it to inst
{ sudo file -s /dev/xvda1 } --> gives the file system type
mkfs -t xfs /dev/xvdf --> to Format to a filesystem
mkdir /mnt --> create an empty directory
mount /dev/xvdf /m...
devopswithakash.hashnode.dev1 min read