LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   Redhat 9 + included apps (https://www.linuxquestions.org/questions/linux-newbie-8/redhat-9-included-apps-71010/)

Futureman 07-08-2003 12:41 PM

Redhat 9 + included apps
 
hi,

i recently installed redhat 9, and was wondering whether or not anyone knows of a way i could browse all of the programs which came with the package from the command prompt.
i am planning on making a list of apps which i need and dont have....so i need to see whats already embedded in RH9.

thanks

MasterC 07-08-2003 12:45 PM

You should be able to use the:
rpm -qa
Tool. This may need to be executed as the root user, if so, simply su - to root and enter the root password, then type:
rpm -qa

Another thing might be to pipe this to less:
rpm -qa | less
This will allow you to scroll up and down the results list. You could also pipe it to a text file:
rpm -qa > /home/user/packages
And then you'll have the text file 'packages' in your user's home directory.

HTH

Cool

v00d00101 07-08-2003 02:39 PM

I believe there is a text file installed in /root containing a list of all packages installed. Its called install.log, this could be used as a basis for your list.

Try opening it in emacs, the command should be:

su
emacs /root/install.log

OT: When considering packages to install, installing pine is a really good idea, as u can use pico as ur text editor and it works over ssh too.

Nearly forgot, to get out of emacs the command is:
ctrl+x, ctrl+c


All times are GMT -5. The time now is 06:11 AM.