this quote is from cowboyzlinux of Fri, 18 Jul 2003 20:34 :
>
> Do you know if you can list programs installed?
no, no, no, this is Linux.
The question is not "if", the question is "how".
There are many ways to show what is installed on your system.
For example, if you use the rpm package manager (like Mandrake does), you
can do
rpm -qa
or
rpm -qa | grep -i dvd
to list packagees with dvd in the name.
Or, use locate (which finds files for you) like
locate dvd | grep bin
using grep to filter out only those files with bin in the path.
(To use locate, you have to first run updatedb as root to build the file
index. Often this is set up as a cron job.)
Or, check out the find command.
There's probably other cool ways to do it too.
HTH
Peter
|