ubunto18.04更换源
时间: 2023-11-12 14:04:09 浏览: 85
Ubuntu 18.04更换apt-get源的方法
Ubuntu 18.04默认的软件更新源是国外的,在国内使用速度很慢,因此需要更换国内源。以下是更换源的步骤:
1.备份原始源文件sources.list:在终端中输入命令“sudo cp /etc/apt/sources.list /etc/apt/sources.list.bak”并回车。
2.打开sources.list文件:在终端中输入命令“sudo gedit /etc/apt/sources.list”并回车。
3.将原始源文件中的内容全部删除,并将以下内容复制到文件中:
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
4.保存并关闭文件。
5.更新源:在终端中输入命令“sudo apt-get update”并回车。
6.升级软件:在终端中输入命令“sudo apt-get upgrade”并回车。
7.清理无用软件:在终端中输入命令“sudo apt-get autoremove”并回车。
阅读全文