How to Downgrade Packages in Arch Linux Last Updated : 27 Feb, 2020 Comments Improve Suggest changes Like Article Like Report Arch Linux, one the most configurable operating systems often gets into problems when some of a package is updated and it causes a list of problems. In that case, all one wants to do is downgrade that package to the last version. It is just like performing force restore to last version in git. This article revolves around how one can downgrade a package in Arch Linux. To start off, one is going to need a package called downgrade. For downloading downgrade, you need to use some tool which can access the AUR. We have used yay here. Install downgrade from AUR In shell, enter the following command, Input : In Shell: yay -S downgrade Output : [sudo] password for <username> : ....... wait for install It will only take some time as it is a very small package. Now all you want to do is to use it to downgrade packages. Downgrade Packages with downgrade Syntax - sudo downgrade [PACKAGE, ...] [-- [PACMAN OPTIONS]] Example - For example you want to downgrade firefox in arch. sudo downgrade firefox This will give you a list of versions of the package. Just enter The number corresponding to the package you want to downgrade to to downgrade. Output : Now it will ask the package number you want to downgrade to. In this case, let's enter 27, Done. Firefox will be downgraded to version 70.0.1 from 73.0.1. Comment More infoAdvertise with us Next Article How to Downgrade Packages in Arch Linux GeeksforGeeks Improve Article Tags : Linux-Unix Technical Scripter 2019 Similar Reads How to Manage Debian Packages in Linux? Debian, one of the oldest and most respected Linux distributions, is renowned for its stability, security, and robust package management system. Managing Debian packages effectively is crucial for maintaining a healthy and well-functioning Linux system. In this comprehensive guide, we will explore e 9 min read How to Install and Remove Packages in Arch Linux Arch Linux, known for its simplicity, flexibility, and user-centric approach, offers a robust package management system that allows users to easily install, update, and remove software packages. Unlike some other Linux distributions that come pre-packaged with software management tools, Arch Linux f 5 min read How to Manage Packages in Red Hat-based Linux? Package management tools like dnf (Dandified YUM) or yum (Yellowdog Updater Modified) are used to manage packages on Red Hat-based Linux systems. These programs support the installation, removal, and upgrading of software packages on your computer. Typical package management tasks include the follow 4 min read Pacman command in Arch Linux Pacman is a package manager for the arch Linux and arch-based Linux distributions. If you have used Debian-based OS like ubuntu, then the Pacman is similar to the apt command of Debian-based operating systems. Pacman contains the compressed files as a package format and maintains a text-based packag 4 min read How to Install Gnome on Arch Linux Arch Linux is known for its adaptability and moderation, allowing users to create their Linux operating system for specific needs. It is one of the most popular Linux system configurations, providing a clean and easy-to-use interface. assuming you're an arch Linux user hoping to install gnome, follo 5 min read Like