New commands -projid, -get_projid, -get_projid_r, -set_projid, -set_projid_r, -find test -has_projid, -find actions get_projid, set_projid, get_projid_minmax

This commit is contained in:
2024-11-03 20:04:54 +01:00
parent 923bfa0be9
commit 32bfa95973
25 changed files with 1168 additions and 214 deletions

View File

@ -435,7 +435,19 @@ grew over the years.
*-lfa_flags*. Its command -lsattr lists 22 flags the same way as the
program lsattr does. They can be set by xorriso command -chattr and can
be enabled by -lfa_flags for restoring when their files get restored to
disk.
disk. *XFS-style project ids* are numbers which define the members of
file object groups, called projects. They can be set by programs
chattr(1) and xfs_quota(8) and reported by programs lsattr(1) and
xfs_quota(8). The files of a project can share quotas which limit their
usage of filesystem resources. This is possible in XFS and in specially
prepared and mounted ext4 filesystems. Project id 0 means that the file
is not member of any project.
'xorriso' records non-zero project ids of disk files if enabled by
command *-projid*. Command -get_projid lists the project ids of files.
They can be set by command -set_projid and get restored to disk if
enabled by -projid. Usually project id 0 is not set to restored disk
files, so that they may get the project id of their parent disk
directory.

File: xorriso.info, Node: Processing, Next: Dialog, Prev: Extras, Up: Top
@ -1022,6 +1034,40 @@ activate them only after image loading.
-lfa_flags off:read:restore:restore_su_auto:restore_only_known
-lfa_flags restore_mask=:restore_error=sorry:restore_single
Use "default:on" to get default settings with enabled processing.
-projid mode[:mode...]
Enable, disable, or influence processing of XFS-style project ids.
Mode "on" enables recording and restoring of project ids.
Mode "off" disables it.
Mode "restore_0" enables restoring of project id 0 when files get
extracted to disk. Default is "no_restore_0" which leaves the
decision about the project id to the local filesystem, if the file
has project id 0 in the ISO filesystem.
Mode "map+" defines mappings of project id intervals in the ISO to
project id intervals on disk when files get restored. The form is:
map+low_in_iso,high_in_iso=low_on_disk[,[high_on_disk]]
"low_in_iso" and "high_in_iso" define the number interval from
which the mapping happens at restore time. "low_on_disk" is the
mapping result of "low_in_iso". Project id numbers up to
"high_in_iso" get mapped to
low_on_disk + (project_id - low_in_iso)
If the resulting number is higher than "high_on_disk", then it gets
mapped to "high_on_disk". "low_on_disk" without following comma
means "low_on_disk,low_on_disk" which maps the whole "_in_iso"
interval to the single number "low_on_disk". "low_on_disk," with
no following number means "low_on_disk,4294967295".
Multiple "map+" modes may be given with one or more -projid
commands. E.g.:
-projid on:map+1,1=11,11:map+1000,1999=2000,
The first match in the list of mappings defines the mapping of a
given project id in the ISO.
Pseudo-mode "map_test=" can be used to learn the current mapping of
the given project number. It immediately reports the mapping
result on result channel and does not change the current -projid
settings. E.g.:
-projid map_test=1001
Mode "default" discards all defined mappings and sets -projid to
"off:no_restore_0".
-md5 "on"|"all"|"off"|"load_check_off"
Enable or disable processing of MD5 checksums for the overall
session and for each single data file. If enabled then images with
@ -1057,7 +1103,7 @@ activate them only after image loading.
Enable all extra features which help to produce or to restore
backups with highest fidelity of file properties. Currently this
is a shortcut for:
-hardlinks on -acl on -xattr any -md5 on
-hardlinks on -acl on -xattr any -md5 on -projid on
and possibly:
-lfa_flags default:on:import_only_settable
-lfa_flags restore_mask=aAcdDijmPsStTux
@ -1807,6 +1853,14 @@ whether they stem from the loaded image or were newly inserted.
or else a SORRY event will happen. Files below the given
directories will be skipped silently if their type is not suitable
for -chattr.
-set_projid number iso_rr_path [***]
Set the XFS-style project ids like programs xfs_quota(8) or
chattr(1) would do to disk files. The permissible number range is
0 to 4294967295. 0 means that the file does not belong to any
project.
-set_projid_r number iso_rr_path [***]
Like -projid but affecting also all files below the given
directories.
-alter_date type timestring iso_rr_path [***]
Alter the date entries of files in the ISO image. type may be one
of the following:
@ -1953,6 +2007,8 @@ File: xorriso.info, Node: CmdFind, Next: Filter, Prev: Manip, Up: Commands
-has_xattr :
Matches files which have xattr name-value pairs from user
namespace.
-has_any_xattr :
Matches files which have any xattr other than ACL.
-has_aaip :
Matches files which have ACL or any xattr.
-has_lfa_flags flag_letters :
@ -1973,8 +2029,9 @@ File: xorriso.info, Node: CmdFind, Next: Filter, Prev: Manip, Up: Commands
matches any file. E.g. look for files which have 'i' or 'a'
or both of them set:
-has_some_lfa_flags_of ia
-has_any_xattr :
Matches files which have any xattr other than ACL.
-has_projid number :
Matches files which bear the given XFS-style project id
number.
-has_md5 :
Matches data files which have MD5 checksums.
-has_hfs_crtp creator type :
@ -2172,11 +2229,21 @@ File: xorriso.info, Node: CmdFind, Next: Filter, Prev: Manip, Up: Commands
lsattrd
shows the Linux file attribute flags like command -lsattrd
does.
chattr
chattr mode
applies -chattr with the given mode. Other than command
-chattr this silently skips any file which are not -type "dir"
or "file".
E.g.: -exec chattr +sDu -
get_projid
shows the XFS-style project id number.
get_projid_minmax
shows at the end of the -find run the minimal and the maximal
XFS-style project id numbers among the files which were
matched by the find tests.
set_projid number
applies -set_projid with the given number. Number range is 0
to 4294967295.
E.g.: -exec set_projid 1001 -
get_md5
prints the MD5 sum, if recorded, together with file path.
check_md5
@ -4303,6 +4370,13 @@ File: xorriso.info, Node: Navigate, Next: Verify, Prev: Inquiry, Up: Command
Like -lsattr but listing the directory attributes if the
iso_rr_path leads to a directory, rather than the attributes of the
files in the directory.
-get_projid iso_rr_pattern [***]
Print the XFS-style project ids of the given file objects. On disk
this information can be inspected by programs lsattr(1) or
xfs_quota(8).
-get_projid_r iso_rr_pattern [***]
Like -get_projid but listing recursively the whole file trees
underneath of directories.
-du iso_rr_pattern [***]
Recursively list size of directories and files in the ISO image
which match one of the patterns. similar to shell command du -k.
@ -4322,9 +4396,10 @@ File: xorriso.info, Node: Navigate, Next: Verify, Prev: Inquiry, Up: Command
-findx accepts the same tests as -find, but only the following ones
work like described with -find:
-bad_outname, -decision, -disk_name, -disk_path, -has_acl,
-has_any_xattr, -has_lfa_flags, -has_some_lfa_flags_of, -has_xattr,
-lba_range, -maxdepth, -mindepth, -name, -or_use_pattern, -prune,
-size, -true, -type, -use_pattern, -wholename
-has_any_xattr, -has_lfa_flags, -has_some_lfa_flags_of,
-has_projid, -has_xattr, -lba_range, -maxdepth, -mindepth, -name,
-or_use_pattern, -prune, -size, -true, -type, -use_pattern,
-wholename
The others get defaulted to -false, because they are not applicable
to disk files.
Test -type accepts the same parameters as with -find. Additionally
@ -4392,9 +4467,17 @@ File: xorriso.info, Node: Navigate, Next: Verify, Prev: Inquiry, Up: Command
mode.
E.g. -exec list_extattr e -
lsattrd
prints the Linux file attribute flags like command -lsattrd
does. This shows non-settable flags, too, even if they are to
be ignored by the setting of command -lfa_flags.
prints to the result channel the Linux file attribute flags
like command -lsattrd does. This shows non-settable flags,
too, even if they are to be ignored by the setting of command
-lfa_flags.
get_projid
prints the XFS-style project id number to the result channel.
get_projid_minmax
prints at the end of the -findx run the minimal and the maximal
XFS-style project id numbers among the files which were matched by
the find tests.
-compare disk_path iso_rr_path
Compare attributes and eventual data file content of a fileobject
in the local filesystem with a file object in the ISO image. The
@ -5080,7 +5163,11 @@ File: xorriso.info, Node: Scripting, Next: Frontend, Prev: Emulation, Up: Co
-version
Print program name and version, component versions, license.
-list_extras code
Tell whether certain extra features were enabled at compile time.
Tell whether certain extra features were enabled at compile time
and the environment provided the necessary system interfaces.
Application of the enabled features might fail at run time because
the system does not provide the necessary interfaces or the
involved local filesystem does not provide the desired feature.
Code "all" lists all features and a headline. Other codes pick a
single feature. Code "codes" lists them. They share names with
related commands (see also there):
@ -5090,6 +5177,8 @@ File: xorriso.info, Node: Scripting, Next: Frontend, Prev: Emulation, Up: Co
EA.
"lfa_flags" tells whether xorriso has an adapter for local Linux
file attributes (see man 1 chattr).
"projid" tells whether xorriso has an adapter for local XFS-style
project ids.
"jigdo" tells whether production of Jigdo files is possible.
"zisofs" tells whether zisofs and built-in gzip filters are
enabled.
@ -5965,9 +6054,9 @@ Other programs which produce ISO 9660 images
mkisofs(8), genisoimage(1)
Other programs which burn sessions to optical media
growisofs(1), cdrecord(1), wodim(1), cdrskin(1)
ACL, xattr, Linux file attributes
ACL, xattr, Linux file attributes, project ids
getfacl(1), setfacl(1), getfattr(1), setfattr(1), lsattr(1),
chattr(1)
chattr(1), ext4(5), xfs_quota(8)
MD5 checksums
md5sum(1)
On FreeBSD some commands differ:
@ -6030,14 +6119,14 @@ File: xorriso.info, Node: CommandIdx, Next: ConceptIdx, Prev: Legal, Up: Top
[index]
* Menu:
* # starts a comment line: Scripting. (line 158)
* # starts a comment line: Scripting. (line 164)
* -abort_on controls abort on error: Exception. (line 28)
* -abstract_file sets abstract file name: SetWrite. (line 273)
* -acl controls handling of ACLs: Loading. (line 189)
* -add inserts one or more paths: Insert. (line 44)
* -add_plainly inserts one or more paths: Insert. (line 68)
* -alter_date sets timestamps in ISO image: Manip. (line 173)
* -alter_date_r sets timestamps in ISO image: Manip. (line 208)
* -alter_date sets timestamps in ISO image: Manip. (line 181)
* -alter_date_r sets timestamps in ISO image: Manip. (line 216)
* -append_partition adds arbitrary file after image end: Bootable.
(line 470)
* -application_id sets application id: SetWrite. (line 220)
@ -6046,12 +6135,12 @@ File: xorriso.info, Node: CommandIdx, Next: ConceptIdx, Prev: Legal, Up: Top
* -assert_volid rejects undesired images: Loading. (line 129)
* -assess_indev_features shows filesystem features: Inquiry. (line 61)
* -auto_charset learns character set from image: Loading. (line 141)
* -backslash_codes enables backslash conversion: Scripting. (line 73)
* -ban_stdio_write demands real drive: Loading. (line 460)
* -backslash_codes enables backslash conversion: Scripting. (line 79)
* -ban_stdio_write demands real drive: Loading. (line 494)
* -biblio_file sets biblio file name: SetWrite. (line 279)
* -blank erases media: Writing. (line 57)
* -boot_image controls bootability: Bootable. (line 75)
* -calm_drive reduces drive activity: Loading. (line 444)
* -calm_drive reduces drive activity: Loading. (line 478)
* -cd sets working directory in ISO: Navigate. (line 7)
* -cdx sets working directory on disk: Navigate. (line 15)
* -changes_pending overrides change status: Writing. (line 12)
@ -6074,9 +6163,9 @@ File: xorriso.info, Node: CommandIdx, Next: ConceptIdx, Prev: Legal, Up: Top
* -close_filter_list bans filter registration: Filter. (line 50)
* -commit writes pending ISO image: Writing. (line 27)
* -commit_eject writes and ejects: Writing. (line 53)
* -compare reports ISO/disk differences: Navigate. (line 182)
* -compare_l reports ISO/disk differences: Navigate. (line 198)
* -compare_r reports ISO/disk differences: Navigate. (line 194)
* -compare reports ISO/disk differences: Navigate. (line 198)
* -compare_l reports ISO/disk differences: Navigate. (line 214)
* -compare_r reports ISO/disk differences: Navigate. (line 210)
* -compliance controls standard compliance: SetWrite. (line 62)
* -concat copies ISO file content: Restore. (line 148)
* -copyright_file sets copyright file name: SetWrite. (line 268)
@ -6087,28 +6176,28 @@ File: xorriso.info, Node: CommandIdx, Next: ConceptIdx, Prev: Legal, Up: Top
* -cp_rx copies file trees to disk: Restore. (line 131)
* -cp_rx copies file trees to disk <1>: Restore. (line 139)
* -cut_out inserts piece of data file or device: Insert. (line 139)
* -data_cache_size adjusts read cache size: Loading. (line 476)
* -data_cache_size adjusts read cache size: Loading. (line 510)
* -dev acquires one drive for input and output: AqDrive. (line 12)
* -devices gets list of drives: Inquiry. (line 7)
* -device_links gets list of drives: Inquiry. (line 17)
* -dialog enables dialog mode: DialogCtl. (line 7)
* -disk_dev_ino fast incremental backup: Loading. (line 364)
* -disk_dev_ino fast incremental backup: Loading. (line 398)
* -disk_pattern controls pattern expansion: Insert. (line 34)
* -displacement compensate altered image start address: Loading.
(line 102)
* -drive_access control device file locking: AqDrive. (line 72)
* -drive_class controls drive accessability: AqDrive. (line 43)
* -du show directory size in ISO image: Navigate. (line 90)
* -du show directory size in ISO image: Navigate. (line 97)
* -dummy controls write simulation: SetWrite. (line 499)
* -dus show directory size in ISO image: Navigate. (line 93)
* -dusx show directory size on disk: Navigate. (line 100)
* -dux show directory size on disk: Navigate. (line 96)
* -dus show directory size in ISO image: Navigate. (line 100)
* -dusx show directory size on disk: Navigate. (line 107)
* -dux show directory size on disk: Navigate. (line 103)
* -dvd_obs set write block size and end alignment: SetWrite. (line 423)
* -early_stdio_test classifies stdio drives: Loading. (line 464)
* -ecma119_map names w/o Rock Ridge, Joliet: Loading. (line 337)
* -early_stdio_test classifies stdio drives: Loading. (line 498)
* -ecma119_map names w/o Rock Ridge, Joliet: Loading. (line 371)
* -eject ejects drive tray: Writing. (line 50)
* -end writes pending session and ends program: Scripting. (line 153)
* -errfile_log logs problematic disk files: Scripting. (line 118)
* -end writes pending session and ends program: Scripting. (line 159)
* -errfile_log logs problematic disk files: Scripting. (line 124)
* -error_behavior controls error workarounds: Exception. (line 93)
* -external_filter registers data filter: Filter. (line 20)
* -external_filter unregisters data filter: Filter. (line 47)
@ -6118,13 +6207,14 @@ File: xorriso.info, Node: CommandIdx, Next: ConceptIdx, Prev: Legal, Up: Top
* -extract_cut copies file piece to disk: Restore. (line 108)
* -extract_l copies files to disk: Restore. (line 104)
* -extract_single copies file to disk: Restore. (line 101)
* -file_name_limit curbs length of file names: Loading. (line 384)
* -file_name_limit curbs length of file names: Loading. (line 418)
* -file_size_limit limits data file size: SetInsert. (line 7)
* -find traverses and alters ISO tree: CmdFind. (line 7)
* -findx traverses disk tree: Navigate. (line 103)
* -findx traverses disk tree: Navigate. (line 110)
* -follow softlinks and mount points: SetInsert. (line 77)
* -format formats media: Writing. (line 87)
* -for_backup acl,xattr,hardlinks,md5,lfa_flags: Loading. (line 312)
* -for_backup acl,xattr,hardlinks,md5,lfa_flags,projid: Loading.
(line 346)
* -fs sets size of fifo: SetWrite. (line 502)
* -genisoimage_completion completion of genisoimage options: Emulation.
(line 166)
@ -6132,27 +6222,31 @@ File: xorriso.info, Node: CommandIdx, Next: ConceptIdx, Prev: Legal, Up: Top
* -getfacl_r shows ACL in ISO image: Navigate. (line 66)
* -getfattr shows xattr in ISO image: Navigate. (line 69)
* -getfattr_r shows xattr in ISO image: Navigate. (line 75)
* -get_projid shows XFS-style project ids in ISO image: Navigate.
(line 90)
* -get_projid_r shows XFS-style project ids in ISO image: Navigate.
(line 94)
* -gid sets global ownership: SetWrite. (line 316)
* -grow_blindly overrides next writeable address: AqDrive. (line 112)
* -hardlinks controls handling of hard links: Loading. (line 152)
* -help prints help text: Scripting. (line 19)
* -hfsplus enables production of HFS+ partition: SetWrite. (line 14)
* -hide excludes file names from directory trees: Manip. (line 211)
* -history brings text into readline history: Scripting. (line 44)
* -hide excludes file names from directory trees: Manip. (line 219)
* -history brings text into readline history: Scripting. (line 50)
* -indev acquires a drive for input: AqDrive. (line 23)
* -in_charset sets input character set: Loading. (line 136)
* -iso_nowtime fixed "now" time for ISO 9660 objects: Loading.
(line 358)
(line 392)
* -iso_rr_pattern controls pattern expansion: Manip. (line 10)
* -jigdo clears JTE or or adds parameter to JTE: Jigdo. (line 37)
* -joliet enables production of Joliet tree: SetWrite. (line 10)
* -joliet_map Joliet names: Loading. (line 350)
* -joliet_map Joliet names: Loading. (line 384)
* -launch_frontend starts frontend program at pipes: Frontend.
(line 141)
* -lfa_flags controls handling of Linux file attributes: Loading.
(line 207)
* -list_arg_sorting prints sorting order of -x: ArgSort. (line 26)
* -list_delimiter replaces '--': Scripting. (line 57)
* -list_delimiter replaces '--': Scripting. (line 63)
* -list_extras lists compile time extra features: Scripting. (line 24)
* -list_formats lists available formats: Writing. (line 128)
* -list_profiles lists supported media: Writing. (line 163)
@ -6176,7 +6270,7 @@ File: xorriso.info, Node: CommandIdx, Next: ConceptIdx, Prev: Legal, Up: Top
* -map_l inserts paths from disk file: Insert. (line 96)
* -map_single inserts path: Insert. (line 93)
* -mark sets synchronizing message: Frontend. (line 23)
* -md5 controls handling of MD5 sums: Loading. (line 281)
* -md5 controls handling of MD5 sums: Loading. (line 315)
* -mkdir creates ISO directory: Insert. (line 188)
* -modesty_on_drive keep drive buffer hungry: SetWrite. (line 442)
* -mount issues mount command for ISO session: Restore. (line 204)
@ -6204,13 +6298,15 @@ File: xorriso.info, Node: CommandIdx, Next: ConceptIdx, Prev: Legal, Up: Top
* -path_list inserts paths from disk file: Insert. (line 81)
* -pkt_output consolidates text output: Frontend. (line 7)
* -preparer_id sets preparer id: SetWrite. (line 284)
* -print prints result text line: Scripting. (line 104)
* -print_info prints message text line: Scripting. (line 106)
* -print_mark prints synchronizing text line: Scripting. (line 108)
* -print prints result text line: Scripting. (line 110)
* -print_info prints message text line: Scripting. (line 112)
* -print_mark prints synchronizing text line: Scripting. (line 114)
* -print_size predicts image size: Inquiry. (line 136)
* -prog sets program name: Frontend. (line 176)
* -prog_help prints help text: Frontend. (line 178)
* -prompt prompts for enter key: Scripting. (line 112)
* -projid controls handling of XFS-style project ids: Loading.
(line 281)
* -prompt prompts for enter key: Scripting. (line 118)
* -publisher sets publisher id: SetWrite. (line 215)
* -pvd_info shows image id strings: Inquiry. (line 158)
* -pwd tells working directory in ISO: Navigate. (line 19)
@ -6232,13 +6328,13 @@ File: xorriso.info, Node: CommandIdx, Next: ConceptIdx, Prev: Legal, Up: Top
* -rockridge disables production of Rock Ridge info: SetWrite.
(line 57)
* -rollback discards pending changes: Writing. (line 9)
* -rollback_end ends program without writing: Scripting. (line 156)
* -rom_toc_scan searches for sessions: Loading. (line 416)
* -rollback_end ends program without writing: Scripting. (line 162)
* -rom_toc_scan searches for sessions: Loading. (line 450)
* -rr_reloc_dir sets name of relocation directory: SetWrite. (line 173)
* -scdbackup_tag enables scdbackup checksum tag: Emulation. (line 197)
* -scsi_dev_family choose Linux device file type: AqDrive. (line 95)
* -scsi_log reports SCSI commands: Scripting. (line 145)
* -session_log logs written sessions: Scripting. (line 136)
* -scsi_log reports SCSI commands: Scripting. (line 151)
* -session_log logs written sessions: Scripting. (line 142)
* -session_string composes session info line: Inquiry. (line 124)
* -setfacl sets ACL in ISO image: Manip. (line 68)
* -setfacl_list sets ACL in ISO image: Manip. (line 94)
@ -6248,22 +6344,25 @@ File: xorriso.info, Node: CommandIdx, Next: ConceptIdx, Prev: Legal, Up: Top
* -setfattr_r sets xattr in ISO image: Manip. (line 118)
* -set_filter applies filter to file: Filter. (line 58)
* -set_filter_r applies filter to file tree: Filter. (line 84)
* -show_stream shows data source and filters: Navigate. (line 202)
* -show_stream_r shows data source and filters: Navigate. (line 220)
* -set_projid sets XFS-style project ids in ISO image: Manip. (line 173)
* -set_projid_r sets XFS-style project ids in ISO image: Manip.
(line 178)
* -show_stream shows data source and filters: Navigate. (line 218)
* -show_stream_r shows data source and filters: Navigate. (line 236)
* -sh_style_result makes results look more like shell: Scripting.
(line 63)
(line 69)
* -signal_handling controls handling of system signals: Exception.
(line 67)
* -sleep waits for a given time span: Scripting. (line 115)
* -sleep waits for a given time span: Scripting. (line 121)
* -speed set write speed: SetWrite. (line 394)
* -split_size enables large file splitting: SetInsert. (line 154)
* -status shows current settings: Scripting. (line 46)
* -status_history_max curbs -status history: Scripting. (line 54)
* -status shows current settings: Scripting. (line 52)
* -status_history_max curbs -status history: Scripting. (line 60)
* -stdio_sync controls stdio buffer: SetWrite. (line 492)
* -stream_recording controls defect management: SetWrite. (line 412)
* -system_id sets system id: SetWrite. (line 228)
* -tell_media_space reports free space: Inquiry. (line 148)
* -temp_mem_limit curbs memory consumption: Scripting. (line 98)
* -temp_mem_limit curbs memory consumption: Scripting. (line 104)
* -toc shows list of sessions: Inquiry. (line 27)
* -toc_info_type shows list of sessions: Inquiry. (line 49)
* -toc_of shows list of sessions: Inquiry. (line 41)
@ -6311,8 +6410,8 @@ File: xorriso.info, Node: ConceptIdx, Prev: CommandIdx, Up: Top
* Appended partitions, MBR: Bootable. (line 480)
* Automatic execution order, of arguments, -x: ArgSort. (line 16)
* Backslash Interpretation, _definition: Processing. (line 57)
* Backup, enable fast incremental, -disk_dev_ino: Loading. (line 364)
* Backup, enable features, -for_backup: Loading. (line 312)
* Backup, enable fast incremental, -disk_dev_ino: Loading. (line 398)
* Backup, enable features, -for_backup: Loading. (line 346)
* Backup, scdbackup checksum tag, -scdbackup: Emulation. (line 197)
* Blank media, _definition: Media. (line 34)
* Blank, format, Immed bit, -use_immed_bit: SetWrite. (line 480)
@ -6328,7 +6427,7 @@ File: xorriso.info, Node: ConceptIdx, Prev: CommandIdx, Up: Top
* Character Set, _definition: Charset. (line 6)
* CHRP partition, _definition: Bootable. (line 333)
* Closed media, _definition: Media. (line 49)
* Comment, #: Scripting. (line 158)
* Comment, #: Scripting. (line 164)
* Control, signal handling, -signal_handling: Exception. (line 67)
* Create, new ISO image, _definition: Methods. (line 7)
* Cylinder alignment, _definition: Bootable. (line 377)
@ -6339,7 +6438,7 @@ File: xorriso.info, Node: ConceptIdx, Prev: CommandIdx, Up: Top
* Delete, from ISO image, -rm_r: Manip. (line 26)
* Delete, ISO directory, -rmdir: Manip. (line 29)
* Device file locking, -drive_access: AqDrive. (line 72)
* Dialog, bring text into history, -history: Scripting. (line 44)
* Dialog, bring text into history, -history: Scripting. (line 50)
* Dialog, confirmation question, -reassure: DialogCtl. (line 29)
* Dialog, enable dialog mode, -dialog: DialogCtl. (line 7)
* Dialog, EOF resistant, -named_pipe_loop: Frontend. (line 119)
@ -6351,8 +6450,8 @@ File: xorriso.info, Node: ConceptIdx, Prev: CommandIdx, Up: Top
* Directory, delete, -rmdir: Manip. (line 29)
* disk_path, _definition: Insert. (line 6)
* Drive, accessability, -drive_class: AqDrive. (line 43)
* Drive, classify stdio, -early_stdio_test: Loading. (line 464)
* Drive, demand real MMC, -ban_stdio_write: Loading. (line 460)
* Drive, classify stdio, -early_stdio_test: Loading. (line 498)
* Drive, demand real MMC, -ban_stdio_write: Loading. (line 494)
* Drive, eject tray, -eject: Writing. (line 50)
* Drive, for input and output, -dev: AqDrive. (line 12)
* Drive, for input, -indev: AqDrive. (line 23)
@ -6360,8 +6459,8 @@ File: xorriso.info, Node: ConceptIdx, Prev: CommandIdx, Up: Top
* Drive, get drive list, -devices: Inquiry. (line 7)
* Drive, get drive list, -device_links: Inquiry. (line 17)
* Drive, list supported media, -list_profiles: Writing. (line 163)
* Drive, reduce activity, -calm_drive: Loading. (line 444)
* Drive, report SCSI commands, -scsi_log: Scripting. (line 145)
* Drive, reduce activity, -calm_drive: Loading. (line 478)
* Drive, report SCSI commands, -scsi_log: Scripting. (line 151)
* Drive, write and eject, -commit_eject: Writing. (line 53)
* Drive, _definition: Drives. (line 6)
* EA, _definition: Extras. (line 66)
@ -6378,16 +6477,16 @@ File: xorriso.info, Node: ConceptIdx, Prev: CommandIdx, Up: Top
* Examples: Examples. (line 6)
* extattr, _definition: Extras. (line 66)
* File content, copy, -concat: Restore. (line 148)
* File names, curb length, -file_name_limit: Loading. (line 384)
* File names, if Joliet is loaded: Loading. (line 350)
* File names, if neither Rock Ridge nor Joliet: Loading. (line 337)
* File names, curb length, -file_name_limit: Loading. (line 418)
* File names, if Joliet is loaded: Loading. (line 384)
* File names, if neither Rock Ridge nor Joliet: Loading. (line 371)
* Filesytem features, show, -assess_indev_features: Inquiry. (line 61)
* Filter, apply to file tree, -set_filter_r: Filter. (line 84)
* Filter, apply to file, -set_filter: Filter. (line 58)
* Filter, ban registration, -close_filter_list: Filter. (line 50)
* Filter, register, -external_filter: Filter. (line 20)
* Filter, show chain, -show_stream: Navigate. (line 202)
* Filter, show chains of tree, -show_stream_r: Navigate. (line 220)
* Filter, show chain, -show_stream: Navigate. (line 218)
* Filter, show chains of tree, -show_stream_r: Navigate. (line 236)
* Filter, unregister, -unregister_filter: Filter. (line 47)
* Filter, zisofs parameters, -zisofs: SetWrite. (line 319)
* Filter, _definition: Filter. (line 6)
@ -6404,9 +6503,9 @@ File: xorriso.info, Node: ConceptIdx, Prev: CommandIdx, Up: Top
* Hard links, control handling, -hardlinks: Loading. (line 152)
* HFS+ allocation block size: Bootable. (line 458)
* HFS+ serial number: Bootable. (line 455)
* hidden, set in ISO image, -hide: Manip. (line 211)
* hidden, set in ISO image, -hide: Manip. (line 219)
* HP-PA boot sector, production: Bootable. (line 430)
* Image reading, cache size, -data_cache_size: Loading. (line 476)
* Image reading, cache size, -data_cache_size: Loading. (line 510)
* Image, demand volume ID, -assert_volid: Loading. (line 129)
* Image, discard pending changes, -rollback: Writing. (line 9)
* Image, filesystem to load, -read_fs: Loading. (line 120)
@ -6458,7 +6557,7 @@ File: xorriso.info, Node: ConceptIdx, Prev: CommandIdx, Up: Top
* Jigdo Template Extraction, -jigdo: Jigdo. (line 37)
* Jigdo Template Extraction, _definition: Jigdo. (line 6)
* LBA, _definition: Drives. (line 17)
* libisofs, fixed "now" time: Loading. (line 358)
* libisofs, fixed "now" time: Loading. (line 392)
* Linux device type, -scsi_dev_family: AqDrive. (line 95)
* Linux directory attributes, show in ISO image, -lsattrd: Navigate.
(line 86)
@ -6474,7 +6573,7 @@ File: xorriso.info, Node: ConceptIdx, Prev: CommandIdx, Up: Top
* MBR bootable/active flag, enforce: Bootable. (line 388)
* MBR, set, -boot_image system_area=: Bootable. (line 227)
* MBR, _definition: Extras. (line 27)
* MD5, control handling, -md5: Loading. (line 281)
* MD5, control handling, -md5: Loading. (line 315)
* Media, erase, -blank: Writing. (line 57)
* Media, format, -format: Writing. (line 87)
* Media, list formats, -list_formats: Writing. (line 128)
@ -6484,10 +6583,10 @@ File: xorriso.info, Node: ConceptIdx, Prev: CommandIdx, Up: Top
* Modifying, _definition: Methods. (line 28)
* Multi-session media, _definition: Media. (line 7)
* Multi-session, _definition: Model. (line 18)
* Navigate, directory size in ISO image, -du: Navigate. (line 90)
* Navigate, directory size in ISO image, -dus: Navigate. (line 93)
* Navigate, directory size in on disk, -dusx: Navigate. (line 100)
* Navigate, directory size in on disk, -dux: Navigate. (line 96)
* Navigate, directory size in ISO image, -du: Navigate. (line 97)
* Navigate, directory size in ISO image, -dus: Navigate. (line 100)
* Navigate, directory size in on disk, -dusx: Navigate. (line 107)
* Navigate, directory size in on disk, -dux: Navigate. (line 103)
* Navigate, list disk files, -lsdlx: Navigate. (line 57)
* Navigate, list disk files, -lsdx: Navigate. (line 51)
* Navigate, list disk files, -lslx: Navigate. (line 54)
@ -6522,31 +6621,31 @@ File: xorriso.info, Node: ConceptIdx, Prev: CommandIdx, Up: Top
* Process, control exit value, -return_with: Exception. (line 39)
* Process, control verbosity, -report_about: Exception. (line 54)
* Process, disable startup files, -no_rc: Scripting. (line 7)
* Process, end program and write, -end: Scripting. (line 153)
* Process, end program, no writing, -rollback_end: Scripting. (line 156)
* Process, end program and write, -end: Scripting. (line 159)
* Process, end program, no writing, -rollback_end: Scripting. (line 162)
* Process, error workarounds, -error_behavior: Exception. (line 93)
* Process, log output channels to file, -logfile: Frontend. (line 19)
* Process, read command file, -options_from_file: Scripting. (line 12)
* Process, set synchronizing message, -mark: Frontend. (line 23)
* Program messages, perform operations, -msg_op: Frontend. (line 27)
* Program, backslash conversion, -backslash_codes: Scripting. (line 73)
* Program, curb memory, -temp_mem_limit: Scripting. (line 98)
* Program, end and write, -end: Scripting. (line 153)
* Program, end without writing, -rollback_end: Scripting. (line 156)
* Program, backslash conversion, -backslash_codes: Scripting. (line 79)
* Program, curb memory, -temp_mem_limit: Scripting. (line 104)
* Program, end and write, -end: Scripting. (line 159)
* Program, end without writing, -rollback_end: Scripting. (line 162)
* Program, list extra features, -list_extras: Scripting. (line 24)
* Program, print help text, -help: Scripting. (line 19)
* Program, print help text, -prog_help: Frontend. (line 178)
* Program, print message text line, -print_info: Scripting. (line 106)
* Program, print result text line, -print: Scripting. (line 104)
* Program, print message text line, -print_info: Scripting. (line 112)
* Program, print result text line, -print: Scripting. (line 110)
* Program, print synchronizing text line, -print_mark: Scripting.
(line 108)
(line 114)
* Program, print version, -version: Scripting. (line 22)
* Program, prompt for enter key, -prompt: Scripting. (line 112)
* Program, replace --, -list_delimiter: Scripting. (line 57)
* Program, prompt for enter key, -prompt: Scripting. (line 118)
* Program, replace --, -list_delimiter: Scripting. (line 63)
* Program, set name, -prog: Frontend. (line 176)
* Program, show current settings, -status: Scripting. (line 46)
* Program, status history, -status_history_max: Scripting. (line 54)
* Program, wait a time span, -sleep: Scripting. (line 115)
* Program, show current settings, -status: Scripting. (line 52)
* Program, status history, -status_history_max: Scripting. (line 60)
* Program, wait a time span, -sleep: Scripting. (line 121)
* Quoted input, _definition: Processing. (line 51)
* Read, set speed, -read_speed: Loading. (line 11)
* Recovery, retrieve blocks, -check_media: Verify. (line 21)
@ -6566,12 +6665,12 @@ File: xorriso.info, Node: ConceptIdx, Prev: CommandIdx, Up: Top
* Restore, copy files to disk, -extract_l: Restore. (line 104)
* Restore, enable ISO-to-disk, -osirrox: Restore. (line 25)
* Result layout, more shell-like, -sh_style_result: Scripting.
(line 63)
(line 69)
* Rock Ridge, _definition: Extras. (line 6)
* Session, altered start address, -displacement: Loading. (line 102)
* Session, info string, -session_string: Inquiry. (line 124)
* Session, issue mount command, -mount: Restore. (line 204)
* Session, log when written, -session_log: Scripting. (line 136)
* Session, log when written, -session_log: Scripting. (line 142)
* Session, mount command line, -mount_cmd: Inquiry. (line 97)
* Session, mount parameters, -mount_opts: Inquiry. (line 115)
* Session, select as input, -load: Loading. (line 54)
@ -6583,19 +6682,19 @@ File: xorriso.info, Node: ConceptIdx, Prev: CommandIdx, Up: Top
* System area, _definition: Bootable. (line 227)
* Table-of-content, choose info to show, -toc_info_type: Inquiry.
(line 49)
* Table-of-content, search sessions, -rom_toc_scan: Loading. (line 416)
* Table-of-content, search sessions, -rom_toc_scan: Loading. (line 450)
* Table-of-content, show parts of, -toc_of: Inquiry. (line 41)
* Table-of-content, show, -toc: Inquiry. (line 27)
* Timestamps, set in ISO image, -alter_date: Manip. (line 173)
* Timestamps, set in ISO image, -alter_date_r: Manip. (line 208)
* Tree, disk, traverse, -findx: Navigate. (line 103)
* Timestamps, set in ISO image, -alter_date: Manip. (line 181)
* Timestamps, set in ISO image, -alter_date_r: Manip. (line 216)
* Tree, disk, traverse, -findx: Navigate. (line 110)
* Tree, ISO, traverse and alter, -find: CmdFind. (line 7)
* Unsuitable media states, _definition: Media. (line 25)
* UTF-16, for Joliet paths, -compliance: SetWrite. (line 114)
* Verify, check blocks, -check_media: Verify. (line 21)
* Verify, compare ISO and disk file, -compare: Navigate. (line 182)
* Verify, compare ISO and disk tree, -compare_r: Navigate. (line 194)
* Verify, compare ISO and disk, -compare_l: Navigate. (line 198)
* Verify, compare ISO and disk file, -compare: Navigate. (line 198)
* Verify, compare ISO and disk tree, -compare_r: Navigate. (line 210)
* Verify, compare ISO and disk, -compare_l: Navigate. (line 214)
* Verify, file checksum, -check_md5: Verify. (line 184)
* Verify, file tree checksums, -check_md5_r: Verify. (line 198)
* Verify, preset -check_media, -check_media_defaults: Verify. (line 40)
@ -6611,8 +6710,8 @@ File: xorriso.info, Node: ConceptIdx, Prev: CommandIdx, Up: Top
* Write, enable Joliet, -joliet: SetWrite. (line 10)
* Write, fifo size, -fs: SetWrite. (line 502)
* Write, free space, -tell_media_space: Inquiry. (line 148)
* Write, log problematic disk files, -errfile_log: Scripting. (line 118)
* Write, log written sessions, -session_log: Scripting. (line 136)
* Write, log problematic disk files, -errfile_log: Scripting. (line 124)
* Write, log written sessions, -session_log: Scripting. (line 142)
* Write, padding image, -padding: SetWrite. (line 530)
* Write, pending ISO image, -commit: Writing. (line 27)
* Write, predict image size, -print_size: Inquiry. (line 136)
@ -6626,6 +6725,16 @@ File: xorriso.info, Node: ConceptIdx, Prev: CommandIdx, Up: Top
* xattr, show in ISO image, -getfattr: Navigate. (line 69)
* xattr, show in ISO image, -getfattr_r: Navigate. (line 75)
* xattr, _definition: Extras. (line 66)
* XFS-style project ids, control handling, -projid: Loading. (line 281)
* XFS-style project ids, set in ISO image, -set_projid: Manip.
(line 173)
* XFS-style project ids, set in ISO image, -set_projid_r: Manip.
(line 178)
* XFS-style project ids, show in ISO image, -get_projid: Navigate.
(line 90)
* XFS-style project ids, show in ISO image, -get_projid_r: Navigate.
(line 94)
* XFS-style project ids, _definition: Extras. (line 93)

