At 10:55 09/29/2005 -0700, Ralph Shumaker wrote: [snip] >>-Stewart "Might want to dump a list of installed packages, too" Stremler >> >> > >How?
On an RPM based system like RedHat/Fedora, all you have to do is: $ rpm -qa > allrpms.txt The rpm -qa does a query of all the packages on the system. The above command will put that list into a file called allrpms.txt which you can then save for reference. Actually, it would probably be more useful to pipe it through sort first, that way it makes it easier to find things. Then this would change to: $ rpm -qa | sort -f > allrpms.txt Gus -- [email protected] http://www.kernel-panic.org/cgi-bin/mailman/listinfo/kplug-list
