Page 1 of 1

{SOLVED] What software do I have installed?

PostPosted: Jun 18th, '13, 10:00
by RoyD
Is there a program that I can run before I reinstall Mageia 3 to show which programs I have already installed? So once I have reinstalled I can easily reinstall all the software that I have been using, I have lots.

Re: What software do I have installed?

PostPosted: Jun 18th, '13, 10:33
by tom_
for that job I use

Code: Select all
rpm -qa

Re: What software do I have installed?

PostPosted: Jun 18th, '13, 10:44
by Ken-Bergen
Code: Select all
rpm -qa --qf '%{NAME}\n' | sort
Will list everything you have installed.
If you pipe that to a text file you can use a script like
Code: Select all
urpmi.update -a
while read line; do
   urpmi --auto $line
done < YOUR-FILE
to re-install most all the MGA2 packages that you had with the MGA3 equivalents.

Re: What software do I have installed?

PostPosted: Jun 18th, '13, 12:48
by RoyD
Thank you Ken, this is what I need. I am already with Mageia 3 but I need to increase my root drive, I play around with too many programs so the 12gb is too small so I am going to reinstall Mageia 3 so i can increase my root. Lucky I have a son not far from finishing a Degree with a double major in networking and security. He was able to show me how to make the script and how to run it. Just like a batch file from my old days. :D