Linux/Backup: Difference between revisions

From Wiki
No edit summary
No edit summary
Line 32: Line 32:
* http://hardforum.com/archive/index.php/t-1711020.html
* http://hardforum.com/archive/index.php/t-1711020.html
* http://forums.veeam.com/viewtopic.php?p=51838
* http://forums.veeam.com/viewtopic.php?p=51838
* http://www.mattcutts.com/blog/backup-gmail-in-linux-with-getmail/ (Backup pop/imap account)

Revision as of 19:10, 19 November 2012

DD

  • gzip image ohne dd
gzip -c < /dev/hda1 > /tmp/partition_image.gz
  • dd
dd if=/dev/random bs=1M count=256 | gzip >./256-MB-random-data.bin
  • dd status
while /bin/true; do sleep 5; kill -USR1 `pidof dd`; done

oder 

watch -n N kill -USR1 `pidof dd` 

Links