LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Software (https://www.linuxquestions.org/questions/linux-software-2/)
-   -   Needing help with mounting cdrom and floppy (https://www.linuxquestions.org/questions/linux-software-2/needing-help-with-mounting-cdrom-and-floppy-4270/)

voitel 07-13-2001 06:24 PM

Needing help with mounting cdrom and floppy
 
I just have installed the linux mandrake 7.2 I don't know why, but I can not read or write to floppy or read from the cdrom. I think that the autoloader does something wrong. Need help

Voitel

trickykid 07-13-2001 06:36 PM

can you manually mount the cdrom or floppy..
mount /dev/cdrom /mnt/cdrom or
mount /dev/fd0 /mnt/floppy

man mount for more details. does it give any errors when trying to mount or read from the devices?

voitel 07-13-2001 07:39 PM

i anderstand that, but how I can turn off automaunt and basically "erasy" info about cdrom and floppy drives?

Voitel

voitel 07-13-2001 07:45 PM

by the way -- system gives me input/output error message.

trickykid 07-13-2001 08:43 PM

check out and edit your /etc/fstab file. that has info about your drives you can mount.... etc.

linuxcool 07-13-2001 09:40 PM

I believe that mandrake has supermount. Supermount has been causing a lot of problems for people. I think you can rid of it by editing your fstab file and by disabling it by running the command supermount -i disable. There's no guarantee that this will work.

Oh, about editing your fstab file. Let's say your floppy and cdrom entries look something like this:

/mnt/floppy /mnt/floppy supermount fs=vfat,dev=/dev/fd0 0 0
/mnt/cdrom /mnt/cdrom supermount fs=iso9660,dev=/dev/cdrom 0 0

Change it to this:

/dev/fd0 /mnt/floppy vfat noauto,user,rw 0 0
/dev/cdrom /mnt/cdrom iso9660 noauto,user,ro 0 0

It might be necessary to change the /dev/cdrom entry to the actual device if the symbolic link /dev/cdrom doesn't point to your cdrom.

When you want to mount a floppy or cdrom, just use the mount command. Like this mount /mnt/floppy or mount /mnt/cdrom . Don't forget to umount before you remove the disks.

voitel 07-13-2001 10:03 PM

Thanks a lot. I think it will help. I booted into command line (run level 3) and tried to access devices from there. Nothing good happened. I could not read or write to a device. The error was "input/output error". I hope that you advice will help.

Voitel


All times are GMT -5. The time now is 10:13 AM.