从远程备份到本地
ssh 10.10.10.1 dd if=/dev/sda | dd of=/opt/system.dd
gzip压缩备份
ssh 10.10.10.1 dd if=/dev/sda | gzip | dd of=/opt/system.dd
从本地备份到远程
dd if=/dev/sda | ssh 10.10.10.1 dd of=/root/system.dd
simple-local-avatars
domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init
action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /www/wwwroot/tangjiankang.top/wp-includes/functions.php on line 6114从远程备份到本地
ssh 10.10.10.1 dd if=/dev/sda | dd of=/opt/system.dd
gzip压缩备份
ssh 10.10.10.1 dd if=/dev/sda | gzip | dd of=/opt/system.dd
从本地备份到远程
dd if=/dev/sda | ssh 10.10.10.1 dd of=/root/system.dd