首先找到阿里官方相关镜像
❤️ 阿里云Ubuntu镜像
常用Ubuntu更新和清理命令
sudo apt update ## 更新源 sudo apt upgrade ## 更新当前系统的所有软件包 sudo apt dist-upgrade ## 安装新的软件包卸载已经过时的软件包 sudo apt-get clean ## 删除下载过程中缓存的软件包 sudo apt-get autoclean ## 删除已经卸载但依然留在系统中的软件包 sudo do-release-upgrade ## 检查是否有新版本可用,如果可用,则会提示您是否愿意升级 sudo apt list --upgradeable ##列出当前系统中可用更新的软件包 sudo apt-get remove [package_name] ##卸载指定的软件包,并且会删除其相关的配置文件 sudo apt-get purge [package_name] ##删除指定的软件包及其所有依赖关系,包括其相关的配置文件。
更换源操作基本操作步骤如下
1、查看系统信息
root@ubuntu22046tor:~# lsb_release -a No LSB modules are available. Distributor ID: Ubuntu Description: Ubuntu 22.04 LTS Release: 22.04 Codename: jammy
注意:“Codename”此处为“jammy” 也有可能是“trusty”、“bionic”、“focal”……
2、进入 /etc/apt/ 目录:
root@ubuntu22046tor:~# cd /etc/apt/
3、备份默认源文件
root@ubuntu22046tor:/etc/apt# cp sources.list sources.list_bak
安装 vim 执行命令
sudo apt-get install vim
4、编辑源配置文件
root@ubuntu22046tor:/etc/apt# vim sources.list ## 输入如下内容,保存退出
deb http://mirrors.aliyun.com/ubuntu/ jammy main restricted universe multiverse deb-src http://mirrors.aliyun.com/ubuntu/ jammy main restricted universe multiverse deb http://mirrors.aliyun.com/ubuntu/ jammy-security main restricted universe multiverse deb-src http://mirrors.aliyun.com/ubuntu/ jammy-security main restricted universe multiverse deb http://mirrors.aliyun.com/ubuntu/ jammy-updates main restricted universe multiverse deb-src http://mirrors.aliyun.com/ubuntu/ jammy-updates main restricted universe multiverse deb http://mirrors.aliyun.com/ubuntu/ jammy-proposed main restricted universe multiverse deb-src http://mirrors.aliyun.com/ubuntu/ jammy-proposed main restricted universe multiverse deb http://mirrors.aliyun.com/ubuntu/ jammy-backports main restricted universe multiverse deb-src http://mirrors.aliyun.com/ubuntu/ jammy-backports main restricted universe multiverse
5、更新软件库刷新源信息
root@ubuntu22046tor:/etc/apt# apt update
6、升级软件
root@ubuntu22046tor:/etc/apt# apt upgrade