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 Quote Selected
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. Quote Selected
Re: list of packages Reply #2 – 29 March 2024, 22:15:07 I use a scriptand install them via pacman Quote Selected
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 Quote Selected Last Edit: 30 March 2024, 06:39:21 by tintin
Re: list of packages Reply #4 – 30 March 2024, 18:07:02 Thank you Guys,Thats it.Have a nice day. Quote Selected