白乐天

道阻且长,行则将至。

ssh服务实现文件传输

介绍

ssh 是一种网络协议,用于加密方式远程登录到其他计算机。它提供了一种安全的方式来访问远程服务器,传输数据,以及运行远程命令。

配置ssh服务

虚拟机安装openssh-server

1
sudo apt install openssh-server

启动ssh服务

1
2
3
4
systemctl enable ssh.service

sudo systemctl start ssh // 手动启动ssh服务
sudo systemctl enable ssh // 配置服务在系统引导时启动

查看ssh服务状态

1
systemctl status ssh

停止ssh服务

1
2
sudo systemctl stop ssh // 手动停止
sudo systemctl disable ssh // 防止服务在系统启动时自动运行

验证连接

1
ssh username@192.168.1.100

传输文件

将文件从主机传输到虚拟机:

1
scp /path/to/local/file** username@192.168.1.100:/path/to/remote/directory

将文件从虚拟机传输到主机:

1
scp username@192.168.1.100:/path/to/remote/file /path/to/local/directory

如果要传输文件夹,加上-r选项