Monitorare il progresso di un backup in BackuppPc: Difference between revisions

From RVM Wiki
Jump to navigation Jump to search
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 ..."
 
(No difference)

Latest revision as of 11:11, 15 February 2017

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