LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   mounting floppy (https://www.linuxquestions.org/questions/linux-newbie-8/mounting-floppy-55961/)

sadiboyz 04-20-2003 12:05 PM

mounting floppy
 
i am trying to mount floppy drive on my laptop. i am diong this
mount /dev/floppy /etc/fstab but it is giving me error which is
mount: special device /dev/floppy doesn't exist
please help me out how to mount the floppy drive
Thanks a lot
Ciao

trickykid 04-20-2003 12:10 PM

First create an empty directory in /mnt called floppy

mkdir /mnt/floppy

Then try:

mount /dev/fd0 /mnt/floppy

You can't mount your floppy to the /etc/fstab file.. and you might have to specify the filesystem type used on the floppy.. it would look something like this if that's the case:

mount -t msdos /dev/fd0 /mnt/floppy

That's if your floppy is formatted with a msdos filesystem. Not sure what to put there, man mount for the manual pages that explain this.

kurth 08-20-2004 08:05 AM

remounting from /dev/hdc to /dev/hda
 
Hi, I have a similar remounting question

BACKGROUND:
I recently installed SuSE 9.1 on my desktop dual booting with Windows. As part of the windows install, I had to have the dual boot disk as the Secondary IDE Master so I could move some files from the old Windows file. I ended up installing SuSE on my dual boot OS disk while it was mounted at /dev/hdc and now I'd like to physically move the dual OS hard disk to the Primary Master IDE connection (/dev/hda).

QUESTION:
Is it possible to:

Remount my hard disk from /dev/hdc to /dev/hda with the "mount" command,
shut down,
physically change the location of the hard disk to primary master,
and then boot up with the disk registering as /dev/hda?

I'd like to avoid messing things up and doing a complete re-install.
Thanks for your help!

PenguinPwrdBox 08-20-2004 08:11 AM

Change your boot loader to reflect the change, IE:
Code:

#Linux Partiton
image=/boot/bzImage
label=Linux
root=/dev/hda*
read-only

This is for lilo - I don't remember the GRUB commands........

kurth 08-23-2004 09:39 AM

Hi, syntax for grub was a bit different from LILO, but I was able to figure it out and resolve this issue. Thanks.


All times are GMT -5. The time now is 02:43 PM.