Actions
Feature #837
closed
DC
DC
Backup List of Installed Applications on Arch Linux
Feature #837:
Backup List of Installed Applications on Arch Linux
Description
I like to keep a list of installed packages on my workstations from time to time. With Arch Linux that mean I want to backup a list of both native packages and packages from the AUR.
Backup¶
- Backup native applications:
pacman -Qqen > backup-apps.txt
- Backup AUR applications:
pacman -Qqm > backup-aur-apps.txt
Restore¶
- Restore native applications:
cat backup-apps.txt | sudo pacman -S -
- Restore AUR applications:
cat backup-aur-apps.txt | yaourt -S -
Resources¶
DC Updated by Daniel Curtis over 9 years ago
- Description updated (diff)
- Status changed from New to Resolved
- % Done changed from 0 to 100
DC Updated by Daniel Curtis over 9 years ago
- Status changed from Resolved to Closed
Actions