Pic by Felipe Morin, cc-licensed
For someone not accustomed to the Unix file system hierarchy you might have a hard time figuring out where the heck that package manager installed software you just selected. That is when it doesn’t occur automatically in your Ubuntu Application menu in the first place. Well there is a simply way to figure that out without having to look through all those mysterious usr, var and etc folders.
- Open up your Synaptic Package manager.
- Search and select the package you want to know the installation folder of.
- Right click it, and select Properties.
- Go to the Installed files tab of the property window.
- There you have it, all installed files and there location on your disk.
Now you can manually browse to it and run it by double clicking the binary.
If you want to add a shortcut or launcher to your Applications menu for the newly installed app, you can do this by right clicking the Applications menu, and selecting “Edit menus”.
Step by step details on how to add a new entry can be found on ubuntugeek.com.
6 replies on “finding out where software is installed on ubuntu”
Anytime. I don’t know much but I do know unix. ;)
neat,
thanks for the tip!
neat,
thanks for the tip!
quick and dirty from the cmd line. If you only need to find the binary.
whereis pkgname
[code]
greg@zorak:~$ whereis synaptic
synaptic: /usr/sbin/synaptic /usr/share/synaptic /usr/share/man/man8/synaptic.8.gz
[/code]
quick and dirty from the cmd line. If you only need to find the binary.
whereis pkgname
[code]
greg@zorak:~$ whereis synaptic
synaptic: /usr/sbin/synaptic /usr/share/synaptic /usr/share/man/man8/synaptic.8.gz
[/code]