ubuntu18.4 server安装并更换下载源操作

本人采用ubuntu网站的ubuntu-18.04.4-live-server-amd64.iso进行安装,安装平台为vmware的虚拟机,server版安装要求比较简单,按照流程提示下一步即可。
虚拟机安装完成后,建议通过外部的ssh软件连接srver,否则后续更换下载源的操操作里面复制数据较多,手敲比较复杂,或是可以通过ftp操作将文件上传至server亦可。
server版使用ssh流程

sudo apt-get install net-tools  //看ip信息 ,可通过ifconfig查看server的ip信息
sudo apt-get install openssh-sever //安装ssh程序 

在阿里云查找到ubuntu18.4下载源对应的配置信息
https://developer.aliyun.com/mirror/ubuntu
以下为18.4的国内下载源


deb http://mirrors.aliyun.com/ubuntu/ bionic main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic main restricted universe multiverse 
deb http://mirrors.aliyun.com/ubuntu/ bionic-security main restricted universe multiverse 
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-security main restricted universe multiverse 
deb http://mirrors.aliyun.com/ubuntu/ bionic-updates main restricted universe multiverse 
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-updates main restricted universe multiverse 
deb http://mirrors.aliyun.com/ubuntu/ bionic-proposed main restricted universe multiverse 
deb-src 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-backports main restricted universe multiverse 

更换/etc/apt/sources.list文件
可通过ftp上传替换,但是PC上需安装ftp软件,或是直接在/etc/apt/sources.list更改
直接修改的操作。
sudo mv /etc/apt/sources.list /etc/apt/sources_bak.list
sudo vi /etc/apt/sources.list
直接将下载源信息复制即可
最后执行执行sudo apt update进行更新操作,注意不要可以不执行upgrade,不然后面我安装编译环境时会出错,部分软件版本太新,导致编译环境无法正常安装。

你可能感兴趣的:(linux,linux,ubuntu)