Monday, April 29, 2024
 Popular · Latest · Hot · Upcoming
17
rated 0 times [  17] [ 0]  / answers: 1 / hits: 28362  / 2 Years ago, mon, october 3, 2022, 2:23:33

Update Manager keeps packages at the latest version, but occasionally a new package version may not work as expected or properly. How to downgrade an installed package and lock it at a specific version to prevent it from being updated? How can I do this using GUI or using a Terminal?


More From » downgrade

 Answers
2

In GUI - using Synaptic



The Ubuntu Software Center’s simplified interface doesn’t offer the option to downgrade packages. Synaptic, a more advanced graphical package manager interface that Ubuntu used to include, offers this option. To downgrade a package graphically, first install the Synaptic application:



Ubuntu Software Center



After you done this, open the Synaptic Package Manager from the Dash:



synaptis



Search for the package you want to install an older version of in Synaptic, select it, and use the Package > Force Version option:



Force version



Select the version you want to install and click Force Version. Synaptic will only show you versions available in your repositories:



Select version



Click the Apply button to apply your changes and install the older version of the package, assuming everything works properly.



Apply



After you downgrade the package, select it and use the Package > Lock Version option. If you don’t do this, Ubuntu will try to upgrade the installed package the next time you update your installed packages:



Lock version



In Terminal – using apt-get



You can install a specific version of a package with apt-get in the Terminal. First, determine the available versions you can install with the following command (use for packagename the name of the program that you want to downgrade):



apt-cache showpkg [packagename]


Next, run the apt-get install command and specify the package version you want to install (use for version the version number previously determined of the program that you want to downgrade):



sudo apt-get install [packagename]=[version]


After it’s installed, run the following command to hold your installed version, preventing the package manager from automatically updating it in the future:



sudo echo "[packagename] hold" | sudo dpkg --set-selections


Source: http://www.howtogeek.com/117929/how-to-downgrade-packages-on-ubuntu/


[#31319] Tuesday, October 4, 2022, 2 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
berlorful

Total Points: 346
Total Questions: 90
Total Answers: 99

Location: Monaco
Member since Tue, Nov 30, 2021
2 Years ago
;