topic title: mount usb drive
Posts: 667
jdmeaux1952
Joined: 01 Nov 2013
#1
Before anyone freaks, let me tell you what has happened.

I had built another JUNKBOX computer together last week for a teacher friend of mine. He wants to use LibreOffice Write to document some research he is doing. While showing him how to get into Write, he gave me a usb drive so I could show him how to Save and Copy the files he is writing to it.

The usb drive had some old stuff written on it, so I decided to use Gparted to Rename and Format the drive. Since the usb was going to be used also on a Windows machine to print the document, when I Formatted it I used FAT. Then I ReLabeled / Renamed the usb.

All this time, Write was in Window 1, and I was doing the above things in Window 2. I went back to Window 1 and started using Write to type out some junk to show him how to copy it over. When trying to SAVE AS the test typing, I got an error message telling me the usb drive was NOT MOUNTED. __{{emoticon}}__

I checked in both ROX file and with SpaceFM to see, and BOTH show the usb as MOUNTED. But whenever I try to save whatever to the usb drive in Write, I still get that weird message, telling me it is NOT MOUNTED. I then went back into Gparted and Unmounted then Mounted the usb drive. And still get the same message.

I rebooted the machine thinking that maybe it was some carryover from when I first started. NOPE! The same message in Write, NOT MOUNTED. I again tried with G[arted to UNMOUNT / MOUNT of the usb drive and no changes. It works okay on his Windows laptop, but not on his AntiX JUNKBOX I made him. I brought it home and it works on my JUNKBOX.

I ain't no genius but this one is weird to me. Two other usb drives he has work okay with Write to SAVE AS, but this one usb refuses to let Write write to it on his machine. __{{emoticon}}__ He could scrap this one, but it's a 16Gb while the others he has are 2 Gb.

Any ideas???
Posts: 4,164
rokytnji
Joined: 20 Feb 2009

27 Nov 2013, 01:01 #2

Is the drive locked or is one of those read only software windows only run program like U3 that Sandisk uses?

Another thing.

Get some idea by running as root

Code: Select all

blkid
and also as root

Code: Select all

fdisk -l
to get the dev/sdb./dev/sdc, or whatever. Then open rox as root while in terminal. Go to /media and make folders like sdb.sdc., or whatever fdisk or blkid says. Then close rox. Then as root in terminal

Code: Select all

 mount /dev/sd<whatever fdisk or blkid says> /media/sd<whatever fdisk or blkid says>
Open rox again and see if it mounted. Edited because fatmac showed where I screwed up in mount command.
Posts: 667
jdmeaux1952
Joined: 01 Nov 2013
#3
rokytnji wrote:Is the drive locked or is one of those read only software windows only run program like U3 that Sandisk uses?[/quote=]

Nope, and there is no software on it. Remember I mentioned I formatted it as FAT with Gparted BEFORE we tried to save stuff to it.

I'll try your recommendations tomorrow when I go over for another lesson. I'm in the process of teaching him how to use his computer. He knows how to get to Write (it's on the desktop), open the 4 different Windows on desktop to do multiple items (like Write in #1 and Iceweasel in #2). He knows how to turn it on and Logoff. LibreOffice is close enough to Word so he has no big problems there.

He loves the way I go over with my notes, read them to him, and then show him how to do it. Then he writes his own notes and follows them.
Posts: 2,238
dolphin_oracle
Joined: 16 Dec 2007
#4
quick point. did you do fat16 or fat32? fat32 would be the way to go.
Posts: 4,164
rokytnji
Joined: 20 Feb 2009
#5
Nope, and there is no software on it. Remember I mentioned I formatted it as FAT with Gparted BEFORE we tried to save stuff to it.
I can only tell you what I know from experience. The U3 software for Windows that came on my Sandisk Cruzer USB drives was read only which no matter how many times I ran gparted never removed it. I had to go here to remove it using Windows operating system.


========= SCRAPER REMOVED AN EMBEDDED LINK HERE ===========
url was:"http://u3.sandisk.com/launchpadremoval.htm"
linktext was:"http://u3.sandisk.com/launchpadremoval.htm"
====================================



========= SCRAPER REMOVED AN EMBEDDED LINK HERE ===========
url was:"http://askubuntu.com/questions/4653/how-do-i-get-rid-of-u3-system-on-my-usb-drive"
linktext was:"http://askubuntu.com/questions/4653/how ... -usb-drive"
====================================
Posts: 667
jdmeaux1952
Joined: 01 Nov 2013
#6
Dolphin -- FAT32...I can't even remember when was the last time I ever used FAT16. But I'll recheck tomorrow when I'm over.

Roky -- The usb wasn't a Sandisk. I think it was one of those"Chinese" paid advertisement models that businesses give at schools to the kids. Or one of those you buy at Office Depot on sale.
Posts: 1,062
Dave
Joined: 20 Jan 2010
#7
I am not sure if this will apply but normally when I reformat an usb key (generally an ext format) I need to mount it one time as root, chmod 777 the mount point * after * mounting and then unmount and use the stick as normal
Posts: 850
fatmac
Joined: 26 Jul 2012
#8
You have formatted it as the root user & now the mount point needs to be accessible by his user account.
Hopefully you created a fat32/vfat filesystem, not sure if you will have fat12 module on your system.

Code: Select all

sudo mkdosfs -F32 /dev/<usbstick>
If that doesn't get auto mounted, try mounting it manually.

Code: Select all

sudo mount -t msdosfs /dev/<usbstick> /<mountpoint>