Monitorare il progresso di un backup in BackuppPc

From RVM Wiki
Revision as of 11:11, 15 February 2017 by Gabriele.vivinetto (talk | contribs) (Created page with "Per monitorare l'avanzamento di un backup in corso in Backuppc: *From the Backuppc server you can check which files backuppc is using at the moment with: watch "lsof -n -u ...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Per monitorare l'avanzamento di un backup in corso in Backuppc:

  • From the Backuppc server you can check which files backuppc is using at the moment with:
watch "lsof -n -u backuppc | egrep ' (REG|DIR) ' | egrep -v '( (mem|txt|cwd|rtd) |/LOG)' | awk '{print $9}'"
  • You can also check the running log with:
/usr/share/backuppc/bin/BackupPC_zcat/var/lib/backuppc/pc/desktop2/XferLOG.z
  • On the client side you can use:
watch "lsof -n | grep rsync | egrep ' (REG|DIR) ' | egrep -v '( (mem|txt|cwd|rtd) |/LOG)' | awk '{print $9}'"

Riferimenti