LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   how to install bz2 files (https://www.linuxquestions.org/questions/linux-newbie-8/how-to-install-bz2-files-788872/)

system X 02-13-2010 06:06 AM

how to install bz2 files
 
i tried following procedure

tar xvjf file.bz2
cd file
./configure
make
su
make install

but ./confifure did'nt work it said

bash: ./configure: No such file or directory

repo 02-13-2010 06:10 AM

Welcome to LQ

In general there is a readme and INSTALL file.
Did you read them?
What is the output from
Code:

ls
in the directory "file"

knudfl 02-14-2010 06:58 AM

Some software has a script by name ' configure '.
Then you can do ' ./configure '. Else not.

No configure script : Most often a binary package ?

And doing the 'ls' command suggested by @repo will
show, what you have.


Possible commands and scripts to be run to start building Linux software:

'perl Makefile.PL' , 'perl Build.PL' , 'python setup.py build' ,
# 'python setup.py install', 'cmake ..' , 'scons', './waf', 'jam' ,
'./install', './autogen.sh', './configure' (or 'sh configure'),
libtoolize && aclocal && autoheader && automake --add-missing && autoconf,
.. etc.
.....

Carsto 02-17-2010 05:11 PM

It may also be that the app has it's own install routine. Something like setup that you start by ./setup in terminal. See if you can find a readme or readme.txt file or similar. Do more readme.
Usually it's there.


All times are GMT -5. The time now is 07:58 PM.