How Can I Find Installed Programs on Linux Mint?

0
77
Asked By CuriousCat93 On

I recently got a mini PC to run a Plex/Jellyfin server, and it's working like a charm! However, my memory isn't the best, and I can't seem to remember the names of a few programs I installed via the terminal. Now I'm stuck because I can't uninstall them. What's a good way to see the list of programs I've installed in the past?

3 Answers

Answered By GizmoGuru77 On

For a specific command, you can use `apt list --installed` to get a comprehensive list of all installed packages.

Answered By HelpfulHarriet23 On

Don’t forget to check your start menu! It should show most of the applications installed, and you might find the ones you're looking for there.

Answered By TechieTango42 On

You can list all the installed packages on your system by using the command `apt list`. If you remember installing something recently, you can also check your install history with `history | grep "apt install"`. If you know the command but not the name of the program, try using `which ` to find the corresponding binary.

Related Questions

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.