Changeset 1485 in MondoRescue
- Timestamp:
- Jun 5, 2007, 11:45:29 PM (18 years ago)
- Location:
- branches/2.2.4
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.2.4/mindi/mindi
r1483 r1485 102 102 fi 103 103 104 # Now we can create what we ne dd104 # Now we can create what we need 105 105 MINDI_TMP=`mktemp -d $TMPDIR/mindi.XXXXXXXXXX` 106 106 mkdir -p $MINDI_TMP -
branches/2.2.4/mondo-doc/mindi.8
r978 r1485 163 163 .B mindi 164 164 bootable ISO image. 165 .SH CONFIGURATION FILE166 You may create a mindi configuration file under167 .B /etc/mindi168 called169 .B mindi.conf170 which overwrites default values by setting up the following variables:171 .TP172 .I TMPDIR173 .B (default /tmp): directory to create temporary files174 .br175 .TP176 .I EXTRA_SPACE177 .B (default 24576): increase if you run out of ramdisk space178 .br179 .TP180 .I IA64_BOOT_SIZE181 .B (default 8192): size of the ia64 boot disk182 .br183 .TP184 .I CACHE_LOC185 .B (default /var/cache/mindi): directory where boot/root files186 and iso are generated187 .br188 WARNING: This directory is erased before usage189 .br190 165 .SH "SEE ALSO" 191 166 mondoarchive(8), mondorestore(8). -
branches/2.2.4/mondo/src/common/libmondo-filelist.c
r1475 r1485 1751 1751 sprintf(exclude_paths, " %s %s %s %s %s %s . .. \ 1752 1752 " MNT_CDROM " " MNT_FLOPPY " /media \ 1753 /proc /sys /root/images/mondo MINDI_CACHE ", excp, call_program_and_get_last_line_of_output("locate /win386.swp 2> /dev/null"), call_program_and_get_last_line_of_output("locate /hiberfil.sys 2> /dev/null"), call_program_and_get_last_line_of_output("locate /pagefile.sys 2> /dev/null"), (tmpdir[0] == '/' && tmpdir[1] == '/') ? (tmpdir + 1) : tmpdir, (scratchdir[0] == '/' && scratchdir[1] == '/') ? (scratchdir + 1) : scratchdir);1753 /proc /sys /root/images/mondo " MINDI_CACHE, excp, call_program_and_get_last_line_of_output("locate /win386.swp 2> /dev/null"), call_program_and_get_last_line_of_output("locate /hiberfil.sys 2> /dev/null"), call_program_and_get_last_line_of_output("locate /pagefile.sys 2> /dev/null"), (tmpdir[0] == '/' && tmpdir[1] == '/') ? (tmpdir + 1) : tmpdir, (scratchdir[0] == '/' && scratchdir[1] == '/') ? (scratchdir + 1) : scratchdir); 1754 1754 1755 1755 log_msg(2, "Excluding paths = '%s'", exclude_paths);
Note:
See TracChangeset
for help on using the changeset viewer.