参考:Linux 远程连接之 SSH 新手指南 - 知乎 (zhihu.com)
(ubuntu下一般默认都安装了)
file /etc/ssh/ssh_config
有回复则表示安装了,否则会回复“No such file or directory”
file /etc/ssh/sshd_config
有回复则表示安装了,否则会回复“No such file or directory”
// 安装客户端
sudo dnf install openssh-clients
// 安装服务器
sudo dnf install openssh-server
sudo systemctl is-enabled ssh
sudo systemctl is-enabled sshd
(如果没有开启的话)
sudo systemctl restart ssh
sudo systemctl restart sshd
(计算机用户名为sz,ip地址为10.33.23.93,拷贝到位置/home/share文件夹下)
scp 1.txt sz@10.33.23.93:/home/share
(计算机用户名为sz,ip地址为10.33.23.93,拷贝/home/share文件夹下的1.txt到当前目录下)
scp sz@10.33.23.93:/home/share/1.txt .