LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
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 09-05-2005, 12:11 PM   #1
trackrat
Member
 
Registered: Feb 2004
Location: Birmingham UK
Posts: 148

Rep: Reputation: 15
mount floppy manually


How do I mount a floppy drive manually as when I click on the floppy icon in the Home folder it says ERROR Konqueror- the process for the media protocol died unexpectedly.
I ran this command as root mount -t auto /dev/fd0 /mnt/floppy and it asked me for a file system so I tried FAT & FAT32 but no luck, did I get the command wrong to mount the floppy drive manually and also what can cause the Konqueror error.
I am using SuSe 9.3 Pro.
 
Old 09-05-2005, 02:31 PM   #2
jailbait
LQ Guru
 
Registered: Feb 2003
Location: Virginia, USA
Distribution: Debian 12
Posts: 8,336

Rep: Reputation: 548Reputation: 548Reputation: 548Reputation: 548Reputation: 548Reputation: 548
"I ran this command as root mount -t auto /dev/fd0 /mnt/floppy and it asked me for a file system so I tried FAT & FAT32 but no luck, did I get the command wrong to mount the floppy drive manually "

You may have the file system type wrong. Try:
mount -t vfat /dev/fd0 /mnt/floppy
mount -t ext2 /dev/fd0 /mnt/floppy

The floppy may not be formated. Try formating it as ext2 before you mount it:
mkfs -t ext2 /dev/fd0
mount -t ext2 /dev/fd0 /mnt/floppy


"and also what can cause the Konqueror error."

konqueror issued a mount for the floppy drive and the mount command failed.

-----------------------
Steve Stites
 
Old 09-05-2005, 05:30 PM   #3
trackrat
Member
 
Registered: Feb 2004
Location: Birmingham UK
Posts: 148

Original Poster
Rep: Reputation: 15
Ran the first command and this was the reply.

Password:
linux:~ # mount -t vfat /dev/fd0 /mnt/floppy
mount: mount point /mnt/floppy does not exist

And running the second command got the same answer.

Last edited by trackrat; 09-05-2005 at 05:34 PM.
 
Old 09-05-2005, 06:23 PM   #4
neboma
LQ Newbie
 
Registered: Mar 2005
Posts: 23

Rep: Reputation: 15
what happens if you replace "mnt" with "media" as the mount point (since that's where Suse automounts CD's, floppies, usb, etc.) ?
 
Old 09-05-2005, 06:49 PM   #5
kencaz
Senior Member
 
Registered: Mar 2005
Location: Las Vegas, NV
Distribution: Mandriva Slackware FreeBSD
Posts: 1,468

Rep: Reputation: 48
Quote:
Originally posted by trackrat
Ran the first command and this was the reply.

Password:
linux:~ # mount -t vfat /dev/fd0 /mnt/floppy
mount: mount point /mnt/floppy does not exist

And running the second command got the same answer.
You can mount a floopy to almost any directory, however, it must exist first. You could make the directory "/mnt/floppy" ,however, I would look into my fstab file to find the default mount point...

cat /etc/fstab

after /dev/fd0 it will tell you the default mount point, and you can make the needed adjustments to the mount command.

KC
 
Old 09-06-2005, 12:57 PM   #6
trackrat
Member
 
Registered: Feb 2004
Location: Birmingham UK
Posts: 148

Original Poster
Rep: Reputation: 15
trackrat@linux:~> su
Password:
linux:/home/trackrat # cat /etc/fstab
/dev/hda3 / reiserfs acl,user_xattr 1 1
/dev/hda1 /data1 auto noauto,user 0 0
/dev/hda2 swap swap pri=42 0 0
devpts /dev/pts devpts mode=0620,gid=5 0 0
proc /proc proc defaults 0 0
usbfs /proc/bus/usb usbfs noauto 0 0
sysfs /sys sysfs noauto 0 0
/dev/dvdrecorder /media/dvdrecorder subfs noauto,fs=cdfss,ro,procuid,nosuid,nodev,exec,iocharset=utf8 0 0
/dev/fd0 /media/floppy subfs noauto,fs=floppyfss,procuid,nodev,nosuid,sync 0 0
linux:/home/trackrat # mount -t vfat /dev/fd0 /media/floppy
mount: /dev/fd0 already mounted or /media/floppy busy
mount: according to mtab, /dev/fd0 is already mounted on /media/floppy
linux:/home/trackrat #

According to this it is allready mounted so why can I not use it.
When I click on the icon in the home folder I get the message that I origonally posted about (media died unexpectedly)
I have tried several distros and have never had a problem with the floppy loading so is there a way to sort it out in yast as when I click on Hardware there is no entry to go to a floppy drive.

Thanks to all for your help so far.
 
Old 09-06-2005, 03:35 PM   #7
jailbait
LQ Guru
 
Registered: Feb 2003
Location: Virginia, USA
Distribution: Debian 12
Posts: 8,336

Rep: Reputation: 548Reputation: 548Reputation: 548Reputation: 548Reputation: 548Reputation: 548
"/dev/dvdrecorder /media/dvdrecorder subfs noauto,fs=cdfss,ro,procuid,nosuid,nodev,exec,iocharset=utf8 0 0
/dev/fd0 /media/floppy subfs noauto,fs=floppyfss,procuid,nodev,nosuid,sync 0 0"

You have the dvdrecorder and floppy set to use subfs. subfs is an attempt to have the kernel automatically guess what you want to do with a mountable device. This leads to arguments between you and the kernel about what the device status should be. You will always lose these arguments. There are two possible solutions to the problem. You can mount the floppy as a subfs file system which tells the kernel to do things its way:
mount -t subfs /dev/fd0 /mnt/floppy

Or you can change the references to subfs in /etc/fstab to auto, reboot, and start mounting the floppy the way that you think best.

----------------------------
Steve Stites

Last edited by jailbait; 09-06-2005 at 03:43 PM.
 
Old 09-06-2005, 07:22 PM   #8
seldon2
LQ Newbie
 
Registered: Jul 2005
Posts: 9

Rep: Reputation: 0
i cant believe that this issue still has not been fixed in suse 9.3...

for those who have missed it, if you click the floppy icon in the 'media' section of konqueror, it will not work. the message given, 'media process died' comes up.

im not sure if the changes to fstab fix it, i think it is a problem in suse hal.

this has been reported for months now, and there still is no fix.
 
Old 09-06-2005, 07:31 PM   #9
kencaz
Senior Member
 
Registered: Mar 2005
Location: Las Vegas, NV
Distribution: Mandriva Slackware FreeBSD
Posts: 1,468

Rep: Reputation: 48
I agree with jailbait it's a subfs problem...

I personally hate all this automount junk... I disabled Supermount in MDK and mount all my drives manually... That is the Linux way and the automounting of drives has come about to attrcked windows users...

I really don't know why it is so difficult... Insert media, mount it, do what you need to do and unmount it... I don't know why it has become so complicated.

KC
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

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
mount vfat partition manually during RH 6.0 install linuxify Red Hat 2 07-28-2005 05:04 PM
mount vfat partition manually during RH 6.0 install linuxify Linux - Laptop and Netbook 0 07-28-2005 03:11 PM
mount USB devices, sda, manually/statically assign sda? Oxyacetylene Debian 3 12-20-2004 02:45 PM
Must mount CD manually - syntax, please? jhecht Linux - Software 11 07-22-2004 12:49 PM
cant mount floppy Username[SWE] Mandriva 5 05-25-2004 06:59 PM

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