Quellcode durchsuchen

Adding FPSync and Rsync Examples

Found some good arguments for these commands and am including
examples in case I need to use them later.
master
Nate Bohman vor 5 Jahren
Ursprung
Commit
a545c3b958
2 geänderte Dateien mit 6 neuen und 0 gelöschten Zeilen
  1. +3
    -0
      fpsync_over_wan.sh
  2. +3
    -0
      rsync_options.sh

+ 3
- 0
fpsync_over_wan.sh Datei anzeigen

@@ -0,0 +1,3 @@
#!/usr/bin/env bash

time fpsync -n 32 -f 1000 -s 536870912 -o '--acls --archive --bwlimit=2048 --compress --compress-level=6 --fuzzy --hard-links --human-readable --noatime --numeric-ids --stats --xattrs' -t /var/cache/fpsync_tmp /path/to/source fqdn.tld:/path/to/dest

+ 3
- 0
rsync_options.sh Datei anzeigen

@@ -0,0 +1,3 @@
#!/usr/bin/env bash

rsync --acls --archive --bwlimit=2048 --compress --compress-level=6 --fuzzy --hard-links --human-readable --noatime --numeric-ids --stats --xattrs /path/to/source/ fqdn.tld:/path/to/dest/

Laden…
Abbrechen
Speichern