LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > SUSE / openSUSE
User Name
Password
SUSE / openSUSE This Forum is for the discussion of Suse Linux.

Notices


Reply
  Search this Thread
Old 05-28-2006, 09:28 AM   #1
tram
LQ Newbie
 
Registered: Nov 2005
Posts: 21

Rep: Reputation: 15
How do I get my Floppy drive working with Suse 10.1


I just installed the retail version of Suse 10.1 and everything is working fine except for the floppy drive. A picture appears on the desktop for the floppy drive, but every time I try and access it, I get a Mount Error: Method "Mount" with signature "ssas" on interface "org.freedesktop.Hal.Device.Volume" doesn't exist


Any ideas on fixing this problem?

Last edited by tram; 05-28-2006 at 10:57 AM.
 
Old 05-28-2006, 09:42 AM   #2
tram
LQ Newbie
 
Registered: Nov 2005
Posts: 21

Original Poster
Rep: Reputation: 15
My fstab file looks like this:

/dev/sda2____________/____________________reiserfs___acl,user_xattr________1 1
/dev/sda3____________/home________________reiserfs___acl,user_xattr________1 2
/dev/sda1____________swap_________________swap_______defaults______________0 0
proc_________________/proc________________proc_______defaults______________0 0
sysfs________________/sys_________________sysfs______noauto________________0 0
debugfs______________/sys/kernel/debug____debugfs____noauto________________0 0
usbfs________________/proc/bus/usb________usbfs______noauto________________0 0
devpts_______________/dev/pts_____________devpts_____mode=0620,gid=5_______0 0
/dev/fd0_____________/media/floppy________auto_______noauto,user,sync______0 0

*(I ADDED THE "______" LINES TO KEEP THE FORMATTING OF THE 5 SEPARATE COLUMNS)

Thanks

Last edited by tram; 05-28-2006 at 09:54 AM.
 
Old 05-28-2006, 10:25 AM   #3
crazibri
Member
 
Registered: Mar 2004
Location: Orange County, CA
Distribution: OS X, SuSE, RH, Debian, XP
Posts: 377

Rep: Reputation: 31
My fstab in Suse 10.0 looks like this for my floppy:

Code:
/dev/fd0             /media/floppy        subfs      noauto,fs=floppyfss,procuid,nodev,nosuid,sync 0 0
 
Old 05-28-2006, 10:58 AM   #4
tram
LQ Newbie
 
Registered: Nov 2005
Posts: 21

Original Poster
Rep: Reputation: 15
I tried adding that line in and I'm still having the same problem.
 
Old 05-28-2006, 11:35 AM   #5
crazibri
Member
 
Registered: Mar 2004
Location: Orange County, CA
Distribution: OS X, SuSE, RH, Debian, XP
Posts: 377

Rep: Reputation: 31
What happens if you put your floppy in the drive, then go to a command shell, login as root, and type:

mount /dev/fd0 /media/floppy

Also, you might want to make sure you have a folder called "floppy" in /media.

Hope this helps

 
Old 05-28-2006, 01:20 PM   #6
tram
LQ Newbie
 
Registered: Nov 2005
Posts: 21

Original Poster
Rep: Reputation: 15
That worked! It read the floppy and let me access it, but it wont let me unmount from the gui. When I put a different floppy in the drive, it doesn't recognize the change.

Last edited by tram; 05-28-2006 at 01:30 PM.
 
Old 05-28-2006, 07:01 PM   #7
crazibri
Member
 
Registered: Mar 2004
Location: Orange County, CA
Distribution: OS X, SuSE, RH, Debian, XP
Posts: 377

Rep: Reputation: 31
well if you mount it as root, you can only umount it as root.

That tells me that your drive works fine and so does the mounting.
Your fstab must be wrong somewhere...

After you mount your floppy and can see your floppy files, can you just type "mount" and paste the output here? That'll help clue me in on the proper format for your fstab.
 
Old 05-28-2006, 07:19 PM   #8
fragos
Senior Member
 
Registered: May 2004
Location: Fresno CA USA
Distribution: Ubuntu 10.10
Posts: 1,466

Rep: Reputation: 51
Just change floppies and use the reload icon to access the new floppy's files.
 
Old 05-28-2006, 09:36 PM   #9
tram
LQ Newbie
 
Registered: Nov 2005
Posts: 21

Original Poster
Rep: Reputation: 15
crazibri, here's what I got...

/dev/sda2 on / type reiserfs (rw,acl,user_xattr)
proc on /proc type proc (rw)
sysfs on /sys type sysfs (rw)
debugfs on /sys/kernel/debug type debugfs (rw)
udev on /dev type tmpfs (rw)
devpts on /dev/pts type devpts (rw,mode=0620,gid=5)
/dev/sda3 on /home type reiserfs (rw,acl,user_xattr)
securityfs on /sys/kernel/security type securityfs (rw)
/dev/fd0 on /media/floppy type vfat (rw)

Last edited by tram; 05-28-2006 at 09:37 PM.
 
Old 05-28-2006, 10:31 PM   #10
crazibri
Member
 
Registered: Mar 2004
Location: Orange County, CA
Distribution: OS X, SuSE, RH, Debian, XP
Posts: 377

Rep: Reputation: 31
Try putting this in your fstab instead:

Code:
/dev/fd0 /media/floppy auto rw,noauto,user,sync 0 0
 
Old 05-29-2006, 05:50 PM   #11
tram
LQ Newbie
 
Registered: Nov 2005
Posts: 21

Original Poster
Rep: Reputation: 15
I tried that and nothing happened.
 
Old 05-29-2006, 06:38 PM   #12
crazibri
Member
 
Registered: Mar 2004
Location: Orange County, CA
Distribution: OS X, SuSE, RH, Debian, XP
Posts: 377

Rep: Reputation: 31
Well you're in luck. I just installed Suse 10.1.

my new fstab shows:

Code:
/dev/fd0             /media/floppy        auto       noauto,user,sync      0 0
I would put it back to the way it was. Then once you reboot, try to just click on it. If it doesnt work, you may have to right click, click mount, then try clicking on it. I read this in the release notes that some older drives dont auto mount or unmount because of their design and lack of signalling the OS for media changes.
 
Old 05-29-2006, 07:49 PM   #13
tram
LQ Newbie
 
Registered: Nov 2005
Posts: 21

Original Poster
Rep: Reputation: 15
yeah, my fstab shows the same thing, but it never worked. I tried the right click, mount, but that doesn't work either. This is a brand new drive. i just built this system. I even tried swapping it for another drive I had lying around but still nothing. this is the 3rd time i reinstall suse 10.1 but the problem is always there.

I noticed an update when I first installed suse. it had something to do with Halmount..?? or something like that which, from the notes said, updated the way the system mounts media. It was a recommended update. I'm no linux guru so stop me if I'm wrong, but would that possibly have something to do with this? I don't know much about mounting and such. Thanks for your help.

Last edited by tram; 05-30-2006 at 08:02 AM.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
SuSE 8.2 cannot see the floppy drive jer1ch0 Linux - Hardware 0 03-05-2005 02:22 PM
why is the computer always stopping the cd drive and the floppy from working? corn_jo Linux - General 5 03-02-2005 02:57 AM
floppy drive not working with Mandrake Linux 8.1 opensource Linux - General 3 01-03-2004 12:44 PM
SuSE on laptop with NO floppy or CD drive ming0 Linux - Newbie 1 07-16-2003 12:21 PM
slackware 8.1 floppy drive not working lto Slackware 7 07-20-2002 12:00 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > SUSE / openSUSE

All times are GMT -5. The time now is 07:09 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration