一、Ubuntu安装:
为什么用Ubuntu,作为服务器初学者开发,如果真的要买苹果系统电脑性价比不高,所以在window系统中安装Linux虚拟机是不二之选。为什么用Ubuntu不多说了,开始安装吧。
以window 10 为例:
1)点击控制面板->搜索"开发者设置"->设置开发者模式
2)点击控制面板->搜索“启用或关闭windows功能”->打勾适用于Linux的windows子系统
3)打开windos商店->搜索“linux”->出现结果多为Linux虚拟机->安装Ubuntu18.04版本
简单说明:依据评分笔者第一次下载了第一个版本,结果一切配置成功,开启时出现死循环,找了很多原因,最后换了Ubuntu版本解决了。
表示很无语,所以依个人情况下载,笔者在这里提供错误经验。
4)首次启动
第一次启动会慢,请等待一会,就会出现输入username和password,一定要注意密码输入是不显示的,所以输入密码一定要慢、
慢、慢。笔者第一次输入按错了忘记密码,结果只能重新安装..........
5)更新下载源
因为原始下载源是国外的,下载东西比较慢,所以更新国内下载源会变快不少。
#备份指令
sudo cp /etc/apt/sources.list /etc/apt/sources.list.bak
#添加源指令
sudo vim /etc/apt/sources.list
#在打开的文件中添加如下阿里源(i=编辑操作,esc=退出编辑,:wq=保存并推出 前面有个“:”号)
deb http://mirrors.aliyun.com/ubuntu/ bionic main restricted universe multiverse deb http://mirrors.aliyun.com/ubuntu/ bionic-security main restricted universe multiverse deb http://mirrors.aliyun.com/ubuntu/ bionic-updates main restricted universe multiverse deb http://mirrors.aliyun.com/ubuntu/ bionic-proposed main restricted universe multiverse deb http://mirrors.aliyun.com/ubuntu/ bionic-backports main restricted universe multiverse deb-src http://mirrors.aliyun.com/ubuntu/ bionic main restricted universe multiverse deb-src http://mirrors.aliyun.com/ubuntu/ bionic-security main restricted universe multiverse deb-src http://mirrors.aliyun.com/ubuntu/ bionic-updates main restricted universe multiverse deb-src http://mirrors.aliyun.com/ubuntu/ bionic-proposed main restricted universe multiverse deb-src http://mirrors.aliyun.com/ubuntu/ bionic-backports main restricted universe multiverse
如图所示:
#更新源
sudo apt-get update sudo apt-get upgrade
6)去除每次密码输入
#打开特定文件指令
sudo visudo
变为如下:之后点击ctrl+s保存,ctrl+x退出。以防万一重新进入看一下有没有成功修改。
#检测是否成功 不用再次输入密码表示成功
sudo ls