How to mount USB drive on terminal

Check fdisk and locate your USB

sudo fdisk -l

Create a directory for mounting point

sudo mkdir /mnt/kimtestUSB
or
sudo mkdir /media/kimtestUSB

Mount your USB

sudo mount /dev/sdcx /media/kimtestUSB

View all mounted

df or mount

 Unmount to unplug your USB physically

sudo umount /media/kimtestUSB

 

Leave a Comment

Your email address will not be published. Required fields are marked *