Linux - Hardware This forum is for Hardware issues.
Having trouble installing a piece of hardware? Want to know if that peripheral is compatible with Linux? |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
|
06-15-2006, 03:44 PM
|
#1
|
Member
Registered: Jun 2006
Location: Stevensville, Michigan, USA
Distribution: Ubuntu 6.06 LTS dual boot with XP Pro
Posts: 37
Rep:
|
Can't Mount External (USB) Floppy Drive
Hi All,
Using Ubuntu 6.06 LTS and I can't seem to be able to mount my USB
floppy drive. When I plug in activity light blinks but drive won't mount.
I have the discmounter utility in the panel and the drive shows there as unmounted if I choose mount option nothing happens. When I disconect drive an error message pops up. Below is a link to screen shot to
to illustrate the error message. Any suggestions.
http://i30.photobucket.com/albums/c3...reenshot-1.png
Thanks
P.S. All other external drives (USB) mount automatically, no problem.
Last edited by frank golden; 06-15-2006 at 03:46 PM.
|
|
|
06-15-2006, 11:52 PM
|
#2
|
Member
Registered: Jun 2006
Location: Stevensville, Michigan, USA
Distribution: Ubuntu 6.06 LTS dual boot with XP Pro
Posts: 37
Original Poster
Rep:
|
Anybody? Please
|
|
|
06-16-2006, 12:03 AM
|
#3
|
Member
Registered: Oct 2005
Location: Australia
Distribution: slackware 12.1
Posts: 753
Rep:
|
try the manual mount.
and see by what name linux recognizes you drive, must be something like /dev/fd0 or it could be different just look out for the difference in before/after you plug usb floppy drive.
use the
Code:
mount /dev/fd0 /mnt/floppy
adjust the code accordingly.
or
for help.
|
|
|
06-16-2006, 01:48 AM
|
#4
|
Member
Registered: Jun 2006
Location: Stevensville, Michigan, USA
Distribution: Ubuntu 6.06 LTS dual boot with XP Pro
Posts: 37
Original Poster
Rep:
|
Quote:
Originally Posted by prozac
try the manual mount.
and see by what name linux recognizes you drive, must be something like /dev/fd0 or it could be different just look out for the difference in before/after you plug usb floppy drive.
use the
Code:
mount /dev/fd0 /mnt/floppy
adjust the code accordingly.
or
for help.
|
I tried the [code] sudo mount -t vfat /dev/sdc /media/floppy
which should be the proper command for mounting drive in Ubuntu.
No good get error about mount point being busy.
Ubuntu uses /media directory for mounting drives.
Last edited by frank golden; 06-16-2006 at 01:50 AM.
|
|
|
06-16-2006, 01:53 AM
|
#5
|
Member
Registered: Oct 2005
Location: Australia
Distribution: slackware 12.1
Posts: 753
Rep:
|
Quote:
Originally Posted by frank golden
I tried the [code] sudo mount -t vfat /dev/sdc /media/floppy
which should be the proper command for mounting drive in Ubuntu.
No good get error about mount point being busy.
Ubuntu uses /media directory for mounting drives.
|
its a convention and not a neccesity. if mount point /media/floppy is busy then mount it somewhere else. for eg create /media/floppy2 and use it instead of /media/floppy
|
|
|
06-16-2006, 02:01 AM
|
#6
|
Member
Registered: Jun 2006
Location: Stevensville, Michigan, USA
Distribution: Ubuntu 6.06 LTS dual boot with XP Pro
Posts: 37
Original Poster
Rep:
|
Quote:
Originally Posted by prozac
its a convention and not a neccesity. if mount point /media/floppy is busy then mount it somewhere else. for eg create /media/floppy2 and use it instead of /media/floppy
|
Ok. No go
frankgolden@frankgolden-laptop:~$ sudo mount -t vfat /dev/sdc /media/floppy2
mount: /dev/sdc already mounted or /media/floppy2 busy
frankgolden@frankgolden-laptop:~$
see link to new screen shot showing contents of /media/floppy while drive is plugged in. When drive is unplugged folder disapears.
http://i30.photobucket.com/albums/c3...creenshot1.png
Last edited by frank golden; 06-16-2006 at 02:09 AM.
|
|
|
06-16-2006, 02:14 AM
|
#7
|
Member
Registered: Oct 2005
Location: Australia
Distribution: slackware 12.1
Posts: 753
Rep:
|
the screenshot doesnot offers much help. does ubuntu automounts? it seems the device is already mounted somewhere. it could also be that it is mounted but is empty. in the shell type the command 'mount' and it will show you what is mounted where. you can post the output here.
|
|
|
06-16-2006, 02:36 AM
|
#8
|
Member
Registered: Jun 2006
Location: Stevensville, Michigan, USA
Distribution: Ubuntu 6.06 LTS dual boot with XP Pro
Posts: 37
Original Poster
Rep:
|
Quote:
Originally Posted by prozac
the screenshot doesnot offers much help. does ubuntu automounts? it seems the device is already mounted somewhere. it could also be that it is mounted but is empty. in the shell type the command 'mount' and it will show you what is mounted where. you can post the output here.
|
Thanks for your help but I think I figured it out. Ubuntu does automount but with this drive it takes over 7 minutes. I timed it.
All other drives are USB 2.0 devices and mount in a few seconds.
This is a 1.1 USB floppy drive. Maybe that is why the delay. Anyway I wasn't being patient enough. Sorry to waste your time like this Prozac. I guess the reason our commands were returning errors was that pmount was busy trying to mount drive. I am used to things
happening quickly on this machine.
Thanks for your help.
|
|
|
06-17-2006, 06:29 AM
|
#9
|
Member
Registered: Jun 2006
Location: Stevensville, Michigan, USA
Distribution: Ubuntu 6.06 LTS dual boot with XP Pro
Posts: 37
Original Poster
Rep:
|
Update: Problem Fixed
Hi All,
Edited fstab added line:
/dev/sdc /media/floppy msdos noauto,user,rw,defaults 0 0
sdc is the name of drive when it is the first/only USB device
plugged in to my computer. I did have to mkdir /media/floppy.
I now have a icon in Computer called floppy regardless of whether the external drive is plugged in or not. However when I plug in my
external drive a new icon appears called External Floppy Drive:
floppy. When I insert a disk the drive mounts automatically in about 20 seconds with full R/W priveleges. Don't know why problem.
I have submitted bug report.
|
|
|
All times are GMT -5. The time now is 03:32 PM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|