Quote:
bash-2.05b# mount /cd
mount: can't find /cd in /etc/fstab or /etc/mtab
|
there is no command like this
the command is "mount /mnt/cdrom "(hope u have a fstab entry pointing towards /mnt/cdrom)
edit the fstab like this for user to mount cd(supposing ur device is /dev/hdc-if u have a link like /dev/cdrom, then use that, instead of /dev/hdc)
/dev/hdc /mnt/cdrom auto noauto,user,ro 0 0
----comments----
or if he want to mount it to /cd, much problems ahead
as cwwilson said "mount /dev/hdc /cd" u wil get error emssage, u need to type file system type, the command is "mount -t iso9660 /dev/hdc /cd"(after creating dir)
if he want to use the command "mount /cd" edit the fstab
like
"/dev/cdrom /cd auto noauto,user,ro 0 0"
i think at this point, he dont need any "/" before cd tht is "mount cd" will work
if u want to try command by rudra "#mount /dev/cdrom" u must need a simlink in dev dir pointing to cdrom device (here we assigned as /dev/hdc)in general slack will create a link in default(for security reasons) and use tht in fstab. here we are directly calling the cd device, i hope best choise is mount to the mount point
but if u have 2 cd devices u haev to manually create link and edit the fstab entry, slack wont show the 2nd cd device
(hope u have a link /dev/cdrom exists, if u want to know the device try "ls -al /dev/cdrom", or check the out put of "dmesg |more" or "dmesg |grep CD")