Results 1 to 7 of 7
Okay my only down fall on linux is this install type were you first
: ./configure
: make
: make install
I know i have got to execute the config ...
- 06-02-2009 #1
Help with The three stage install on linux?
Okay my only down fall on linux is this install type were you first
: ./configure
: make
: make install
I know i have got to execute the config file and then i am stuck because i don't know now were the make file is or what i have to do from here.
so my question is what do i do from here ?
- 06-02-2009 #2
Usually the make file is in the same directory where you run ./configure, in the parent folder that you extracted the files to. Say you extracted the files to /tmp/program-name , then you need to cd to /tmp/program-name
Code:cd /tmp/program-name
Wait untils it gets done then typeCode:./configure
Wait for that to finish and then finally you issue this command as root or use sudo.Code:make
9 times out of 10, there is also a file named README and/or INSTALL, you need to read these files because they give you a lot of help.Code:make install
Code:cd /tmp/program-name
Code:more README
You should also check your system repos rather than install from source.Code:more INSTALL
I do not respond to private messages asking for Linux help, Please keep it on the forums only.
All new users please read this.** Forum FAQS. ** Adopt an unanswered post.
- 06-02-2009 #3
- 06-02-2009 #4I do not respond to private messages asking for Linux help, Please keep it on the forums only.
All new users please read this.** Forum FAQS. ** Adopt an unanswered post.
- 06-02-2009 #5
I have read the text and i have gor an error
Whats dose this mean ?configure: error: C++ preprocessor "/lib/cpp" fails sanity check
yes i did have a install file but it just says
-- INSTALL -----------------------------------
Basic Installation (from the console):
- Step 1
$ ./configure
- Step 2
$ make
- Step 3 (as root)
# make install
If configure fails, check that you have both
the Qt and KDE development headers installed.
You need at least KDE 3.2 and QT 3.3.
Debian note: You may need to append
--with-qt-includes=/usr/include/qt3
to the configure line.
- 06-03-2009 #6
what are you trying to install? it is probably already available in the repo, and you can avoid this step
- 06-03-2009 #7A candle looses nothing by lighting other candles. - Khalil Zibran.
Registered Linux User #490076


Reply With Quote
