To solve that, run these commands from your terminal:
mkdir stick fdisk -l mount /dev/sdc1 stickThat will:
1. create a mountpoint
2. allow you to find the device that matches your storage size, e.g. /dev/sdc
3. mount the 1st partition of that device on your mountpoint
Before removing the device you may want to unmount it, lest OSs like Windows complain on insert:
umount stickYou can possibly save keystrokes by pressing the up arrow key a few times so you only have to prepend a "u" to the mount command in your command history:
umount /dev/sdc1 stick
No comments:
Post a Comment