- Timestamp:
- Apr 30, 2014, 6:45:43 PM (11 years ago)
- Location:
- branches/3.2
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.2/mondo-doc/mondoarchive.8
r3248 r3280 121 121 Use files residing on a remote share as backup media. 122 122 .I mount 123 is the remote mount-point, e.g. 'nfs://192.168.1.3 :/home/nfs'123 is the remote mount-point, e.g. 'nfs://192.168.1.3/home/nfs' 124 124 for my file server. If not mounted, mondoarchive will do it for you. So nice ;-) 125 125 If your NFS server only accept write from a backup user, you may specify it with the syntax: 126 .B nfs://user@machine :/mount/path126 .B nfs://user@machine/mount/path 127 127 and mondoarchive will try to do its best to support it. 128 128 Other protocols are available such as sshfs for fuse SSH based filesystem 129 mount, with the same syntax e.g. 'sshfs://user@192.168.1.3 :/home/nfs' and129 mount, with the same syntax e.g. 'sshfs://user@192.168.1.3/home/nfs' and 130 130 smbfs (aka cifs) for SaMBa or Windows based filesystem mount. 131 131 … … 493 493 Backup to an NFS mount: 494 494 .br 495 .I "mondoarchive -On nfs://192.168.1.2 :/home/nfs -d /Monday -E /mnt/nfs"495 .I "mondoarchive -On nfs://192.168.1.2/home/nfs -d /Monday -E /mnt/nfs" 496 496 497 497 Verify existing NFS backup:- 498 498 .br 499 .I "mondoarchive -Vn nfs://192.168.1.2 :/home/nfs -d /Monday"499 .I "mondoarchive -Vn nfs://192.168.1.2/home/nfs -d /Monday" 500 500 501 501 .BI USB: -
branches/3.2/mondo/src/common/libmondo-archive.c
r3278 r3280 685 685 mr_asprintf(bootldr_ver, "%s", call_program_and_get_last_line_of_output("grub --version")); 686 686 if (strcmp(bootldr_ver,"") ==0) { 687 m f_free(bootldr_ver);687 mr_free(bootldr_ver); 688 688 mr_asprintf(bootldr_ver, "%s", call_program_and_get_last_line_of_output("grub2-install --version")); 689 689 }
Note:
See TracChangeset
for help on using the changeset viewer.