xorrisofs: ExGrowisofs

 
 6.4 Let xorriso work underneath growisofs
 =========================================
 
 growisofs expects an ISO formatter program which understands options -C
 and -M. A variable is defined to override the hardcoded default name.
 
    $ export MKISOFS="xorrisofs"
 $ growisofs -Z /dev/dvd /some/files
 $ growisofs -M /dev/dvd /more/files
 
    If no "xorrisofs" is available on your system, then you will have to
 create a link pointing to the xorriso binary and tell growisofs to use
 it.  E.g.  by:
 
    $ ln -s $(which xorriso) "$HOME/xorrisofs"
 $ export MKISOFS="$HOME/xorrisofs"
 
    One may quit mkisofs emulation by argument "--" and make use of all
 xorriso commands.  growisofs dislikes options which start with "-o" but
 -outdev must be set to "-".  So use "outdev" instead:
 
    $ growisofs -Z /dev/dvd --for_backup -- \
 outdev - -update_r /my/files /files
 $ growisofs -M /dev/dvd --for_backup -- \
 outdev - -update_r /my/files /files
 Note that --for_backup is given in the mkisofs emulation.  To preserve
 the recorded extra data it must already be in effect, when the emulation
 loads the image.