一 在window上安装虚拟机,然后在虚拟机上安装ubuntu,发现一篇比较好的博客,参照着安装成功。
参考博客:https://blog.csdn.net/stpeace/article/details/78598333
二 安装成功后,由于要使用secureCRT连接虚拟机,所以需要知道虚拟机的ip。
1. 查询ip
1) 使用ifconfig -a命令,报错command “ifconfig” not found,提示安装net-tools;
2) 使用命令:sudo apt install net-tools,又开始报错:unable to locate package;
解决办法:更新一下 apt-get,执行命令:sudo apt-get update;
然后在执行命令:sudo apt install net-tools,执行成功。
3)再次使用命令:ifconfig -a,就可以查询出来ip了
2. 使用secureCRT连接虚拟机时,输入ip及用户名后登陆失败
解决办法:
1)首先确认ubuntu安装openssh-server服务,执行命令:service ssh status
2)发现没安装openssh-server服务,使用命令安装:sudo apt-get install openssh-server openssh-client
3)安装完成后确认ssh是否在监听22端口,执行命令:netstat -nat|grep 22
4)最后用CRT连接:输入服务器ip和用户名连接,然后会提示输入密码即可连接