共计 553 个字符,预计需要花费 2 分钟才能阅读完成。
1. 首先要确认 ip 地址,使用 ifconfig 或者 ip addr 查看 IP 地址(一般网卡名是 eth0)
2. 如果没有 eth0 或者 ipv4 的地址的话,需要开启网卡
1. 确保 vmware 左上角–虚拟机–可移动设备–网络设备–设置中切换网络连接方式 NAT 或者桥接模式
2. 编辑 /etc/network/interfaces 文件
vim /etc/network/interfaces
3. 使用 vim 命令修改这个文件 eth0 为 dhcp 模式 (我设置静态 IP 老失败,还是动态分配吧)
4. 重启网卡
/etc/init.d/networking restart
ifconfig eth0 down
ifconfig eth0 up
3. 开启 SSH,首先打开配置文件
vim /etc/ssh/sshd_config
4. 需要找到 PasswordAuthentication 这一行,按 ”i” 进入输入模式,去掉 PasswordAuthentication 前面的 #号,如果后面是 ”no” 则修改为 ”yes”
5.wp 保存后,输入 service ssh start 开启 ssh,
service ssh start
update-rc.d ssh enable # 设置 ssh 开机自启动
update-rc.d ssh disabled # 关闭自启动
6. 之后用 Xshell 连接 linux 就不用教了吧~~~
正文完