User Tools

Site Tools


old:linux:backup

scp copy von host zu host mit tar

ssh host1 "cd /path/to/files; tar -c ." | ssh host2 "cd /path/to/destination/; tar -x"

Backup mit tar auf einen anderen Host

tar zcvf - /path/to/files | ssh host "cat > /path/to/data.tar.gz"

Backup einer Disk/Partition

tar -cSp --numeric-owner --atime-preserve -f - /home/ | ( cd /mnt/neu/ && tar -xSpv --atime-preserve -f - )
old/linux/backup.txt · Last modified: 2023/01/11 20:29 by 127.0.0.1

Except where otherwise noted, content on this wiki is licensed under the following license: Public Domain
Public Domain Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki