
March 2nd, 2008, 11:39 AM
|
|
Contributing User
|
|
Join Date: Jul 2003
Location: Prague, Czech Republic
|
|
|
Automount FC6
I have a problem automounting a dvd disc.
A cd disc automounts OK.
Manual mount works OK for both of them.
The system had a CDROM device present before I replaced it with a DVD device.
The below test included a dvd and a cd, both of the iso9660 fstype.
Code:
[root@MT zby]# cat /proc/ide/hdc/model
ATAPI DVD A DH20A3H
[root@MT zby]# rpm -qa|grep -i autofs
autofs-5.0.1-0.rc3.33
[root@MT zby]#
[root@MT zby]# grep -i cd /etc/auto*
/etc/auto.misc:cd -fstype=iso9660,ro,nosuid,nodev :/dev/cdrom
[root@MT zby]#
## Now check if the present CD has been automounted:
[root@MT zby]# mount
/dev/hda3 on / type ext3 (rw)
....
/dev/hdc on /media/PovidkyAHumor type iso9660 (rw,noexec,nosuid,nodev,uid=500)
[root@MT zby]#
## I replaced the previous cd with a DVD. Did not automount. I try to mount it manualy just to be sure the mounting itself works.
[root@montana zby]# mount -t iso9660 /dev/cdrom /mnt/tmp/
mount: blokové zařízení/dev/cdrom je chráněno proti zápisu, připojuji pouze pro čtení
[root@MT zby]# mount | grep -i tmp
/dev/hdc on /mnt/tmp type iso9660 (ro)
[root@MT zby]#
Thank you for hints or a solution.
|