linux免密scp传输
时间: 2023-09-10 07:11:20 浏览: 121
linux scp传输不用密码
4星 · 用户满意度95%
在Linux下使用scp命令传输文件是一种非常方便的方式,但是每次传输都需要输入密码,比较麻烦。为了避免频繁输入密码,可以使用免密传输的方式。
以下是实现步骤:
1. 在本地生成公私钥对
```
ssh-keygen -t rsa
```
2. 将公钥传输到远程服务器
```
ssh-copy-id -i ~/.ssh/id_rsa.pub user@remote_host
```
3. 免密码传输文件
```
scp local_file user@remote_host:/remote_folder/
```
这样就可以实现 Linux 免密传输文件了。
阅读全文