Notifications
Clear all
0
06/06/2021 7:00 am
Topic starter
Please suggest me some steps to see which software is installed in Ubuntu, either by terminal or other methods?
1 Answer
0
06/06/2021 9:23 am
In order to see what software is installed in your Ubuntu system, you can get through the instructions here mentioned:
1: Open your terminal (For remote server, connect to terminal via SSH)
2: In the terminal, run the comand below:
apt list --installed
3: You can also list the packages with a search criteria. for example, suppose you need to search those packages matching with apache2, you can use the following command:
apt list apache
Hope this will help you.