Arch Linux is renowned for its simplicity and rolling-release nature, ensuring you always have access to the latest software updates.
However, one challenge users often face is managing the package cache, which can grow significantly over time and consume valuable disk space.
By automating cache management, you can ensure a leaner system without manual intervention.
This article outlines the steps to automate cache management on Arch Linux, enabling you to maintain an efficient and clutter-free environment.
Understanding Package Cache in Arch Linux
The Arch Linux package manager, pacman, stores downloaded package files (.pkg.tar.zst) in the /var/cache/pacman/pkg/ directory.
These cached files allow users to downgrade packages or reinstall them without re-downloading.
However, as updates accumulate, the cache can grow substantially, potentially using several gigabytes of storage.
While it’s beneficial to keep some old packages for recovery purposes, keeping all old versions is unnecessary for most users.
Automating cache cleanup helps strike a balance between safety and space efficiency.
Manual Cache Cleanup Options
Before diving into automation, it’s helpful to know the manual options for cleaning the cache:
Remove uninstalled packages:
1
sudo pacman -Sc
This removes cached packages not currently installed on your system.
Remove all cached packages:
1
sudo pacman -Scc
This clears the entire cache. Use this with caution as it removes all packages, even those required for reinstallation.
Paccache utility:
The paccache script (part of the pacman-contrib package) allows more granular control by keeping a specified number of old package versions. For example:1
sudo paccache -rk2
This command retains the last two versions of each package.
Automating Cache Management
Automation eliminates the need to remember periodic manual cleanup, ensuring your system stays optimized.
Here’s how to automate cache management in Arch Linux:
Step 1: Install pacman-contrib
The pacman-contrib package includes paccache and other useful tools. Install it using:
1 | sudo pacman -S pacman-contrib |
Step 2: Create a Systemd Timer and Service
To automate cache cleanup, use a Systemd service and timer.
1: Create the service file:
Open a new file for the service configuration:
1 | sudo nano /etc/systemd/system/paccache-clean.service |
- Create the timer file:
Open a new file for the timer configuration:
1 | sudo nano /etc/systemd/system/paccache-clean.timer |
Add the following content:
1 | [Unit] |
The OnCalendar=weekly directive schedules the cleanup to run weekly. You can adjust this to monthly or another interval as needed.
Enable and start the timer:
Activate the timer to run automatically:1
sudo systemctl enable --now paccache-clean.timer
Verify that the timer is active:
systemctl list-timers | grep paccache-clean |
Customizing Cache Management
You can modify the ExecStart line in the service file to suit your preferences. For example:
- Retain only the most recent version:
1
ExecStart=/usr/bin/paccache -rk1
- Clear all unused packages:
1
ExecStart=/usr/bin/pacman -Sc
- Combine cleanup with log trimming (using journalctl):
1
ExecStart=/bin/bash -c "/usr/bin/paccache -rk2 && /usr/bin/journalctl --vacuum-time=2weeks"