LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 11-06-2006, 07:00 AM   #1
Misfit138
Member
 
Registered: Mar 2006
Location: Jersey
Distribution: Arch
Posts: 38

Rep: Reputation: 15
Very VERY slow floppy


I put a floppy in the drive, which has previously been formatted with fat32. I try to drag and drop the contents of a SATA RAID driver disk into the floppy. It starts churning away forever and ever, it is EXTREMELY SLOW. It will start by saying 32KB/s, but drops immediately to 16, 10, 8 then it says "stalled" every few seconds...can I fix this somehow? or is writing to fat32 floppies in Linux just slow?

here is my fstab floppy section


# fd: H1440
/dev/fd0 /mnt/floppy auto user,sync,exec,rw 0 0
 
Old 11-06-2006, 07:16 AM   #2
lurko
Member
 
Registered: Jun 2006
Location: Ontario, Canada
Distribution: Debian
Posts: 448

Rep: Reputation: 35
if it doesn't take more than a minute or two(to fill a disk), I'd say that's the price of doing business with a floppy disk.
 
Old 11-06-2006, 07:22 AM   #3
Misfit138
Member
 
Registered: Mar 2006
Location: Jersey
Distribution: Arch
Posts: 38

Original Poster
Rep: Reputation: 15
no, it took more like 18 minutes, and I have a very fast smp pc, 2 gigs of ram......any ideas?

Last edited by Misfit138; 11-07-2006 at 05:46 PM.
 
Old 11-06-2006, 09:08 AM   #4
matthewg42
Senior Member
 
Registered: Oct 2003
Location: UK
Distribution: Kubuntu 12.10 (using awesome wm though)
Posts: 3,530

Rep: Reputation: 65
Try removing the sync option in your fstab. Make sure you umount and wait for activity to cease before removing the disk.
 
Old 11-06-2006, 09:13 AM   #5
Ha1f
Member
 
Registered: Jun 2005
Location: University of Maryland
Distribution: FreeBSD
Posts: 268

Rep: Reputation: 30
could the disk have errors? try to do things with other floppy disks.
 
Old 11-06-2006, 09:23 AM   #6
matthewg42
Senior Member
 
Registered: Oct 2003
Location: UK
Distribution: Kubuntu 12.10 (using awesome wm though)
Posts: 3,530

Rep: Reputation: 65
Quote:
Originally Posted by Ha1f
could the disk have errors? try to do things with other floppy disks.
That's a good point. Maybe check the system log or dmesg to see if there are errors reported on /dev/fd0.
 
Old 11-06-2006, 12:45 PM   #7
Misfit138
Member
 
Registered: Mar 2006
Location: Jersey
Distribution: Arch
Posts: 38

Original Poster
Rep: Reputation: 15
thx for the replies!
i will try another floppy tonight (i actually have to buy some, as i have no more!)
if not, i will try async.
while we're on floppies, how can i format a floppy with fat32 or ext3 or any other fs?
 
Old 11-06-2006, 12:49 PM   #8
Misfit138
Member
 
Registered: Mar 2006
Location: Jersey
Distribution: Arch
Posts: 38

Original Poster
Rep: Reputation: 15
thx for the replies!
i will try another floppy tonight (i actually have to buy some, as i have no more!)
if not, i will try async.
while we're on floppies, how can i format a floppy with fat32 ? i found this command for ext3, would i just substotute 'vfat' for 'ext3'? what does the 1440 denote?


mkfs -t ext3 /dev/fd0 1440
 
Old 11-06-2006, 01:12 PM   #9
matthewg42
Senior Member
 
Registered: Oct 2003
Location: UK
Distribution: Kubuntu 12.10 (using awesome wm though)
Posts: 3,530

