LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 08-31-2014, 01:47 PM   #1
linuxmarble
Member
 
Registered: Aug 2014
Location: Deutschland
Distribution: Kali Linux
Posts: 44

Rep: Reputation: Disabled
Question Help using configure; make; make install


Good Day

maybe this is EZ for other people But I cant seem to Understand how to run this

Ok so I want to install a new terminal emu so now i have the folder and it is unziped

back dont know how to install it , looked on the internet for the command line that did not help
Looked under synaptic and still no luck

can any one please tell me what are the steps to install any thing using

this command configure; make; make install

many thanks
 
Old 08-31-2014, 01:55 PM   #2
Hungry ghost
Senior Member
 
Registered: Dec 2004
Posts: 1,222

Rep: Reputation: 667Reputation: 667Reputation: 667Reputation: 667Reputation: 667Reputation: 667
First you should check if the program you want to install is available as a binary package in the repository of the distro you're using.

If it's not and you need to compile the program, it's a good idea to read the README and INSTALL files that are inside the tarball you extracted, since some sources need to be compiled slightly differently. In any case, the general procedure after you extract the tarball is to use cd to enter into the extracted directory and then run the commands you posted above, one at a time:

Code:
./configure
make
make install
Anyway, which distro are you using and what specific software are you trying to install?
 
Old 08-31-2014, 02:06 PM   #3
linuxmarble
Member
 
Registered: Aug 2014
Location: Deutschland
Distribution: Kali Linux
Posts: 44

Original Poster
Rep: Reputation: Disabled
Thank U for the reply

I am very interested in installing this terminal EMU Called terminolog so I went to the website and I installed it ,
But I could be wrong But it says U need these software to go with it , so I install the EFL 1.11.1 as they recommanded on the left side

So now i have the EFL but dont know how to install

Can u also please tell me what should I put after the ./configure ?? do I put the File name or folder name ??

I am using Linux Mint 17 and here is the site I am on https://www.enlightenment.org/p.php?p=download&l=en

many thanks
 
Old 08-31-2014, 02:31 PM   #4
Hungry ghost
Senior Member
 
Registered: Dec 2004
Posts: 1,222

Rep: Reputation: 667Reputation: 667Reputation: 667Reputation: 667Reputation: 667Reputation: 667
First you need to enter into the directory that contains the source code:

Code:
cd efl-1.11.1
Then you need to run the commands I told you before. According to the INSTALL file, there's no need to give any special parameter to configure. It will probably complain that something is missing. If that's the case, you will need to install the missing package(s) with your preferred package manager (apt-get, aptitude, synaptic, etc) and run configure again until it finishes without errors. Then you can run the remaining commands.
 
Old 08-31-2014, 02:32 PM   #5
linuxmarble
Member
 
Registered: Aug 2014
Location: Deutschland
Distribution: Kali Linux
Posts: 44

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by odiseo77 View Post
First you need to enter into the directory that contains the source code:

Code:
cd efl-1.11.1
Then you need to run the commands I told you before. According to the INSTALL file, there's no need to give any special parameter to configure. It will probably complain that something is missing. If that's the case, you will need to install the missing package(s) with your preferred package manager (apt-get, aptitude, synaptic, etc) and run configure again until it finishes without errors. Then you can run the remaining commands.
Great I will try it now and see what Happens

will update soon

Thank u
 
Old 08-31-2014, 02:40 PM   #6
linuxmarble
Member
 
Registered: Aug 2014
Location: Deutschland
Distribution: Kali Linux
Posts: 44

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by linuxmarble View Post
Great I will try it now and see what Happens

will update soon

Thank u
I got this error

