在新版本系统发布后,linuxmint系统会提示升级,但是使用系统自带的GUI工具经常失败,我们需要掌握手动升级的办法
本文演示将linuxmint 20.2uma 升级至 linuxmint 20.3una (其它linuxmint20.x系统也可以此方式升级)
GUI工具升级时会自动切换到系统默认的国外源上,由于众所周知等原因连不上是常态
我们需要切换软件源到国内,以便手动升级使用
sudo vim /etc/apt/sources.list.d/official-package-repositories.list
将在文件开始处插入以下内容
这里选择了清华TUNA源,读者也可选择其它国内源
deb http://mirrors.tuna.tsinghua.edu.cn/linuxmint/ una main upstream import backport
# 默认注释了源码镜像以提高 apt update 速度,如有需要可自行取消注释
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-updates main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-updates main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-backports main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-backports main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-security main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-security main restricted universe multiverse
先将系统更新至最新
sudo apt update
sudo apt upgrade
执行如下指令 开始更新系统。
sudo apt-get update
sudo apt-get dist-upgrade
待执行完成,我们系统应该已经更新好了。
随后重启一下系统,后执行lsb_release -a
应该能看到输出
Distributor ID: Linuxmint
Description: Linux Mint 20.3
Release: 20.3
Codename: una
升级成功了。