On Fri, Aug 11, 2006 at 03:02:23PM +1200, Matthew Whiting wrote: > [EMAIL PROTECTED]:~$ sudo mkdir /mnt/cdrom > [EMAIL PROTECTED]:~$ sudo mount -t iso9660 /dev/hdc /mnt/cdrom > mount: special device /dev/hdc does not exist
if you are using a 2.4.0 series kernel scsi emualation should be set up so you can access the dvd drive at /dev/sr0 or /dev/scd0. uname -r dmesg | grep scsi sudo mount -t iso9660 /dev/sr0 /mnt/cdrom If you have a 2.6.0 kernel you don't require emulation as the dvd is accessed directly at /dev/hda. --- keith.
