I've downloaded and installed a program, now how do you run it???
Linux - SoftwareThis forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.
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.
I've downloaded and installed a program, now how do you run it???
First off, I would like to say I am new to Linux. I attempting to download/install my first program and I picked Clam.I've attempted to install Clam antivirus using GNU. After a few yum install of other programs to make a successful configure/make/install of Clam, I find myself lost. Where the hell is the Clam program that I spent a good half hour installing??? I get a successful install but yet I do not know where the program is located, nor do I have any indication that this Clam program is running. I am fustrated with myself and I greatly appreciate any help you have to offer. Thank you.
If you downloaded via a package manager (yum for Fedora I think) then the executable will be in /usr/bin. I believe it's called clamscan or something like that. Try typing clamscan on a command line and see what happens.
jdk
When you install a program from source it's safe to keep a copy of the output from the make install step, so that you will know of every piece of software installed on your system (useful when you don't have the uninstall target in the Makefile and you have to uninstall by hand). I usually do this:
Code:
make install 2>&1 | tee install.log
This let me see the output in the terminal and save it to install.log at the same time. Regarding your question, another method to see where is the program, is to re-launch make install and look at the output (unless you did a make clean, after the installation).
I did the command clamscan and noticed it scanned my computer for viruses so I figure it's installed correctly. But I would like the GUI interface of the antivirus (if there is one); the real time protection application running (again, if there is one). So I try the second suggestion of locating the Clamav. When I type the locate command I get a very long list of everything with Clam in it. Then I move on to the last option make install 2>&1 | tee install.log and read an even more longer list. I have about 50 different directories with 500 different files which makes it more confusing. I guess my question is (speaking in Windows term) where is the .exe file for the Clamav? I greatly appreciate the quick response and your help.
I did the command clamscan and noticed it scanned my computer for viruses so I figure it's installed correctly. But I would like the GUI interface of the antivirus (if there is one); the real time protection application running (again, if there is one). So I try the second suggestion of locating the Clamav. When I type the locate command I get a very long list of everything with Clam in it. Then I move on to the last option make install 2>&1 | tee install.log and read an even more longer list. I have about 50 different directories with 500 different files which makes it more confusing. I guess my question is (speaking in Windows term) where is the .exe file for the Clamav? I greatly appreciate the quick response and your help.
I think I already answered that. The executable is going to be in /usr/bin and, as you saw, it's called clamscan. /usr/bin is in your (default) path so you can invoke it just by typing clamscan as you did. There is at least one gui for it which may or may not be called clamtk. If you use the search function on your package manager and look for packages with "clam" in them, you should find it easilty enough. If you install it using the package manager your executable(s) will be put in /usr/bin I hope that's clear enough.
You will probably have to install a package like freshclam in order to keep the virus database up to date.
jdk
Since you are new to linux, I think it's appropriate to inquire as to why you feel the need to run an antivirus application in the first place. Typically, experienced linux users only use an antivirus appliction on linux file servers and email servers that serve data to windows users. The only reason for using antivirus applications in these types of settings is to protect windows users.
If you are just running a linux desktop , you really don't need antivirus. You are more likely to win the lottery than get a virus while running linux. OK, that's probably an exaggeration. I know it's hard to get used to this idea coming from windows, but compared to windows, linux is pretty much immune to viruses. Most security problems in linux are not virus based. Rather, they tend to be problems with rootkits, or exploitation of vulnerabilities in network daemons like ssh or www servers through various worms.
Just to head off another inquiry that windows users new to linux ask about, you also don't need to defrag your hard drive in linux. By design, linux filesystems are much more resistant to fragmentation compared to FAT or NTFS.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.