Jump to content

Hello, I am running elementary os 0.4 Loki and having problems with my USB stick and the files app.

You see, when I insert my USB stick, I open the files app to try to try start copying files to it. However, It is not listed in the devices menu, as shown in the image below.

So, I tried to make sure that it was mounted by first finding the path of the USB, And then I tried to mount it by typing this command: 

 sudo mount /dev/sdb /mnt

And I get this error:

mount: wrong fs type, bad option, bad superblock on /dev/sdb,
       missing codepage or helper program, or other error
       In some cases useful info is found in syslog - try
       dmesg | tail or so.


So I opened Gparted and it was shown there. How weird! You can see in the image below. I reformated it as fat32 as shown in the image below as well.

I opened files once again, and still did not see it. So I tried running the mount code again and got the same error.

Can someone please tell me what is up? Is it my os or the USB itself?

Thank you! :) 

 

 

 

 

Screenshot from 2016-10-07 10:43:07.png

Screenshot from 2016-10-07 10:44:33.png

 

 

Link to comment
https://linustechtips.com/topic/672375-usb-and-files-error/
Share on other sites

Link to post
Share on other sites

4 minutes ago, Lehti said:

Try


sudo mount -t fat32 /dev/sdb1 /mnt

It may be that Elementary OS is trying to mount it as ext4, although Debian Jessie mounts it without specifying the filesystem type.

 
 

Well, after running the code, I get the following error:

mount: unknown filesystem type 'fat32'

 

This is weird! How can I fix that system no longer knows what fat32 is?

Do you think my system might be corrupted?

Link to comment
https://linustechtips.com/topic/672375-usb-and-files-error/#findComment-8665142
Share on other sites

Link to post
Share on other sites

I suppose the USB stick doesn't show up because it's mounted in a place other than /media/LABEL. You can still access your files by going to Files system -> mnt.

 

EDIT:

As I thought, the USB stick will only show up in the file manager if it's mounted in /media/$USER/folder.

Use

sudo mkdir /media/$USER/stick && sudo mount -t vfat /dev/sdb1 /media/$USER/stick

and it will show up.

Link to comment
https://linustechtips.com/topic/672375-usb-and-files-error/#findComment-8666999
Share on other sites

Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×