Mounting Drive
Mounting flash drive
sudo fdisk -l # Check for available drive to mount
sudo mount /dev/sda1 /mnt # Example: Mount '/dev/sda1' drive into '/mnt'
Unmounting Drive
sudo unmount <drive>
Ref:
Formatting Drive
Format to vFat FileSystem
sudo mkfs.vfat <drive>
Format to EXT44 FileSystem
sudo mkfs.ext4 <drive>
Ref: