Changeset 3280 in MondoRescue for branches


Ignore:
Timestamp:
Apr 30, 2014, 6:45:43 PM (10 years ago)
Author:
Bruno Cornec
Message:
  • Fix a compilation bug
  • Update mondoarchive man page for the new netfs syntax (normal URI)
Location:
branches/3.2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/3.2/mondo-doc/mondoarchive.8

    r3248 r3280  
    121121Use files residing on a remote share as backup media.
    122122.I mount
    123 is the remote mount-point, e.g. 'nfs://192.168.1.3:/home/nfs'
     123is the remote mount-point, e.g. 'nfs://192.168.1.3/home/nfs'
    124124for my file server. If not mounted, mondoarchive will do it for you. So nice ;-)
    125125If your NFS server only accept write from a backup user, you may specify it with the syntax:
    126 .B nfs://user@machine:/mount/path
     126.B nfs://user@machine/mount/path
    127127and mondoarchive will try to do its best to support it.
    128128Other 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' and
     129mount, with the same syntax e.g. 'sshfs://user@192.168.1.3/home/nfs' and
    130130smbfs (aka cifs) for SaMBa or Windows based filesystem mount.
    131131
     
    493493Backup to an NFS mount:
    494494.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"
    496496
    497497Verify existing NFS backup:-
    498498.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"
    500500
    501501.BI USB:
  • branches/3.2/mondo/src/common/libmondo-archive.c

    r3278 r3280  
    685685        mr_asprintf(bootldr_ver, "%s", call_program_and_get_last_line_of_output("grub --version"));
    686686        if (strcmp(bootldr_ver,"") ==0) {
    687             mf_free(bootldr_ver);
     687            mr_free(bootldr_ver);
    688688            mr_asprintf(bootldr_ver, "%s", call_program_and_get_last_line_of_output("grub2-install --version"));
    689689        }
Note: See TracChangeset for help on using the changeset viewer.