the location of the downloaded/installed programs and packages from software Center?
Asked
Active
Viewed 136 times
2 Answers
0
The command dpkg -L <package>
will display the files associated with the given package.
Sample output of
$ dpkg -L vim
/.
/usr
/usr/bin
/usr/bin/vim.basic
/usr/share
/usr/share/lintian
/usr/share/lintian/overrides
/usr/share/lintian/overrides/vim
/usr/share/bug
/usr/share/bug/vim
/usr/share/bug/vim/presubj
/usr/share/bug/vim/script
/usr/share/doc
/usr/share/doc/vim

DrewDiezel
- 88
- 2
- 7
0
The package files that Software Center and other package management tools download are stored in /var/cache/apt/archives
. However, just picking up the packages from there won't do you much good. See How can I install software or packages without Internet (offline)? and understand that the Windows way of doing things does not always apply here.
/var/cache/apt/archives
where the .deb files gets downloaded to? – muru Oct 22 '14 at 02:47