instaling tarball without using command line

Asked by Qsbite

Hello,
I am new to Linux/Ubuntu and I would like to ask if there is a way of instaling tarballs withous using terminal/ command line....
by only using GUI and no commands...
thanx:P

Question information

Language:
English Edit question
Status:
Solved
For:
Ubuntu Edit question
Assignee:
No assignee Edit question
Solved by:
Qsbite
Solved:
Last query:
Last reply:
Revision history for this message
sipiatti (sipiatti) said :
#1

I think it is practically not possible. But the process is not so difficult in most of the cases.
Change to directory of the tarball. Extract it with command

tar xzf tarball_file_name

then change into the unpacked directory
type:

./configure

if configure finished without errors you can compile with the following commands:

make
sudo make install

that's all. it could be that additional packages need for the configure and/or make process in that case you have to install them first, and after repeat the steps above.

Get used to terminal, it is the most powerful tool of linux.

Revision history for this message
Vojtěch Trefný (vojtech.trefny) said :
#2
Revision history for this message
Qsbite (qsbite) said :
#3

thanx guys:)

Revision history for this message
Olivier (olivier-lacroix) said :
#4

Hi !

Remember that compiling is not the preferred way of installing software. See https://help.ubuntu.com/community/InstallingSoftware

Revision history for this message
Randy LeJeune (lejeunerandy-fastmail) said :
#5

Use checkinstall for stuff like this.