ubuntu下sftp、scp、ssh、指定端口号登录实现文件上传下载

文章目录

  • sftp文件传输协议
    • 使用sftp默认的端口号进行登录,可以连接,但是并没有显示当前的端口号
    • 使用-P 端口号的方式进行登录
    • 下载文件夹
  • scp文件传输协议
    • 从服务器拉取数据到本地
    • 从本地上传数据到服务器
  • ssh远程登录

sftp文件传输协议

注意这些操作命令都是在本地输入的。

使用sftp默认的端口号进行登录,可以连接,但是并没有显示当前的端口号

sftp [email protected]
[email protected]'s password: 
Connected to 10.124.163.133.
sftp> 

使用-P 端口号的方式进行登录

sftp -P 22 [email protected]
[email protected]'s password: 
Connected to 10.124.163.133.
sftp> 

下载文件夹

sftp sftp_username@sftp_ip
sftp_username@sftp_ip's password: 
Connected to ip.
sftp> get -r dir
Fetching dir
Retrieving dir                                                                                                                                                                                                        100% 2762     2.7KB/s   00:00    
Desktop  Documents  Downloads  examples.desktop  Music  Pictures  Public dir Templates  Videos
下载文件去掉-r

上传文件 把本地文件传到服务器上
put-r 要上传的源文件路径 目标文件路径

scp文件传输协议

从服务器拉取数据到本地

scp -r [email protected]:/home/projects /projects/

从本地上传数据到服务器

scp /home/q/vslam [email protected]:/vslam

ssh远程登录

ssh  [email protected]

你可能感兴趣的:(Ubuntu)