
I have a CDRom with filenames in upper and lower case. The file names link in pdf In acroreader for Linux The following works straight from the command line only when I am in root mount /dev/hdb /media/cdrom0 -o check=r However I can't get it to work when I modify my fstab file /dev/hdb /media/cdrom0 udf,iso9660 user,noauto 0 0

Ron Dean wrote:
I have a CDRom with filenames in upper and lower case. The file names link in pdf In acroreader for Linux
The following works straight from the command line only when I am in root mount /dev/hdb /media/cdrom0 -o check=r
Add check=r to the options in /etc/fstab ? /dev/hdb /media/cdrom0 udf,iso9660 user,noauto,check=r 0 0

On Fri, 2006-01-27 at 01:13 +1300, zcat wrote:
Ron Dean wrote:
I have a CDRom with filenames in upper and lower case. The file names link in pdf In acroreader for Linux
The following works straight from the command line only when I am in root mount /dev/hdb /media/cdrom0 -o check=r
Add check=r to the options in /etc/fstab ?
/dev/hdb /media/cdrom0 udf,iso9660 user,noauto,check=r 0 0
I simply added this solution by cut and paste and it worked. I had tried adding check=r before but must of had my syntax wrong Thanks everybody for your help.

On Thu, Jan 26, 2006 at 10:16:45PM +1300, Ron Dean wrote:
I have a CDRom with filenames in upper and lower case. The file names link in pdf In acroreader for Linux
The following works straight from the command line only when I am in root mount /dev/hdb /media/cdrom0 -o check=r
However I can't get it to work when I modify my fstab file
/dev/hdb /media/cdrom0 udf,iso9660 user,noauto 0 0
If you have it in /etc/fstab with the user option, maybe get your user account to issue just $ mount /media/cdrom0 and not $ mount /dev/hdb /media/cdrom0 ? John

Ron Dean wrote:
I have a CDRom with filenames in upper and lower case. The file names link in pdf In acroreader for Linux
The following works straight from the command line only when I am in root mount /dev/hdb /media/cdrom0 -o check=r
However I can't get it to work when I modify my fstab file
/dev/hdb /media/cdrom0 udf,iso9660 user,noauto 0 0
"iso9660 user" - try replacing the space with a comma. Cheers, Warren.

/dev/hdb /media/cdrom0 udf,iso9660 user,noauto 0 0
"iso9660 user" - try replacing the space with a comma.
The space is required. There are 6 fields in the fstab file - the third field is the filesystem type (incidentally, I didn't know you could list multiple types there). The fourth field is the options for the mount point - in this case, let a user mount it, and don't mount it automatically.

Warren wrote:
Ron Dean wrote:
I have a CDRom with filenames in upper and lower case. The file names link in pdf In acroreader for Linux
The following works straight from the command line only when I am in root mount /dev/hdb /media/cdrom0 -o check=r
However I can't get it to work when I modify my fstab file
/dev/hdb /media/cdrom0 udf,iso9660 user,noauto 0 0
"iso9660 user" - try replacing the space with a comma.
Try not. 'udf,iso9660' is the filetype. Then you want some whitespace followed by the options 'user,noauto'. The space belongs there. if using '-o check=r' (relaxed case checking) makes the application work then what you need to do is add that to the options in fstab - 'user,noauto,check=r'

However I can't get it to work when I modify my fstab file
/dev/hdb /media/cdrom0 udf,iso9660 user,noauto 0 0
"iso9660 user" - try replacing the space with a comma.
Try not. 'udf,iso9660' is the filetype. Then you want some whitespace followed by the options 'user,noauto'. The space belongs there.
if using '-o check=r' (relaxed case checking) makes the application work then what you need to do is add that to the options in fstab - 'user,noauto,check=r'
Thanks Daniel and zcat ... my bad. I'm going to open my mouth now & remove my foot ...

Thanks Daniel and zcat ... my bad.
I'm going to open my mouth now & remove my foot ...
Don't feel that way :) btw, most of the various linux config files have manual pages (eg, man fstab). Some are easier to read than others, but they normally at least describe the format of the config file. In the case of fstab, you also need to read the man page which corresponds to the mount options for your filesystem, which seem to all be collapsed into the 'mount' man page these days.
participants (5)
-
Daniel Lawson
-
John R. McPherson
-
Ron Dean
-
Warren
-
zcat