VMware workstation安装ubuntu系统虚拟机遇到问题汇总

安装完之后想使用shell连接该虚拟机,使用ifconfig提示未安装net-tools

使用sudo apt-get install net-tools提示找不到该包

解决方案:

在文件/etc/apt/sources.list增加资源地址

deb http://archive.ubuntu.com/ubuntu trusty main universe restricted multiverse

再次安装  sudo apt-get install net-tools 

成功!

 

ubuntu默认安装的是vim-tiny,而我们需要使用vim-full

卸载vim-tiny

sudo apt-get remove vim-common

安装vim-full
sudo apt-get install vim

 

再尝试使用xshell连接,还是发现连接不上

此时返回虚拟机执行 ps -e|grep ssh

发现未找到服务

安装服务

sudo apt-get install openssh-server

再次查找 ps -e|grep ssh 发现找到服务,成功连接shell

 

 

你可能感兴趣的:(liunx相关)