- Timestamp:
- Jan 9, 2007, 1:29:21 AM (18 years ago)
- Location:
- trunk
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/mindi/rootfs/sbin/init
r914 r1046 175 175 LogIt "the CD/hard disk/whatever to physical 1.44MB disks and" 3 176 176 LogIt "insert them, one after the other. Please see the manual." 3 177 LogIt "The images are in /images on the CD, or / root/images/mindi" 3177 LogIt "The images are in /images on the CD, or /var/cache/mindi" 3 178 178 LogIt "on your hard disk. Your archives are probably fine but" 3 179 179 LogIt "your tape streamer and/or CD-ROM drive are eccentric. :-)" 3 -
trunk/mondo-doc/mondorescue-howto.sgml
r979 r1046 488 488 <row> 489 489 <entry> 490 bash# cd / root/images/mindi490 bash# cd /var/cache/mindi 491 491 492 492 </entry> … … 588 588 <row> 589 589 <entry> 590 bash# cdrecord dev=0,0,0 speed=4 -eject -v /root/images/mindi/mindi.iso590 bash# cdrecord dev=0,0,0 speed=4 -eject -v /var/cache/mindi/mindi.iso 591 591 592 592 </entry> … … 1188 1188 Making 2880KB boot disk...........................mkfs.vfat 2.10 (22 Sep 2003) 1189 1189 ... 2880 KB boot disks were created OK Done. 1190 In the directory '/ root/images/mindi' you will find the images:-1190 In the directory '/var/cache/mindi' you will find the images:- 1191 1191 mindi-data-1.img mindi-data-2.img mindi-data-3.img mindi-data-4.img mindi-data-5.img mindi-root.1440.img 1192 1192 Would you like to create boot+data floppy disks now (y/n) ?n … … 1216 1216 <entry> 1217 1217 1218 bash# cd / root/images/mindi1218 bash# cd /var/cache/mindi 1219 1219 </entry> 1220 1220 </row> … … 2760 2760 </question> 2761 2761 <answer> 2762 <para>A: The images are in /root/images/mindi (even if they are2762 <para>A: The images are in /var/cache/mindi (even if they are 2763 2763 created by Mondo) and also in the 'images' directory on the first 2764 2764 CD of your backup set, if you have backed up to CD. You can copy … … 2777 2777 <row> 2778 2778 <entry> 2779 bash# dd if=/ root/images/mindi/mindi-boot.1722.img of=/dev/fd0u17222779 bash# dd if=/var/cache/mindi/mindi-boot.1722.img of=/dev/fd0u1722 2780 2780 </entry> 2781 2781 </row> … … 2792 2792 <row> 2793 2793 <entry> 2794 bash# dd if=/ root/images/mindi/mindi-data-N.img of=/dev/fd02794 bash# dd if=/var/cache/mindi/mindi-data-N.img of=/dev/fd0 2795 2795 </entry> 2796 2796 </row> -
trunk/mondo/src/common/libmondo-archive.c
r1043 r1046 2752 2752 if (does_file_exist("/var/cache/mindi/mondorescue.iso")) { 2753 2753 popup_and_OK 2754 ("Boot+data floppy creation failed. \nHowever, you may burn /var/cache/mindi/mondorescue.iso to a CD\nand boot from that instead if you wish.");2754 ("Boot+data floppy creation failed. However, FYI, you may burn /var/cache/mindi/mondorescue.iso to a CD and boot from that instead if you wish."); 2755 2755 res++; 2756 2756 } -
trunk/mondo/src/common/libmondo-filelist.c
r1043 r1046 1603 1603 tmp2 = call_program_and_get_last_line_of_output("locate /pagefile.sys 2> /dev/null"); 1604 1604 mr_asprintf(&exclude_paths, " %s %s %s %s %s %s . .. \ 1605 " MNT_CDROM " " MNT_FLOPPY " /media /cdrom /media/cdrecorder\1605 " MNT_CDROM " " MNT_FLOPPY " /media \ 1606 1606 /proc /sys /tmp /var/cache/mondo /var/cache/mindi", excp, tmp, tmp1, tmp2, (tmpdir[0] == '/' && tmpdir[1] == '/') ? (tmpdir + 1) : tmpdir, (scratchdir[0] == '/' && scratchdir[1] == '/') ? (scratchdir + 1) : scratchdir); 1607 1607 mr_free(tmp); -
trunk/mondo/src/common/libmondo-tools.c
r1043 r1046 880 880 #endif 881 881 882 if ((Lres = free_space_on_given_partition("/var/cache/mondo")) == -1) /* { 883 Lres = free_space_on_given_partition("/"); 884 } 885 */ 882 Lres = free_space_on_given_partition("/var/cache"); 886 883 log_it("Free space on given partition = %ld MB", Lres); 887 884 888 885 if (Lres < 50) { 889 fatal_error("Your /var/cache /mondopartition has <50MB free. Please adjust your partition table to something saner.");886 fatal_error("Your /var/cache partition has <50MB free. Please adjust your partition table to something saner."); 890 887 } 891 888 -
trunk/tools/qemu-vm.txt
r1043 r1046 85 85 # for FreeBSD 86 86 ln -sf /usr/local/bin/bash /bin/bash 87 88 # For Slackware 89 take on ftp pkg src + build 90 configure sudo : 91 bruno = NOPASSWD: /sbin/makepkg -
trunk/trac/trac.ini
r1043 r1046 44 44 webadmin.* = enabled 45 45 acct_mgr.web_ui.registrationmodule = enabled 46 acct_mgr.web_ui.loginmodule = enabled47 46 acct_mgr.htfile.htdigeststore = enabled 48 47 acct_mgr.api.accountmanager = enabled … … 50 49 acct_mgr.htfile.htpasswdstore = enabled 51 50 acct_mgr.htfile.abstractpasswordfilestore = enabled 51 trac.web.auth.LoginModule = disabled 52 acct_mgr.web_ui.LoginModule = enabled 52 53 53 54 [timeline] … … 62 63 63 64 [ticket] 64 default_version = 2.2. 065 default_version = 2.2.1 65 66 default_component = mondo 66 default_milestone = 2. 0.967 default_milestone = 2.2.1 67 68 default_severity = normal 68 69 default_priority = normal 70 -
trunk/website/mondorescue.org.conf
r794 r1046 3 3 <VirtualHost 10.3.252.23> 4 4 ServerName www.mondorescue.org 5 #ServerAlias mondorescue.org5 ServerAlias mondorescue.org 6 6 ServerAdmin webmaster@mondorescue.org 7 7 DocumentRoot /mondo/www/html/mondo … … 47 47 48 48 # You need something like this to authenticate users 49 <Location "/cgi-bin/trac.cgi/login">50 AuthType Basic51 AuthName "MondoRescue"52 AuthUserFile/etc/trac.htpasswd53 Require valid-user54 </Location>49 #<Location "/cgi-bin/trac.cgi/login"> 50 #AuthType Basic 51 #AuthName "MondoRescue" 52 #AuthUserFile /usr/local/etc/trac.htpasswd 53 #Require valid-user 54 #</Location> 55 55 </VirtualHost> 56 56 … … 78 78 79 79 # You need something like this to authenticate users 80 <Location "/login">81 AuthType Basic82 AuthName "MondoRescue"83 AuthUserFile/etc/trac.htpasswd84 Require valid-user85 </Location>80 #<Location "/login"> 81 #AuthType Basic 82 #AuthName "MondoRescue" 83 #AuthUserFile /usr/local/etc/trac.htpasswd 84 #Require valid-user 85 #</Location> 86 86 </VirtualHost> 87 87 … … 121 121 Errorlog /var/log/httpd/mondo.hpintelco.org/error_log 122 122 <Directory "/var/www/html"> 123 Options -Indexes MultiViews FollowSymLinks +Includes123 Options Indexes MultiViews FollowSymLinks +Includes 124 124 AllowOverride None 125 125 Order allow,deny
Note:
See TracChangeset
for help on using the changeset viewer.