chief_officer,
A few things, your CD/DVD is a block device like any other, its accessed the same way.
You need an entry in /etc/fstab like
Code: Select all
/dev/cdrom /mnt/dvd iso9660,udf noauto,ro,users 0 0
You should find that /dev/cdrom is a symbolic link to /dev/hdc like this
Code: Select all
ls -l /dev/cdrom
lrwxrwxrwx 1 root root 3 Jun 10 09:48 /dev/cdrom -> h
You will need to
if it does not exist.
With that right, you can put a data CD/DVD in the drive and as any user, do
to make the content of the media available at /mnt/dvd. The other information the mount requires is read from /etc/fstab.
will also work.
You need kernel support (module or built in) for iso9660 and udf filesystesms.
There is one exception to the above - Audio CDs. They do not have a filesystem and cannot be mounted. CD players use raw device access to control the drive to play the CD. You need to be in the cdrom group. Video DVDs are played this way too. They do have filesystems that match the data on the disk but dvd players do raw device access to play the film, so such DVDs need not be mounted either.