Mac连接远程服务器(Linux)以及文件上传、下载命令
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
在windows上,用xshell+xftp就可以很方便的操作远程linux服务器了。
而这2个软件是没有mac版的,所以在macOS下,是怎样实现对远程linux服务器的操作的呢?
使用ssh连接远程主机
ssh username@192.168.100.100
使用scp命令实现上传下载
1、下载服务器 test.txt 到本地桌面
scp root@192.168.100.100:/root/test.txt /Users/mac/Desktop
2、上传本地桌面上的 test.txt 到服务器 root 目录下
scp /Users/mac/Desktop/test.txt root@123.207.170.40:/root/
3、下载服务器 root 文件夹
scp -r root@192.168.0.101:/root/ /Users/mac/Desktop/
4、上传当前本地目录下的 test 文件夹到服务器 root 目录下
scp -r test root@192.168.0.101:/root/
注:目标服务器要开启写入权限。
---------------------
作者:xuchg1
来源:CSDN
原文:https://blog.csdn.net/xcg132566/article/details/78797339 (内容有删改)
版权声明:本文为博主原创文章,转载请附上博文链接!
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献3条内容
所有评论(0)