< Day Day Up > |
Recipe 16.16. Creating a Bootable System Restore DVD with Mondo Rescue16.16.1 ProblemYou would like to put your system backup on a single DVD, instead of several CDs. 16.16.2 SolutionRun Mondo Rescue from the command line, instead of using the graphical interface, and create an .iso. Then burn the .iso to DVD. In addition to the Mondo Rescue components listed in the "Discussion" section of Recipe Recipe 16.14, you'll need dvd+rw-tools and cdrtools. The first command creates an .iso, and the second command copies it to the DVD: # mondoarchive -OVmF -5 -S /tmp/scratch -T /tmp/mondo -E "/home /shared /var/www" \ -i -d /tmp/iso # growisofs -dvd-compat -Z /dev/scd0=/tmp/iso 16.16.3 DiscussionThis task can also be performed from the Mondo graphical interface. In the opening screen, select "Backup to Hard Disk." Using the command line gives you greater control; for example, you can turn off the prompt to create boot floppies and disable ejecting the drive tray. This is what the various mondoarchive command flags mean:
16.16.4 See Also
|
< Day Day Up > |