DEV Community

abbazs
abbazs

Posted on • Updated on

How to mount usb/hdd and copy files in linux?

  • List all the usb drives
sudo fdisk -l
Enter fullscreen mode Exit fullscreen mode
  • Mount the drive required
# If the mount point is not there already create it
sudo mkdir /media/usba
sudo mount -t vfat /dev/sda1 /media/usba -o uid=1000,gid=1000
Enter fullscreen mode Exit fullscreen mode

https://help.ubuntu.com/community/Mount/USB

Top comments (0)