checking for gcc... gcc
checking whether the C compiler works... no
configure: error: in `/home/bfk/Downloads/efl-1.11.1':
configure: error: C compiler cannot create executables

what do i do now ???
 
Old 08-31-2014, 02:58 PM   #7
initramfs
LQ Newbie
 
Registered: Aug 2014
Posts: 27

Rep: Reputation: Disabled
Hi linuxmarble

Since you are using ubuntu or any other derivative of it. You can install terminology with these instructions from this site

http://www.webupd8.org/2013/04/termi...-emulator.html

Terminology is a ppa program which you need to add to your repos
 
Old 08-31-2014, 03:28 PM   #8
linuxmarble
Member
 
Registered: Aug 2014
Location: Deutschland
Distribution: Kali Linux
Posts: 44

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by initramfs View Post
Hi linuxmarble

Since you are using ubuntu or any other derivative of it. You can install terminology with these instructions from this site

http://www.webupd8.org/2013/04/termi...-emulator.html

Terminology is a ppa program which you need to add to your repos
Thank u But now I have this error and this is not the first time please look here

http://u.cubeupload.com/elfc/201408312212441920x1.png

and this

> sudo add-apt-repository ppa:hannes-janetzek/enlightenment-svn
[sudo] password for bfk:
Cannot add PPA: 'No JSON object could be decoded'.

Last edited by linuxmarble; 08-31-2014 at 03:32 PM.
 
Old 08-31-2014, 04:01 PM   #9
Hungry ghost
Senior Member
 
Registered: Dec 2004
Posts: 1,222

Rep: Reputation: 667Reputation: 667Reputation: 667Reputation: 667Reputation: 667Reputation: 667
If you follow the first method, you will need the gcc. You can install it with apt-get or aptitude.
 
Old 08-31-2014, 04:05 PM   #10
initramfs
LQ Newbie
 
Registered: Aug 2014
Posts: 27

Rep: Reputation: Disabled
It seems like the ppa from this developer isn't available for some unknown reason.

I did another google search and it seems the ppa for terminology is depended on the version of ubuntu you have.

Here is another link ( for ubuntu 14.04 )
http://askubuntu.com/questions/50872...n-ubuntu-14-04

In that article, this will install the latest version of terminology for ubuntu 14.04. It also mentions if you want the stable version of terminology you'll need an earlier version of ubuntu and you would replace ppa:enlightenment-git/ppa with ppa:efl/trunk ( use this ppa for ubuntu before 14.04 )
 
Old 08-31-2014, 04:09 PM   #11
linuxmarble
Member
 
Registered: Aug 2014
Location: Deutschland
Distribution: Kali Linux
Posts: 44

Original Poster
Rep: Reputation: Disabled
Post

Quote:
Originally Posted by odiseo77 View Post
If you follow the first method, you will need the gcc. You can install it with apt-get or aptitude.
It ran as u said But something at the end I dont know what it means please look But I did get the gcc

bfk@bfk-D900C:~/Downloads/efl-1.11.1 > ./configure
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking how to run the C preprocessor... gcc -E
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking minix/config.h usability... no
checking minix/config.h presence... no
checking for minix/config.h... no
checking whether it is safe to define __EXTENSIONS__... yes
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking for style of include used by make... GNU
checking whether make supports nested variables... yes
checking dependency style of gcc... gcc3
checking whether make supports nested variables... (cached) yes
configure: edje_cc set to
configure: eolian_gen set to
configure: eolian_cxx set to
configure: elua set to
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking for ar... ar
checking the archiver (ar) interface... ar
checking how to print strings... printf
checking for a sed that does not truncate output... /bin/sed
checking for fgrep... /bin/grep -F
checking for ld used by gcc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
checking the name lister (/usr/bin/nm -B) interface... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 1572864
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... func_convert_file_noop
checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... func_convert_file_noop
checking for /usr/bin/ld option to reload object files... -r
checking for objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for dlltool... no
checking how to associate runtime and link libraries... printf %s\n
checking for archiver @FILE support... @
checking for strip... strip
checking for ranlib... ranlib
checking command to parse /usr/bin/nm -B output from gcc object... ok
checking for sysroot... no
checking for mt... mt
checking if mt is a manifest tool... no
checking for dlfcn.h... yes
checking for objdir... .libs
checking if gcc supports -fno-rtti -fno-exceptions... no
checking for gcc option to produce PIC... -fPIC -DPIC
checking if gcc PIC flag -fPIC -DPIC works... yes
checking if gcc static flag -static works... yes
checking if gcc supports -c -o file.o... yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... no
configure: Initialized efl (1.11.1) development=27214
checking whether NLS is requested... yes
checking for msgfmt... /usr/bin/msgfmt
checking for gmsgfmt... /usr/bin/msgfmt
checking for xgettext... /usr/bin/xgettext
checking for msgmerge... /usr/bin/msgmerge
checking for ld used by GCC... /usr/bin/ld -m elf_x86_64
checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes
checking for shared library run path origin... done
checking for CFPreferencesCopyAppValue... no
checking for CFLocaleCopyCurrent... no
checking for GNU gettext in libc... yes
checking whether to use NLS... yes
checking where the gettext function comes from... libc
checking dependency style of gcc... gcc3
checking for g++... no
checking for c++... no
checking for gpp... no
checking for aCC... no
checking for CC... no
checking for cxx... no
checking for cc++... no
checking for cl.exe... no
checking for FCC... no
checking for KCC... no
checking for RCC... no
checking for xlC_r... no
checking for xlC... no
checking whether we are using the GNU C++ compiler... no
checking whether g++ accepts -g... no
checking dependency style of g++... none
checking for gcc... gcc
checking whether we are using the GNU Objective C compiler... no
checking whether gcc accepts -g... no
checking dependency style of gcc... gcc3
checking for gcc option to accept ISO C99... -std=gnu99
checking whether gcc -std=gnu99 and cc understand -c and -o together... yes
checking for a sed that does not truncate output... (cached) /bin/sed
configure: error: efl requires a C++ compiler got and g++.
~/Downloads/efl-1.11.1 >
 
Old 08-31-2014, 04:17 PM   #12
linuxmarble
Member
 
Registered: Aug 2014
Location: Deutschland
Distribution: Kali Linux
Posts: 44

Original Poster
Rep: Reputation: Disabled
UPDATE

I install C++ and g++ and then ran it again now i have this did it run corectly ????


checking whether NLS is requested... yes
checking for msgfmt... /usr/bin/msgfmt
checking for gmsgfmt... /usr/bin/msgfmt
checking for xgettext... /usr/bin/xgettext
checking for msgmerge... /usr/bin/msgmerge
checking for ld used by GCC... /usr/bin/ld -m elf_x86_64
checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes
checking for shared library run path origin... done
checking for CFPreferencesCopyAppValue... no
checking for CFLocaleCopyCurrent... no
checking for GNU gettext in libc... yes
checking whether to use NLS... yes
checking where the gettext function comes from... libc
checking dependency style of gcc... gcc3
checking for g++... g++
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking dependency style of g++... gcc3
checking how to run the C++ preprocessor... g++ -E
checking for ld used by g++... /usr/bin/ld -m elf_x86_64
checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes
checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking for g++ option to produce PIC... -fPIC -DPIC
checking if g++ PIC flag -fPIC -DPIC works... yes
checking if g++ static flag -static works... yes
checking if g++ supports -c -o file.o... yes
checking if g++ supports -c -o file.o... (cached) yes
checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking dynamic linker characteristics... (cached) GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking for gcc... gcc
checking whether we are using the GNU Objective C compiler... no
checking whether gcc accepts -g... no
checking dependency style of gcc... gcc3
checking for gcc option to accept ISO C99... -std=gnu99
checking whether gcc -std=gnu99 and cc understand -c and -o together... yes
checking for a sed that does not truncate output... (cached) /bin/sed
checking for special C compiler options needed for large files... no
checking for _FILE_OFFSET_BITS value needed for large files... no
checking for pkg-config... no
configure: error: pkg-config tool not found. Install it or set PKG_CONFIG environment variable to that path tool. Exiting...
bfk-D900C efl-1.11.1 #
 
Old 08-31-2014, 04:18 PM   #13
Hungry ghost
Senior Member
 
Registered: Dec 2004
Posts: 1,222

Rep: Reputation: 667Reputation: 667Reputation: 667Reputation: 667Reputation: 667Reputation: 667
Ok, now you need to install pkg-config and run the configure script again.
 
Old 09-01-2014, 12:39 AM   #14
linuxmarble
Member
 
Registered: Aug 2014
Location: Deutschland
Distribution: Kali Linux
Posts: 44

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by odiseo77 View Post
Ok, now you need to install pkg-config and run the configure script again.

Ok Great It wont through but now it wont take the make and make install please look



checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes
checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking for g++ option to produce PIC... -fPIC -DPIC
checking if g++ PIC flag -fPIC -DPIC works... yes
checking if g++ static flag -static works... yes
checking if g++ supports -c -o file.o... yes
checking if g++ supports -c -o file.o... (cached) yes
checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking dynamic linker characteristics... (cached) GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking for gcc... gcc
checking whether we are using the GNU Objective C compiler... no
checking whether gcc accepts -g... no
checking dependency style of gcc... gcc3
checking for gcc option to accept ISO C99... -std=gnu99
checking whether gcc -std=gnu99 and cc understand -c and -o together... yes
checking for a sed that does not truncate output... (cached) /bin/sed
checking for special C compiler options needed for large files... no
checking for _FILE_OFFSET_BITS value needed for large files... no
checking for pkg-config... /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking for doxygen... no
WARNING:
The doxygen program was not found in your execute
You may have doxygen installed somewhere not covered by your path.

If this is the case make sure you have the packages installed, AND
that the doxygen program is in your execute path (see your
shell manual page on setting the $PATH environment variable), OR
alternatively, specify the program to use with --with-doxygen.
configure: WARNING: Warning: no doxygen detected. Documentation will not be built
configure: error: pkg-config missing openssl
bfk@bfk-D900C:~/Downloads/efl-1.11.1 > make
make: *** No targets specified and no makefile found. Stop.
bfk@bfk-D900C:~/Downloads/efl-1.11.1 > make install
make: *** No rule to make target `install'. Stop.
bfk@bfk-D900C:~/Downloads/efl-1.11.1 >
 
Old 09-01-2014, 12:57 PM   #15
initramfs
LQ Newbie
 
Registered: Aug 2014
Posts: 27

Rep: Reputation: Disabled
@ linuxmarble

I have linux Mint 17 running in a VM and I decided to try the second link I gave you.
http://askubuntu.com/questions/50872...n-ubuntu-14-04

I followed the exact instructions in the article
Code:
sudo add-apt-repository ppa:enlightenment-git/ppa
sudo apt-get update
sudo apt-get install terminology
And it work!. Since this worked in Mint, it should work in ubuntu or any other derivative of ubuntu/debian.

Last edited by initramfs; 09-01-2014 at 04:47 PM.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
How to check a program that was installed via configure, make and make install linuxandtsm Linux - Newbie 1 04-06-2012 02:41 PM
these commands are not working on my server (./configure, make, make install) Anil Kumar K Linux - Software 3 07-02-2007 07:23 AM
configure, make and make install commands don't work for me Fenster Fedora 8 08-18-2004 10:58 AM
Can I automate the tar, ./configure, make, and make install of about 50 packages? JoeLinux Linux - General 2 04-13-2002 03:35 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 10:20 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration