Windows scatters bits and pieces of programs all over its filesystem; in %APPSDATA, the Registry, and C:\Program Files\PROGRAMNAME .
Linux is much more consistent, just different. In a terminal window, do which PROGRAMNAME
substituting the name of your program you are looking for in place of PROGRAMNAME. This finds programs installed by Synaptec, by Ubuntu Programs, by manually installs using sudo apt install PROGRAMNAME
, and also for preinstalled programs.
Usually you will find programs in /sbin, /usr/sbin, /usr/local/bin, or under ~ AKA /home/YOURUSERNAME as a hidden directory.
Once a program is installed, it is added to Ubuntu's menu, or if it's a command-line-only program, you can launch it by typing its name in a terminal window.
Just like with Windows, some programs are so trementously useful that they are built into the Kernel, the heart of the OS. These are things like ls
(the list files command). However, you can find the basics of how to use them by typing man PROGRAMNAME
at a shell prompt. aka the Terminal Window.
Also please note that PROGRAMNAME is not the same as ProgramName, Programname, or programname, as Linux file naming is case sensitive.
$ dpkg -L [program name]
will print a list with file locations. – Knud Larsen Feb 28 '20 at 01:58