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 |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
 |
GNU/Linux Basic Guide
This 255-page guide will provide you with the keys to understand the philosophy of free software, teach you how to use and handle it, and give you the tools required to move easily in the world of GNU/Linux. Many users and administrators will be taking their first steps with this GNU/Linux Basic guide and it will show you how to approach and solve the problems you encounter.
Click Here to receive this Complete Guide absolutely free. |
|
 |
08-12-2005, 04:21 PM
|
#1
|
|
Member
Registered: Aug 2005
Location: Moscow
Distribution: Slackware 10.2
Posts: 33
Rep:
|
How do I install software trough the command line ???
Hi,
I know that's a very silly question, but I am having troubles to install softwares in my Mandriva Linux. For example, at the moment I am trying to install "Neuroscope - 1.2.3". But this happens with nearly all software I try to install. I can extract the downloaded file and type ./configure. No problems... But when I type make or make install I keep getting this message:
make: *** No targets specified and no makefile found. Stop.
????
Does anyone know what's wrong? Is there anyway of installing software trough a graphical interface?
Thanks for the help!

Last edited by ivancauso; 08-13-2005 at 03:21 AM.
|
|
|
|
08-12-2005, 04:30 PM
|
#2
|
|
Member
Registered: Apr 2005
Distribution: Ubuntu
Posts: 70
Rep:
|
saving
from what i know(not too much):
1)create an empty directory or have one existing where you want the data to go to.
2)mount the cd using 'mnt /dev/hda' (/dev/hda might be different on your system. look in /etc/fstab to see what your cd-rom drive is called)
3) copy the contents of the cd from one directory to the other using 'cp':
'cp /dev/hda <otherdirectory>' where <otherdirectory> is the directory you want the data.
(i hope im right  - good luck)
|
|
|
|
08-12-2005, 04:36 PM
|
#3
|
|
Member
Registered: Aug 2005
Location: Moscow
Distribution: Slackware 10.2
Posts: 33
Original Poster
Rep:
|
I have the dowloaded file already in the disk... It was compacted... I then extracted but cannot install the program! But I didn't know how to install from the CD anyway  ! So thanks for the tip!
|
|
|
|
08-12-2005, 05:30 PM
|
#4
|
|
Senior Member
Registered: Jul 2005
Distribution: Slackware
Posts: 2,006
Rep: 
|
what does the last ten lines of ./configure say?
|
|
|
|
08-13-2005, 03:18 AM
|
#5
|
|
Member
Registered: Aug 2005
Location: Moscow
Distribution: Slackware 10.2
Posts: 33
Original Poster
Rep:
|
Here are the last ten lines of ./configure:
checking for Qt... libraries /usr/lib/qt3//lib, headers /usr/lib/qt3//include using -mt
checking for moc... /usr/lib/qt3//bin/moc
checking for uic... /usr/lib/qt3//bin/uic
checking whether uic supports -L ... yes
checking whether uic supports -nounload ... yes
checking if Qt needs -ljpeg... no
checking for rpath... yes
checking for KDE... configure: error:
in the prefix, you've chosen, are no KDE headers installed. This will fail.
So, check this please and use another prefix!
[root@ivan neuroscope-1.3.1]#
|
|
|
|
08-13-2005, 03:52 AM
|
#6
|
|
Guru
Registered: Jan 2002
Posts: 6,042
Rep: 
|
Like the error said you will need the KDE headers installed. While you are at it, install headers for gnome, xorg, kernel, png, jpg, gif, obdc, and a few others.
|
|
|
|
08-13-2005, 04:57 AM
|
#7
|
|
Senior Member
Registered: Jan 2005
Distribution: Slackware, BackTrack, Windows XP
Posts: 1,020
Rep:
|
Hello Electro,
me too faced and still facing such type of problems.....
so could you please tell me how to install header for them..
i hope it must be from the cd from which the distribution has been installed ( but if it is to be from the cd.......then why problem is occuring ??? b'coz i did the full installation)
regards
|
|
|
|
08-13-2005, 08:40 AM
|
#8
|
|
Guru
Registered: May 2003
Location: INDIA
Distribution: Ubuntu, Solaris,CentOS
Posts: 5,522
Rep:
|
u need to install kde-libs
and if that is installed in /usr/kde or /usr/lib/kde or /opt/kde u need to install ur S/W as
./configure --prefix=/opt/kde
regards
|
|
|
|
08-13-2005, 10:02 AM
|
#9
|
|
Senior Member
Registered: Jul 2005
Distribution: Slackware
Posts: 2,006
Rep: 
|
No, KDE software usually knows to look for KDE in /opt and install in /usr/local. I also recommend that you install all of the *-devel-* stuff you can find if you have not already and post the last ten lines of ./configure again.
|
|
|
|
08-15-2005, 05:25 PM
|
#10
|
|
Member
Registered: Aug 2005
Location: Moscow
Distribution: Slackware 10.2
Posts: 33
Original Poster
Rep:
|
I had a look, and I am pretty sure I have the KDE libs installed in the directory: /usr/lib/kde3
So I tryed to install using the command ./configure --prefix=/usr/lib/kde3, at the end I get the exact same message as in the previous post... ??? The exact same thing happens when I try to install the program kstars-1.1 . But anyway, how do I install all those libraries and how do I install all those *-devel-* stuff??? Thanks for all tips!
 HELP!!!
|
|
|
|
08-15-2005, 05:44 PM
|
#11
|
|
Senior Member
Registered: Jul 2005
Distribution: Slackware
Posts: 2,006
Rep: 
|
*-devel-* refers to any package with "devel" in their name. You have to install those for KDE for now, but you may want to install other things that need other devel packages, so you are better of installing them all. It is installation problems like these that made me switch to Slackware.
|
|
|
|
08-16-2005, 06:32 AM
|
#12
|
|
Guru
Registered: Nov 2003
Location: N. E. England
Distribution: Fedora, CentOS, Debian
Posts: 16,298
Rep:
|
Take a look at my posts in this thread for a solution to your problem.
|
|
|
|
08-16-2005, 10:59 PM
|
#13
|
|
Member
Registered: Aug 2005
Location: Moscow
Distribution: Slackware 10.2
Posts: 33
Original Poster
Rep:
|
Ok, it works!!!
Thanks everybody for the HELP! Reddazz, the thread was VERY helpful! I installed the libs and no problems to install software now! So thanks a lot! Can I install all the other libraries (mentioned in the thread above - xorg, GNOME, etc) in the same way? Should I?
Last edited by ivancauso; 08-17-2005 at 11:57 AM.
|
|
|
|
| Thread Tools |
Search this Thread |
|
|
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT -5. The time now is 06:39 PM.
|
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|