Blame view

Documentation/filesystems/isofs.txt 2.46 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
3
4
5
6
7
8
9
10
11
  Mount options that are the same as for msdos and vfat partitions.
  
    gid=nnn	All files in the partition will be in group nnn.
    uid=nnn	All files in the partition will be owned by user id nnn.
    umask=nnn	The permission mask (see umask(1)) for the partition.
  
  Mount options that are the same as vfat partitions. These are only useful
  when using discs encoded using Microsoft's Joliet extensions.
    iocharset=name Character set to use for converting from Unicode to
  		ASCII.  Joliet filenames are stored in Unicode format, but
  		Unix for the most part doesn't know how to deal with Unicode.
4de151d8c   Alexey Dobriyan   It's UTF-8
12
  		There is also an option of doing UTF-8 translations with the
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
13
  		utf8 option.
4de151d8c   Alexey Dobriyan   It's UTF-8
14
    utf8          Encode Unicode names in UTF-8 format. Default is no.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
15
16
17
18
19
20
21
22
23
24
25
  
  Mount options unique to the isofs filesystem.
    block=512     Set the block size for the disk to 512 bytes
    block=1024    Set the block size for the disk to 1024 bytes
    block=2048    Set the block size for the disk to 2048 bytes
    check=relaxed Matches filenames with different cases
    check=strict  Matches only filenames with the exact same case
    cruft         Try to handle badly formatted CDs.
    map=off       Do not map non-Rock Ridge filenames to lower case
    map=normal    Map non-Rock Ridge filenames to lower case
    map=acorn     As map=normal but also apply Acorn extensions if present
52b680c81   Jan Kara   isofs: let mode a...
26
27
28
29
30
31
32
    mode=xxx      Sets the permissions on files to xxx unless Rock Ridge
  		extensions set the permissions otherwise
    dmode=xxx     Sets the permissions on directories to xxx unless Rock Ridge
  		extensions set the permissions otherwise
    overriderockperm Set permissions on files and directories according to
  		'mode' and 'dmode' even though Rock Ridge extensions are
  		present.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
33
34
    nojoliet      Ignore Joliet extensions if they are present.
    norock        Ignore Rock Ridge extensions if they are present.
9769f4eb3   Jeremy White   [PATCH] isofs: sh...
35
36
37
38
39
    hide		Completely strip hidden files from the file system.
    showassoc	Show files marked with the 'associated' bit
    unhide	Deprecated; showing hidden files is now default;
  		If given, it is a synonym for 'showassoc' which will
  		recreate previous unhide behavior
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
40
41
42
43
    session=x     Select number of session on multisession CD
    sbsector=xxx  Session begins from sector xxx
  
  Recommended documents about ISO 9660 standard are located at:
0ea6e6112   Justin P. Mattock   Documentation: up...
44
  http://www.y-adagio.com/
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
45
46
47
48
  ftp://ftp.ecma.ch/ecma-st/Ecma-119.pdf
  Quoting from the PDF "This 2nd Edition of Standard ECMA-119 is technically 
  identical with ISO 9660.", so it is a valid and gratis substitute of the
  official ISO specification.