Ubuntu – Ubuntu 16.04 LTS – USB flash drive doesn’t appear in the launcher

usb-drive

Please,can someone help my to understand why a TDK USB flash drive doesn't appear in the launcher.

I formatted it with "disks"utility and when I plug it in,I can see it (in disks utility).

But I need to copy same files into the USB and if it doesn't appear I can't.Or,are there other ways to copy my files?

Thank you

Best Answer

Using Gnome Disks to format clears the USB drive, but doesn't create a new partition. To create a new one:

  1. sudo fdisk /dev/sdb (make sure the usb drive is /dev/sdb, it looks like it based on your output of lsblk)

Type o, n, p, 1, Enter, Enter, w

  1. Now format the new partition with sudo mkfs.vfat /dev/sdb1

Your USB drive should now appear under the file manager

Related Question