LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - General
User Name
Password
Linux - General This Linux forum is for general Linux questions and discussion.
If it is Linux Related and doesn't seem to fit in any other forum then this is the place.

Notices


Reply
  Search this Thread
Old 02-08-2002, 10:27 PM   #16
jfshadow
Member
 
Registered: Feb 2002
Location: Amarillo, Texas
Distribution: Slackware 9.1 (desktop) / WinXP w/VMware linux dev/Tawie Server Linux (TSL) 2.0 (servers)/ LFS (dev)
Posts: 47

Rep: Reputation: 15

Got it !!!

Had to pass the kernel a special parameter for the ThinkPad floppy at the lilo boot prompt:

linux floppy=thinkpad

Now, I'm going to see if adding this line to lilo.conf will work too.

[edit: Nope it didn't work.]

Hope this helps somebody...everyone's help is appreciated.

Last edited by jfshadow; 02-08-2002 at 10:30 PM.
 
Old 02-09-2002, 11:12 PM   #17
linuxcool
LQ Addict
 
Registered: Jun 2001
Posts: 1,183

Rep: Reputation: 47
jfshadow, did you put that in an append line? Like this:

append="floppy=thinkpad"

You can also add that to an existing append. Like this:

append="hdc=ide-scsi floppy=thinkpad"
 
Old 02-10-2002, 04:22 PM   #18
landonmkelsey
Member
 
Registered: Jul 2001
Location: Texas
Distribution: Fedora 16
Posts: 323

Rep: Reputation: 37
Lightbulb always start with sanity check (I do)

(1) try mdir a:
or mformat a:

should work from basic RH 7.2 install

(2) kde->system->disk management-> select mount floppy
(3) kde->system->file manager->enter /mnt/floppy in the file slot
 
Old 02-11-2002, 11:48 AM   #19
jfshadow
Member
 
Registered: Feb 2002
Location: Amarillo, Texas
Distribution: Slackware 9.1 (desktop) / WinXP w/VMware linux dev/Tawie Server Linux (TSL) 2.0 (servers)/ LFS (dev)
Posts: 47

Rep: Reputation: 15
linuxcool, yes, I did try the append line but it didn't work. Does it matter where in linux.conf it appears?
 
Old 02-11-2002, 04:37 PM   #20
linuxcool
LQ Addict
 
Registered: Jun 2001
Posts: 1,183

Rep: Reputation: 47
I have always seen the append line associated with a particular linux image. Example:

image=/boot/vmlinuz
label=linux
root=/dev/hda6
append="floppy=thinkpad"
read-only
image=/boot/vmlinuz-2.2.14
label=linux_old
root=/dev/hda6
append="quiet hdc=ide-scsi floppy=thinkpad"
read-only

Running the linux image will use the "floppy=thinkpad" parameter. The linux_old image will use the "quiet hdc=ide-scsi floppy=thinkpad" parameters.

Don't forget to run /sbin/lilo after making any changes to the lilo.conf file.
 
Old 02-11-2002, 11:53 PM   #21
DavidPhillips
LQ Guru
 
Registered: Jun 2001
Location: South Alabama
Distribution: Fedora / RedHat / SuSE
Posts: 7,163

Rep: Reputation: 58
There is also a kernel option that will make your floppy into a /dev/hdxx drive
 
Old 02-13-2002, 12:04 PM   #22
jfshadow
Member
 
Registered: Feb 2002
Location: Amarillo, Texas
Distribution: Slackware 9.1 (desktop) / WinXP w/VMware linux dev/Tawie Server Linux (TSL) 2.0 (servers)/ LFS (dev)
Posts: 47

Rep: Reputation: 15
Hello Again:

I did fail to run /sbin/lilo after adding the append line to /etc/lilo.conf of my ThinkPad 360. It works great now, thanks!

Now I have another problem. I installed the same distribution of Linux on my wife's ThinkPad 755 CX and the problem mounting the floppy also occurred. However, this cannot be resolved with the aforementioned solution "linux floppy=thinkpad" or the append line in lilo.conf.

The only differences between her machine and mine are:

It is newer
It has a windows partition also
In lilo.conf there is an extra section to boot "other", or windows

The layout of lilo.conf is exactly the same otherwise.

I was able, though, to successfully create an entry in fstab for the windows partition allowing us to access windows files. At least we can copy from floppy to windows and then read them from windows until I figure out what's up with her stubborn machine.

Is this fun or what?!!

Last edited by jfshadow; 02-14-2002 at 12:23 PM.
 
Old 02-13-2002, 08:32 PM   #23
linuxcool
LQ Addict
 
Registered: Jun 2001
Posts: 1,183

Rep: Reputation: 47
You're welcome.
 
Old 02-13-2002, 11:28 PM   #24
Malicious
Member
 
Registered: Jan 2002
Location: Galveston Island
Distribution: suse, redhat
Posts: 208

Rep: Reputation: 30
The thing to remember about mounting floppies is that the filesystem type in the mount command must match the file system on the floppy. If the floppy was created using Windows, use -t msdos in the mount command. If you have created another filesystem type using mkfs, use that in the mount command. If it is a windows diskette, you can also us the mtools package which contains a few dos like commands to read and write dos floppies. mtools has mdir, mcopy, mformat commands that use the same syntax as dos; mdir a:, mcopy a:*.* ., etc..
 
Old 02-14-2002, 12:21 PM   #25
jfshadow
Member
 
Registered: Feb 2002
Location: Amarillo, Texas
Distribution: Slackware 9.1 (desktop) / WinXP w/VMware linux dev/Tawie Server Linux (TSL) 2.0 (servers)/ LFS (dev)
Posts: 47

Rep: Reputation: 15
Actually, I was using the same diskette for both machines. It mounts on mine with the fstab type set to auto, but it won't on my wifes. I did try to manually mount it on my wife's with the following commands:

mount -t vfat /dev/fd0 /floppy
mount -t msdos /dev/fd0 /floppy
mount -t ext2 /dev/fd0 /floppy
mount -t auto /dev/fd0 /floppy

None of them worked. I also tried to pass the kernel the following parameter at the lilo boot prompt:

linux floppy=thinkpad

which worked on mine but not on hers. And as I mentioned the only difference between her machine and mine is that it has windows and a section in lilo to reflect the windows partition boot (other than the model of thinkpad: 755cx vs. 360cse).

Fishy huh?
 
  


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 On
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
mount:/dev/fd0 is not a valid block device yat Linux - General 2 11-26-2010 11:45 AM
mount: /dev/fd0 is not a valid block device natsudarshan Linux - Newbie 5 09-23-2004 03:13 PM
/dev/fd0 gone! I can't mount floppy! robbow52 Debian 7 08-06-2004 04:35 PM
Floppy at /dev/fd0 won't mount Borg Swarm Linux - Hardware 4 01-20-2004 06:48 PM
mount /dev/fd0 is not a valid block device jolly_good2000 Linux - Hardware 12 07-31-2003 06:27 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - General

All times are GMT -5. The time now is 10:59 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