您的当前位置:首页正文

ssh连接虚拟机

2024-11-29 来源:个人技术集锦

参考:https:///nyist_zxp/article/details/120300568

首先要确定你的虚拟机和主机能ping通

查看版本

cat /proc/version

linuxy@linuxy:~$ sudo apt update // 更新源
 
linuxy@linuxy:~$ sudo apt install net-tools // 安装net-tools,提供 ifconfig 命令
 
linuxy@linuxy:~$ sudo apt install openssh-server // 安装 openssh-server,用于 SSH 连接

linuxy@linuxy:~$ sudo systemctl enable ssh // 设置开机启动
 
linuxy@linuxy:~$ sudo systemctl start ssh // 开启服务

MobaXterm进行ssh连接

显示全文