Ask Klaus
Ask Klaus

Klaus Knopper answers your Linux questions.
Downgrading Packages
Hi Klaus, how can I select a specific version, possibly an older one, of a package to install in Debian if I want to avoid the newest version of, for example, Chromium from the "unstable" branch?
To see the current available versions of a package, you have to update the package catalog first. I sometimes even delete the old package catalog lists (first line) to make sure all of them get downloaded again,
sudo rm -f /var/lib/apt/lists/* sudo apt-get update
although this step is optional. The second line does not actually update anything, it just fetches the software catalogs from all Debian branches listed in /etc/apt/sources.list
and /etc/apt/sources.list.d/*
.
To check for available versions in each Debian branch, the command
apt-cache policy <package-name>
can be helpful. Because it only queries the software catalog, no root permissions are required (Listing 1). On some systems, the command apt-show-versions
is installed and shows more verbose information. However, as opposed to apt-cache policy
, it is not included in standard Debian.
Listing 1
Chromium Versions
The Chromuim version currently installed is 52.0.2743.116-2 from the Debian/testing branch. The apt-get install
command would install version 53.0.2785.92-2 from Debian/unstable, so if I would rather use version 53.0.2785.89-1~deb8u1 from the Debian/stable security updates, for example, the command for download and installation would be:
sudo apt-get install chromium= 53.0.2785.89-1~deb8u1
Another option for specifying the branch rather than the specific version number is adding the branch name right after the package name separated by a slash, which is syntactically not supported for branches with a sub-branch like stable/updates. I'll chose the unstable branch here:
sudo apt-get chromium/unstable
If apt-get
now complains about dependencies (e.g., packages that Chromium depends on) not being installable, you can also tell apt-get
which Debian branch to go for those with the -t
switch:
sudo apt-get install -t testing chromium=53.0.2785.89-1~deb8u1
You can specify dependency packages to install in addition to chromium
by adding them to the same command line, each with versioning information. In this way, you can possibly resolve more complicated dependencies with mixed-branch versions of installed software:
sudo apt-get install -t testing chromium=53.0.2785.89-1~deb8u1 chromium-l10n=53.0.2785.89-1~deb8u1 libnspr4/unstable
This is what I frequently do in Knoppix to get the newest packages for Xorg and the desktop, yet get the more tested versions for services like apache2
and samba
from the stable branch.
To keep the installed version permanently without automatic upgrades, you can put it on "hold" by issuing:
echo chromium hold | sudo dpkg --set-selections
The hold
status can be removed again by simply upgrading or downgrading the package anytime later.
Klaus Knopper
Klaus Knopper is an engineer, creator of Knoppix, and co-founder of LinuxTag expo. He works as a regular professor at the University of Applied Sciences, Kaiserslautern, Germany. If you have a configuration problem, or if you just want to learn more about how Linux works, send your questions to: klaus@linux-magazine.com
Buy this article as PDF
(incl. VAT)
Buy Linux Magazine
Direct Download
Read full article as PDF:
Price $2.95
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
News
-
KDE Plasma 6 Looks to Bring Basic HDR Support
The KWin piece of KDE Plasma now has HDR support and color management geared for the 6.0 release.
-
Bodhi Linux 7.0 Beta Ready for Testing
The latest iteration of the Bohdi Linux distribution is now available for those who want to experience what's in store and for testing purposes.
-
Changes Coming to Ubuntu PPA Usage
The way you manage Personal Package Archives will be changing with the release of Ubuntu 23.10.
-
AlmaLinux 9.2 Now Available for Download
AlmaLinux has been released and provides a free alternative to upstream Red Hat Enterprise Linux.
-
An Immutable Version of Fedora Is Under Consideration
For anyone who's a fan of using immutable versions of Linux, the Fedora team is currently considering adding a new spin called Fedora Onyx.
-
New Release of Br OS Includes ChatGPT Integration
Br OS 23.04 is now available and is geared specifically toward web content creation.
-
Command-Line Only Peropesis 2.1 Available Now
The latest iteration of Peropesis has been released with plenty of updates and introduces new software development tools.
-
TUXEDO Computers Announces InfinityBook Pro 14
With the new generation of their popular InfinityBook Pro 14, TUXEDO upgrades its ultra-mobile, powerful business laptop with some impressive specs.
-
Linux Kernel 6.3 Release Includes Interesting Features
Although it's not a Long Term Release candidate, Linux 6.3 includes features that will benefit end users.
-
Arch-Based blendOS Features Cool Trick
If you're looking for a Linux distribution that blends Linux, Android, and web apps together, blendOS might be what you're looking for.