The first time I had this kind of problem was when I was trying to create a bootable USB drive and a pop-up windows appeared informing me that “you must first mount USB drive /dev/sdc1 to a mount-point. Most distributions will do this automatically after you remove and reinsert the USB drive”. I had never had this matter on Linux because, normally, all the USB drives are immediately recognized and mounted but there is always a first time….
After some googling I discovered that a specific program dconf-editor could help me to check the Linux settings and to consequentlyresolve the situation.
First of all you need to install dconf-editor on your Linux so you have to open a Terminal and type:
sudo apt-get install dconf-tools
After the installation you launch dconf-editor (for MATE environment it’s into the System Tool menu) and navigate it to media-handling:
org –> gnome –> desktop –> media-handling
Now you have to be sure that commands automount and automount-open are both flagged.
If you discover that they are already flagged, its necessary to manually create a mount point using the Terminal.
Open a Terminal and type:
df -H
to see the mounted disks. If you are not able to find the USB drive that you want to mount then type:
sudo fdisk -l
and you’ll see all disks (mounted/unmounted).
Now you are able to know the right drive identity (e.g. sdb1, sdc1, sdd1) that your OS assigned to that specific drive. Memorize it and start to create the mount point:
sudo mkdir /media/newusb
where “newusb” is the mount point name you want to assign to your USB drive.
Then type:
sudo mount /dev/sdb1 /media/newusb
where “sdb1” is the drive identity we found before and “newusb” the mount-point name you choose.
That’s it, now your USB drive has a mounting point and you can use it (in my case I was able to create a bootable USB drive usiing Unetbootin)
You can find some extra useful tips about mounting USB drives at the Ubuntu community. 


In our last post we examined the possibility to recover deleted data from USB keys and disks. Today we want to focus your attention on the proper way to destroy sensitive data from your disks.
Everyday we use USB keys to transfer data without transmitting them through the t. The USB keys and portable disks are small, light and their data capacity allow us to move in privacy huge files. This idyll sometimes is broken by a fatal mistake: we unintentionally delete an important file. Normally, if we are smart we recover the erased file in the Trash but in other situations when we realize the mistake we had made is too late.
When it comes to the most recent generation of computers, there is an option to start an operating system right from a USB stick, without an actual installation process. This may be an option to use or test a different operating system without affecting in any way the one that is already installed.
