I am using Ubuntu 14.10 default GUI, how can I see all the applications installed ? if I don't give a search keyword I can't see anything.
Asked
Active
Viewed 6,269 times
2 Answers
2
In the terminal you can see a list of all installed packages like this:
dpkg -l
Or, for example, write listing to a file:
dpkg -l > packages.txt
juzzlin
- 1,293
0
Personally I use terminal commands dpkg --get-selections | less or dpkg --get-selections | grep packagename
Sergiy Kolodyazhnyy
- 107,582