Mount that drive
You just got a brand new shiny USB stick for moving things around your devices fast and easy but your NAS or home server does not see the newly plugged in device. In this tutorial, you will learn how to mount it as folder in the linux OS using the console commands.
Find the drive
Run the following command to display the attached disks:
fdisk -l
The output should look similar to this:
The disk is /dev/sdg1 and the format is FAT32.
Create the mount folder
Creating a folder where the USB device to be mounted is imperative so let’s create one:
mkdir /media/myusb
This… read more +