Skip to content

bruhtus/package-backup

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Arch-based Linux Package List Backup and Restore

This repo is for my package list backup so that i can re-install all my package without remembering all of them. You can also use the command below to backup and re-install your package on new installation.

To backup all of your currently installed package

Backup package in official repository

pacman -Qqen > pkglist-repo.txt

Backup package in arch user repository (AUR)

pacman -Qqem > pkglist-aur.txt

To restore / re-install all of your package

For repository package

sudo pacman -S --needed - < pkglist-repo.txt

For AUR package

for x in $(< pkglist-aur.txt); do yay -S $x; done

The information was gathered from here.

Another useful information to restore system, here you go.

To access TTY you can use Ctrl+Alt+F2 to access TTY2 (or another function key to access another TTY).

For how to install virt-manager, you can check the wiki.

For setting up the bluetooth devices:
Install pulseaudio bluetooth using command below:

sudo pacman -S pulseaudio-bluetooth

and then run the following command:

pactl load-module module-bluetooth-discover

That's all.

About

My arch linux package list backup.

Topics

Resources

Stars

Watchers

Forks

Languages