stupid_idiot
Group: Members
Posts: 344
Joined: Oct. 2006 |
|
Posted: Aug. 05 2007,10:19 |
|
Generating an ISO file (for backing up misc files onto CD): First, you need to move all the files/directories you want to backup into one directory. You can name this directory anything you want - the directory name does not in any way enter into the generated ISO file.
Let's say the directory is called directory. To make the ISO:
Code Sample | mkisofs -R --hide-rr directory > yourfilename.iso |
"-R" enables the Rock Ridge extension (http://en.wikipedia.org/wiki/Rock_Ridge). "--hide-rr" hides the folder containing Rock Ridge information (a cosmetic feature). And lastly, "> yourfilename.iso" outputs the data to a filename of your choice.
- Additionally, you may want to use the "-J" flag in some cases, like so:
Code Sample | mkisofs -R --hide-rr -J directory > yourfilename.iso |
"-J" enables Microsoft's Joliet extension (http://en.wikipedia.org/wiki/Joliet_(file_system)). It is useful if you have files with non-Roman characters (e.g. Arabic, Chinese, Japanese, Russian etc) in the filename.
|