(可选) VMWare Workstation 15 Pro
(系统)Ubuntu 16.04.5 LTS
如果你需要使用远程ssh工具使用系统的话
sudo apt-get install openssh-server # 安装openssh-server
sudo ps -e |grep ssh # 查看ssh服务是否启动
修改 ssh
配置文件:
vi /etc/ssh/sshd_config
将其中的 PermitRootLogin prohibit-password
注释掉, 然后新增 PermitRootLogin yes
。 最后重启一下ssh服务:
service ssh restart
sudo apt-get install vim
vim /etc/apt/sources.list
将配置文件更改为下面的内容:
deb http://mirrors.aliyun.com/ubuntu/ xenial main multiverse restricted universe
deb http://mirrors.aliyun.com/ubuntu/ xenial-backports main multiverse restricted universe
deb http://mirrors.aliyun.com/ubuntu/ xenial-proposed main multiverse restricted universe
deb http://mirrors.aliyun.com/ubuntu/ xenial-security main multiverse restricted universe
deb http://mirrors.aliyun.com/ubuntu/ xenial-updates main multiverse restricted universe
deb-src http://mirrors.aliyun.com/ubuntu/ xenial main multiverse restricted universe
deb-src http://mirrors.aliyun.com/ubuntu/ xenial-backports main multiverse restricted universe
deb-src http://mirrors.aliyun.com/ubuntu/ xenial-proposed main multiverse restricted universe
deb-src http://mirrors.aliyun.com/ubuntu/ xenial-security main multiverse restricted universe
deb-src http://mirrors.aliyun.com/ubuntu/ xenial-updates main multiverse restricted universe