First of all you need to make sure you have what you need installed. Sometimes, if you're getting errors, you may want to run this simple command:
sudo apt-get install opensslI can't quite remember what I was trying to install but I found that after i installed that the program built from source.
Anyway, after we do that (or if we don't need that step alltogether) we may need to unpack the file. If it is, in fact, a .tar.gz file then we can just extract it from command line nice and easy:
tar xvzf filename.tar.gzOf course replace "filename" with the name or path to the file.
After that we need to bring our command line to the directory that we need. Remember, navigate using "cd nextfolder/" to change directories. Once you're in the newly created folder (you remember that unpacking the archive created another folder in that directory with the same name as the archive, right?) run these two commands:
makeAfter that just run the program by it's name. If you just installed a program named bob123, then just type "bob123" (no quotes) in the command line.
make install
No comments:
Post a Comment