LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 09-13-2003, 03:09 PM   #1
foxy17
LQ Newbie
 
Registered: Sep 2003
Distribution: Slackware 8.1
Posts: 5

Rep: Reputation: 0
Question problem with executing "make menuconfig"


I'm running Slackware 8.1 with default kernel (2.4.18) and using textmode only.
I wanted to compile a new kernel just to learn how to do it but I face one problem:
I wanted to use 'make menuconfig' command but I get the message that I have to install "Ncurses" which is already installed. I checked it with 'pkgtool'.
My system must be missing sth. but it's not ncurses for sure.

Thanks in advance for any hints.
 
Old 09-13-2003, 03:40 PM   #2
MasterC
LQ Guru
 
Registered: Mar 2002
Location: Salt Lake City, UT - USA
Distribution: Gentoo ; LFS ; Kubuntu ; CentOS ; Raspbian
Posts: 12,613

Rep: Reputation: 69
The actual error message might be of some benefit to us

Just for good measure, maybe you'd like to grab:
ftp://ftp-linux.cc.gatech.edu/pub/Li...5.2-i386-4.tgz

And:
installpkg ncurses-5.2-i386-4.tgz

Just to make sure it's installed.

Cool
 
Old 09-13-2003, 04:25 PM   #3
foxy17
LQ Newbie
 
Registered: Sep 2003
Distribution: Slackware 8.1
Posts: 5

Original Poster
Rep: Reputation: 0
Thanks for your instant reply !!!
As I told you Ncurses was installed. I installed it again but it obviously didn't change anything.
Here is the command and the error message:

root@lisu:/usr/src/linux-2.4.18# make menuconfig
rm -f include/asm
( cd include ; ln -sf asm-i386 asm)
make -C scripts/lxdialog all
make[1]: Entering directory `/usr/src/linux-2.4.18/scripts/lxdialog'
/usr/i386-slackware-linux/bin/ld: cannot open crt1.o: No such file or directory
collect2: ld returned 1 exit status
>> Unable to find the Ncurses libraries.
>> You must have Ncurses installed in order
>>to use 'make menuconfig'
make[1]: *** [ncurses] Error 1
make[1]: Leaving directory `/usr/src/linux-2.4.18/scripts/lxdialog'
make: *** [menuconfig] Error
I was looking for crt1.o anywhere on the hd but couldn't find it.
I suppose it's sth. about the term but i can't fix it .

Any hints would be very apreciated
 
Old 09-13-2003, 05:50 PM   #4
acid_kewpie
Moderator
 
Registered: Jun 2001
Location: UK
Distribution: Gentoo, RHEL, Fedora, Centos
Posts: 43,417

Rep: Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985
hint: install ncurses
 
Old 09-13-2003, 06:01 PM   #5
MasterC
LQ Guru
 
Registered: Mar 2002
Location: Salt Lake City, UT - USA
Distribution: Gentoo ; LFS ; Kubuntu ; CentOS ; Raspbian
Posts: 12,613

Rep: Reputation: 69
Thanks Chris, seems like it's not working properly apparently?

Foxy, as root type:
updatedb &&
locate *ncurses

And see what you come up with. If you don't find anything solid, then maybe you are installing it incorrectly? Be sure to use installpkg OR pkgtool to install from your CD or the FTP above, and then, check with pkgtool to ensure it installed correctly.



Alternatively, after installing/reinstalled, remember to run:
ldconfig
to update the libs.

HTH

Cool
 
Old 09-14-2003, 02:54 AM   #6
foxy17
LQ Newbie
 
Registered: Sep 2003
Distribution: Slackware 8.1
Posts: 5

Original Poster
Rep: Reputation: 0
Thumbs down

Gentlmen ....
Believe me, it's impossible to install sth wrong using pkgtool. I have 'ncurses' installed for 1000 %. If it wasn't installed , the very pkgtool wouldn't work (as I found out uninstalling ncurses and installing it again).
I also tried 'ldconfig' but with no luck ...
It must be sth else that is missing. I don't have the slightest idea what it is.
During installation I had chosen only 'necessary packages' recommended by a "slack-guru'
Cheers for your 'efforts' ....

foxy17
 
Old 09-14-2003, 03:53 AM   #7
Cerbere
Member
 
Registered: Dec 2002
Location: California
Distribution: Slackware & LFS
Posts: 799

Rep: Reputation: 33
There is a file called MANIFEST.gz in the slakware directory of your install disk which lists all the files that are in all the slack packages, sorted by package. If you gunzip this file, you can then search for crt1.o and you'll find (as I did) that it's in the glibc.tgz package in the d1 directory. It'd probably be pretty hard to compile a kernel without this package even if you got past the config.

So much for gurus ;-)

Enjoy!
--- Cerbere
 
Old 09-14-2003, 04:32 AM   #8
foxy17
LQ Newbie
 
Registered: Sep 2003
Distribution: Slackware 8.1
Posts: 5

Original Poster
Rep: Reputation: 0
Actually , there are several glibc*.tgz packages so I've reinstalled them all and finally it worked. Now I can try to recompile my kernel to slim it a bit.
Thanks Cerbere and I promise to use Manifest.gz in the future

foxy17
 
Old 09-14-2003, 06:40 AM   #9
MasterC
LQ Guru
 
Registered: Mar 2002
Location: Salt Lake City, UT - USA
Distribution: Gentoo ; LFS ; Kubuntu ; CentOS ; Raspbian
Posts: 12,613

Rep: Reputation: 69
Woohoo! Good job Cerbere

Congratulations foxy

Cool
 
Old 09-14-2003, 07:17 AM   #10
foxy17
LQ Newbie
 
Registered: Sep 2003
Distribution: Slackware 8.1
Posts: 5

Original Poster
Rep: Reputation: 0
Thanks MasterC ....

The more we learn the more convinced we become that we know little.
 
  


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
Is it possible to use "make menuconfig" ONLY for new options after a Kernel upgrade ? nasty_daemon Linux - General 9 09-08-2005 11:21 AM
Errors Trying to "make menuconfig" kernel-source-2.6.10 Royle Debian 2 02-14-2005 06:53 AM
"Make menuconfig" error Linuxshark Linux - Software 5 09-15-2004 04:44 PM
Slack 9.1 & "make menuconfig" options bawbag Slackware 3 10-08-2003 02:49 AM
debian woody: error at "make menuconfig" Lingo Linux - Newbie 3 11-29-2002 05:10 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 11:57 AM.

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