↧
Answer by 0x8BADF00D for How to find location of installed library
In case if you are not sure about package name you could list all packages and try to find requested:dpkg --get-selections | grep -v deinstall | grep <packagename>For example:$ dpkg...
View ArticleAnswer by Jo-Erlend Schinstad for How to find location of installed library
Easy! dpkg -L packagename. That will list all files (with location) that were brought in by the package.
View ArticleHow to find location of installed library
Background: I'm trying to build my program but first I need to set up libraries in NetBeans. My project is using GLU and therefore I installed libglu-dev. I didn't note the location where the libraries...
View Article