@ -6637,54 +6746,54 @@ Node: Media6344
Node: Methods9265
Node: Drives11851
Node: Extras15803
Node: Processing21108
Node: Dialog24945
Node: Commands26634
Node: ArgSort28311
Node: AqDrive29805
Node: Loading36962
Node: Insert65841
Node: SetInsert78036
Node: Manip88272
Node: CmdFind100392
Node: Filter121714
Node: Writing126336
Node: SetWrite138830
Node: Bootable170262
Node: Jigdo201544
Node: Charset206547
Node: Exception209876
Node: DialogCtl216065
Node: Inquiry218667
Node: Navigate231362
Node: Verify242773
Node: Restore253922
Node: Emulation266129
Node: Scripting277705
Node: Frontend285599
Node: Examples295225
Node: ExDevices296403
Node: ExCreate297064
Node: ExDialog298364
Node: ExGrowing299635
Node: ExModifying300444
Node: ExBootable300954
Node: ExCharset301509
Node: ExPseudo302405
Node: ExCdrecord303332
Node: ExMkisofs303652
Node: ExGrowisofs305549
Node: ExException306702
Node: ExTime307160
Node: ExIncBackup307618
Node: ExRestore311644
Node: ExRecovery312590
Node: Files313162
Node: Environ314496
Node: Seealso315244
Node: Bugreport316008
Node: Legal316599
Node: CommandIdx317611
Node: ConceptIdx336226
Node: Processing21905
Node: Dialog25742
Node: Commands27431
Node: ArgSort29108
Node: AqDrive30602
Node: Loading37759
Node: Insert68512
Node: SetInsert80707
Node: Manip90943
Node: CmdFind103439
Node: Filter125299
Node: Writing129921
Node: SetWrite142415
Node: Bootable173847
Node: Jigdo205129
Node: Charset210132
Node: Exception213461
Node: DialogCtl219650
Node: Inquiry222252
Node: Navigate234947
Node: Verify247000
Node: Restore258149
Node: Emulation270356
Node: Scripting281932
Node: Frontend290187
Node: Examples299813
Node: ExDevices300991
Node: ExCreate301652
Node: ExDialog302952
Node: ExGrowing304223
Node: ExModifying305032
Node: ExBootable305542
Node: ExCharset306097
Node: ExPseudo306993
Node: ExCdrecord307920
Node: ExMkisofs308240
Node: ExGrowisofs310137
Node: ExException311290
Node: ExTime311748
Node: ExIncBackup312206
Node: ExRestore316232
Node: ExRecovery317178
Node: Files317750
Node: Environ319084
Node: Seealso319832
Node: Bugreport320632
Node: Legal321223
Node: CommandIdx322235
Node: ConceptIdx341541

End Tag Table