ubuntu:backups:backup_using_dd_and_ssh
Table of Contents
Ubuntu - Backups - Backup using dd and ssh
dd if=/dev/sda | ssh backups@192.168.1.123 "dd of=backup.img"
Run from remote computer
dd if=/dev/sda | gzip -1 - | ssh user@local dd of=image.gz
Run from local computer
ssh user@remote "dd if=/dev/sda | gzip -1 -" | dd of=image.gz
ubuntu/backups/backup_using_dd_and_ssh.txt · Last modified: 2022/07/06 08:28 by 91.230.225.92