Rep: Reputation: 65
Quote:
Originally Posted by Misfit138
how can i format a floppy with fat32 ? i found this command for ext3, would i just substotute 'vfat' for 'ext3'? what does the 1440 denote?
Code:
mkfs -t ext3 /dev/fd0 1440
The syntax for mkfs is as follows (from the mkfs man page - type "man mkfs" to see it):
Code:
mkfs [ -V ] [ -t fstype ] [ fs-options ] filesys [ blocks ]
The parts in [square brackets] are optional. From this you can see that the 1440 is "blocks". Reading on, this is the number of blocks on the device to format. 1440 corresponds to ~1.4 MiB - the size of the floppy disk. You can probably omit this parameter and the program will use the whole device.

Another way to accomplish the same thing is to use the command:
Code:
mkfs.vfat /dev/fd0
 
Old 11-06-2006, 05:45 PM   #10
Misfit138
Member
 
Registered: Mar 2006
Location: Jersey
Distribution: Arch
Posts: 38

Original Poster
Rep: Reputation: 15
When I do mkfs.vfat /dev/fd0 I get an error

failed whilst writing to reserved sector

?? ??
 
Old 11-06-2006, 05:59 PM   #11
matthewg42
Senior Member
 
Registered: Oct 2003
Location: UK
Distribution: Kubuntu 12.10 (using awesome wm though)
Posts: 3,530

Rep: Reputation: 65
You need to run this as root / with sudo. Oh, and make sure the write tab window thing on the floppy is slid over to the covered position.
 
Old 11-06-2006, 06:30 PM   #12
louieb
Member
 
Registered: Jun 2006
Location: Texas
Distribution: Ubuntu 8.04
Posts: 94

Rep: Reputation: 17
Floppy drives are notorious for breaking down. They get dirty, kids stuff things in the slot. People spill coke on the floppy disk then wipe it off and put the disk in the drive. When I go out to check a computer I alway have an extra floppy drive with me.
It may be that it is time for a replacement.

Last edited by louieb; 11-06-2006 at 07:56 PM.
 
Old 11-06-2006, 06:49 PM   #13
matthewg42
Senior Member
 
Registered: Oct 2003
Location: UK
Distribution: Kubuntu 12.10 (using awesome wm though)
Posts: 3,530

Rep: Reputation: 65
Quote:
Originally Posted by louieb
Floppy drives a notorious for breaking down. They get dirty, kids stuff things in the slot. People spill coke on the floppy disk then wipe it off and put the disk in the drive. When I go out to check a computer I alway have an extra floppy drive with me.
It may be that it is time for a replacement.
Checking if the same disk is slow under another OS might be a good way to test if the hardware is flaky before splashing out on a new device.
 
Old 11-07-2006, 07:01 AM   #14
Misfit138
Member
 
Registered: Mar 2006
Location: Jersey
Distribution: Arch
Posts: 38

Original Poster
Rep: Reputation: 15
Strange, the floppy works fine under windows. I am able to format and copy files to the same disk, with the same drive without a problem.
When i go into Linux and drag and drop stuff into the floppy I get the LONG LONG process of slow writing and stalling....when I do:

cp /home/user/Desktop/folder/* /mnt/floppy

It churns away for a few minutes and spits back input/output errors for each file.

I am stumped
 
Old 11-07-2006, 07:07 AM   #15
matthewg42
Senior Member
 
Registered: Oct 2003
Location: UK
Distribution: Kubuntu 12.10 (using awesome wm though)
Posts: 3,530

Rep: Reputation: 65
Can you paste the errors here?
 
  


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 9.2 & SATA - Slow, Slow, Slow jess1975 SUSE / openSUSE 6 01-28-2007 12:17 PM
Floppy drive very slow with Mandriva 2006 jeanmm Mandriva 4 11-14-2005 12:36 AM
New Fedora Internet connection slow slow slow matrim Fedora 9 07-29-2005 01:39 PM
Debian Woody floppy install problems with ATAPI floppy jturnicate Linux - Newbie 0 02-17-2004 09:45 AM
slow to mount floppy satchfoot Linux - General 3 02-07-2004 10:30 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 09:12 AM.

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