惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

IT之家
IT之家
J
Java Code Geeks
小众软件
小众软件
Jina AI
Jina AI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Hugging Face - Blog
Hugging Face - Blog
Stack Overflow Blog
Stack Overflow Blog
Blog — PlanetScale
Blog — PlanetScale
C
Check Point Blog
人人都是产品经理
人人都是产品经理
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园 - Franky
Apple Machine Learning Research
Apple Machine Learning Research
G
Google Developers Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
H
Hackread – Cybersecurity News, Data Breaches, AI and More
The GitHub Blog
The GitHub Blog
腾讯CDC
T
The Blog of Author Tim Ferriss
大猫的无限游戏
大猫的无限游戏
量子位
M
MIT News - Artificial intelligence
Last Week in AI
Last Week in AI
L
LangChain Blog

噜啦 - ssh

SSH SCP使用方法 - 噜啦 Centos 修改SSH端口为其他端口 - 噜啦 Centos 修改SSH端口为其他端口 - 噜啦
SSH SCP使用方法 - 噜啦
博主: 噜啦 · 2019-07-17 · via 噜啦 - ssh
  • 博主:
  • 发布时间:
  • 1865 次浏览
  • 256字数
  • 分类: Linux笔记本
  1. 首页
  2. 正文  

远程登录SSH

ssh -p 端口 用户名@IP地址

p为小写

SCP 传输文件

将远程主机/root文件夹复制到本地/demo文件夹

scp -P 端口 -r 用户名@IP地址:/root /demo

将本地/demo文件夹复制到远程主机/root文件夹

scp -P 端口 -r /demo 用户名@IP地址:/root

P为大写
传输文件不需要-r参数

最后修改:2019 年 07 月 17 日

© 允许规范转载

赞赏作者

  • 支付宝
  • 微信

如果觉得我的文章对你有用,请随意赞赏

SSH SCP使用方法

 •