You should also check to see if your cd is being recognized by your
system. I was getting a similar error message even though things were
properly configured in fstab. When I'd go to mount the cd I'd get the
same error mesage. All I had to do was specify the ide device on the
kernel command line by adding hdx = cdrom.
Since it says hdd, I'm assuming your cdrom is installed as the slave
device on the secondary ide port. If this is the case, then you can
fix things by adding an append command to your lilo config that
specifies your cdrom as being hdd. Try adding hdd = cdrom.
>> Dear Sir,
>> I am very new to Linux, can any one please help me?
>> I have this error message:
>> "mount: can't find /dev/hdd in /etc/mtab or /etc/fstab"
>> Please help.
>> Thank You.
>> Roy Chee.
>You have to edit the file /etc/fstab. There you have to add following
>line:
>/dev/hdd /cdrom iso9660
>ro,noauto,user,exec 0 0
>No you can mount your cdrom with:
>mount -t iso9660 /dev/hdd /cdrom
>P.S. The folder /cdrom has to exist.