Mac 通过 SSH 控制 Linux
Posted 大大大大大桃子
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Mac 通过 SSH 控制 Linux相关的知识,希望对你有一定的参考价值。
Linux 配置
首先 Linux 安装 SSH :
sudo apt install openssh-server
修改 SSH 配置 :
vim /etc/ssh/sshd_config
添加以下代码 :
#PermitRootLogin without-password
PermitRootLogin yes
重启 SSH :
systemctl restart sshd
查看本地地址
ifconfig
Mac 远程访问
访问上面地址即可
ssh root@10.211.55.11
以上是关于Mac 通过 SSH 控制 Linux的主要内容,如果未能解决你的问题,请参考以下文章
在 mac 上通过 ssh 连接到 amazon aws linux 服务器