list of packages 29 March 2024, 20:57:11 Hi,I want to ask if there is a pacman combination which lists all installed packages into list which can be later used for installation.I tried something from arch wiki but the list was not full,Thanks
Re: list of packages Reply #1 – 29 March 2024, 21:43:27 The Arch wiki does explain how to get several useful lists of installed packages.One thing it seems to neglect is 'all' installed packages.pacman -Q , pacman -Qq for a list without the versions.But you can't use that to automatically install the list unless you have no foreign packages.
Re: list of packages Reply #3 – 30 March 2024, 06:21:56 To list all packages except AUR:Code: [Select]pacman -Qnq > list_QnqTo list only AUR packages:Code: [Select]pacman -Qmq > list_Qmq Last Edit: 30 March 2024, 06:39:21 by tintin