On Tue, 9 Sep 1997, Tao Lu wrote:
> By the way, the cd -rom problem has been fixed by enter /dev/hdd. But, I > still do not know how to access cd - rom. What is the command ? (I try > some unix command, would not work) cd / mkdir cdrom ; create a mountpoint if it does not yet exist mount -t iso9660 /dev/hdd /cdrom ; mount the cdrom cd cdrom ; you'll find the contents here ls -l umount /cdrom ; unmount before you eject the cd Better still, you can edit /etc/fstab and add an appropriate line to make life a little easier. Just look at the lines that are already there to get an idea of what you should add. 'man 5 fstab' is your friend btw. In the options field add `user', so you can mount the device as mortal user and `noauto' so linux doesn't try to mount a possibly empty cdrom tray at boot time. When you have done this, `mount /dcrom` will mount the cdrom. `cat /etc/mtab` shows what is mounted now, just like `mount` btw. Joost -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .