Posted On February 7, 2025

How to Upgrade Linux Mint from 20.03 to 21 via Command Line

kimconnect 0 comments
blog.KimConnect.com >> Linux >> How to Upgrade Linux Mint from 20.03 to 21 via Command Line

Step 1:

sudo apt update
sudo apt install mintupgrade

Step 2:

sudo mintupgrade

Troubleshooting:

Error message: “Your version of Linux Mint is ‘Vera’. Only Linux Mint 20.3 ‘Una’ can be upgraded to Linux Mint 21 ‘Vanessa’

Note that the warning above indicates that the utility has detected that the current system version as 20.03; hence, it’s necessary to verify using this command:

$ cat /etc/linuxmint/info
RELEASE=21.1
CODENAME=vera
EDITION="Xfce"
DESCRIPTION="Linux Mint 21.1 Vera"
DESKTOP=Gnome
TOOLKIT=GTK
NEW_FEATURES_URL=https://www.linuxmint.com/rel_vera_xfce_whatsnew.php
RELEASE_NOTES_URL=https://www.linuxmint.com/rel_vera_xfce.php
USER_GUIDE_URL=https://www.linuxmint.com/documentation.php
GRUB_TITLE=Linux Mint 21.1 Xfce

Using the sample output above, we can determine that mintupgrade has falsely detected the host OS version. Thus, consider this post as short waste of your reading time if your OS has already been upgraded via other means 🙂

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

Docker ShellInABox

docker run --privileged -p 9999:4200 -e SIAB_PASSWORD=password-e SIAB_SUDO=true sspreitzer/shellinabox:latestdocker run --privileged -d --name shellinabox -p…

How to Install Selenium for Python on Windows or Linux

Windows # This error would occur if pip is not up to date PS C:\WINDOWS\system32>…

How To Install Zabbix Client on CentOS 8

# Open the commonly known Zabbix ports firewall-cmd --zone=public --add-port=10050/tcp --permanent firewall-cmd --zone=public --add-port=161/tcp --permanent…