Linux - NewbieThis Linux forum is for members that are new to Linux.
Just starting out and have a question?
If it is not in the man pages or the how-to's this is the place!
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
What is the command for finding a program and all of its files/dir's in the terminal? I forgot it was something simple like "blank <programname>". Basically I installed a program but it doesnt show up anywhere on the launcher and I want to find out where its at. I really need to get a book on this stuff. Thanks
Well, you can do a couple of things:
you can do "which {programname}" which will tell you where the program binary lives.
or
you can do 'find "{programname}*" ' to find every occurance of the programname and any thing else that uses the programname for a prefix to itself.
I like to use the "locate" utility. You have to do a "uptatedb" first to make a database of everything on your system, then do "locate foo" or whatever. I use it more than "find /usr foo" or something like that because it looks for the "foo" in ANY file name, so you can get stuff like libfoo.so, where just using "find" won't give you that.
find, locate, and whereis are what I usually use.... I'm sure there's more.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.