PDA

View Full Version : New to linux, how do i compile from tarballs?



Logrus
03-26-2004, 07:31 PM
I used linux a bit back in college, but i was mostly just using software already on the system. now that i have it on my own system, i find that nearly every program on the market for it requires that i first compile the program to use it. How do i do so?


edit: added "from" to subject line for clarity.

firebyrd10
03-26-2004, 08:03 PM
Ok what arre you trying to do? Compile a program code or make a tarball?

I can't help with compiling a program but to make a tarball you can use Ark. I don't remember how to do it via command line though.

Logrus
03-26-2004, 08:07 PM
no, i'v got the tarball, what i need is the compiled program so i can run it. i know how to use ark to extract the tarball, but that just leaves me with a bunch of compiler-related files, that i don't know what to do with.

aay
03-26-2004, 09:41 PM
no, i'v got the tarball, what i need is the compiled program so i can run it. i know how to use ark to extract the tarball, but that just leaves me with a bunch of compiler-related files, that i don't know what to do with.

You will need to look at any README files or other documentation included in the archive to get precise instructions on how to compile, but it genearally consists of doing the following:

From the shell navigate into the unarchived directory with cd.

./configure

make

as root: make install

aay
03-26-2004, 09:51 PM
I used linux a bit back in college, but i was mostly just using software already on the system. now that i have it on my own system, i find that nearly every program on the market for it requires that i first compile the program to use it. How do i do so?


edit: added "from" to subject line for clarity.

One more thing. You say that most programs require that you compile before you use them. Since you are new to Linux/Debian you might not know about apt. Currently there are over 13,000 packages available in the Debian repositories. Many programs that you will want to install will be included there. With Debian, installing them couldnt be easier. Simply do the following as root.


apt-get update


apt-get -s install name_of_program

I always use -s to simulate an install before I go ahead with it this way you can see if there are going to be any dependency conflicts or if there are going to be programs removed because of your install. If you don't get any messages about dependency problems and if no programs are going to be removed then simply hit the up arrow on your keyboard to bring up the previous command and remove the -s. Now when you hit enter the program will be downloaded and installed. If you end up with dependency problems or if you see that programs are going to be removed then try the following.


apt-get -s -t unstable install name_of_program

This should almost always work, but I still put the -s in there in order to simulate the install before I go through with it. If everything looks good, then simply hit the up arrow, remove the -s and hit enter. The program will be installed and dependencies will be satisfied. I suggest doing some more reading on apt. It's very powerful and one of the main reasons I use Debian.

Logrus
03-27-2004, 12:48 AM
./configure: no such file or directory.

as for the apt one, where can i get a list of progs it supports, and the names it uses for them?

fingers99
03-27-2004, 01:23 AM
The simple answer is to do a google for

name of program debian

But a tool which will help is Synaptic. It's a GUI front end for apt-get and will list all programs available (but note that what is available will depend on your sources.list). To install Synaptic connect to the internet. As root (su to root) do:

apt-get update

when that's finished, (still as root) do:

apt-get install synaptic


./configure: no such file or directory.

You need to right click on the package and select "extract here" this will create a new directory. cd to that directory and then do

./configure

Logrus
03-27-2004, 07:58 AM
[snip]


./configure: no such file or directory.

You need to right click on the package and select "extract here" this will create a new directory. cd to that directory and then do

./configure

that's exactly what i did. with 2 different tarballs from 2 different sources, for 2 different programs.

Logrus
03-27-2004, 08:03 AM
The simple answer is to do a google for

name of program debian

But a tool which will help is Synaptic. It's a GUI front end for apt-get and will list all programs available (but note that what is available will depend on your sources.list). To install Synaptic connect to the internet. As root (su to root) do:

apt-get update

when that's finished, (still as root) do:

apt-get install synaptic

[snip]

in konsole, from the root directory, "apt-get update" gives me 14 pages of error codes, then a new prompt. fails to find files, fails to create files, fails to fetch files from addresses. doesn't successfully do anything at all.