rsync ssh备份文件
时间: 2023-08-19 18:06:28 浏览: 124
shsh备份
在使用rsync进行ssh备份文件时,可以通过以下命令实现:
rsync -e ssh <source_directory> <username>@<remote_host>:<destination_directory>
其中,<source_directory>是要备份的本地目录,<username>是远程主机的用户名,<remote_host>是远程主机的IP地址或主机名,<destination_directory>是备份文件存储的目标目录。通过指定-e选项为ssh协议,可以确保使用ssh进行远程登录和数据传输。
阅读全文