LinuxQuestions.org
Visit Jeremy's Blog.
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 01-03-2005, 06:02 PM   #1
darkarcon2015
Member
 
Registered: Jun 2004
Location: Potsdam, NY
Distribution: Fedora Core 6
Posts: 201

Rep: Reputation: 30
Problem with Kernel Installation...


Note: I have followed the tutorials that are stickied at the top of this forum.

I went to upgrade my kernel from 2.4.26 to 2.6.10 and I followed the steps in the above tutorials but when I go to "make" it I get a bunch of stuff like this:

Code:
make -C /usr/src/linux-2.6.10 O=/usr/src/linux-2.6.10
...
make[580]: *** [all]Interrupt
...
make[1] *** [all]Interrupt
make: *** [all] Interrupt
Once it reaches [1] it just stops. I'm not sure what is causing this, any help is appreciated.

EDIT: Also, when I make any type of kernel configuration program (oldconfig, menuconfig, xconfig) when it gets to a certain point, all of a sudden a program that I makde myself in C++ (compiled with g++) starts itself. When I exit that program the configurator continues as normal. Would this strange problem having anything to do with this?

Last edited by darkarcon2015; 01-03-2005 at 06:19 PM.
 
Old 01-03-2005, 06:54 PM   #2
Cedrik
Senior Member
 
Registered: Jul 2004
Distribution: Slackware
Posts: 2,140

Rep: Reputation: 244Reputation: 244Reputation: 244
Just curious, what is the name of your program ?
 
Old 01-03-2005, 06:58 PM   #3
darkarcon2015
Member
 
Registered: Jun 2004
Location: Potsdam, NY
Distribution: Fedora Core 6
Posts: 201

Original Poster
Rep: Reputation: 30
"FPS-3.cpp" is the source file name, and the file that it created in the build was "a.out".
 
Old 01-03-2005, 07:18 PM   #4
Cedrik
Senior Member
 
Registered: Jul 2004
Distribution: Slackware
Posts: 2,140

Rep: Reputation: 244Reputation: 244Reputation: 244
Could you post your output for :

gcc -v
g++ -v

(the last line)
 
Old 01-03-2005, 07:20 PM   #5
darkarcon2015
Member
 
Registered: Jun 2004
Location: Potsdam, NY
Distribution: Fedora Core 6
Posts: 201

Original Poster
Rep: Reputation: 30
This is strange, I just checked my Makefile after all this and it has changed to this following:

Code:
# Automatically generated by /usr/src/linux-2.6.10/scripts/mkmakefile: don't edit

VERSION = 2
PATCHLEVEL = 6

KERNELSRC    := /usr/src/linux-2.6.10
KERNELOUTPUT := /usr/src/linux-2.6.10

MAKEFLAGS += --no-print-directory

all:
	$(MAKE) -C $(KERNELSRC) O=$(KERNELOUTPUT)

%::
	$(MAKE) -C $(KERNELSRC) O=$(KERNELOUTPUT) $@
Very strange, just before the "make" it looked like a normal kernel Makefile.
 
Old 01-03-2005, 07:24 PM   #6
darkarcon2015
Member
 
Registered: Jun 2004
Location: Potsdam, NY
Distribution: Fedora Core 6
Posts: 201

Original Poster
Rep: Reputation: 30
Quote:
Originally posted by Cedrik
Could you post your output for :

gcc -v
g++ -v

(the last line)
Thys both say "gcc version 3.3.4."
 
Old 01-03-2005, 07:25 PM   #7
Cedrik
Senior Member
 
Registered: Jul 2004
Distribution: Slackware
Posts: 2,140

Rep: Reputation: 244Reputation: 244Reputation: 244
What is a 'normal' Makefile for you ?
Could you try: make menuconfig 2> errors_logged ?

Last edited by Cedrik; 01-03-2005 at 07:26 PM.
 
Old 01-03-2005, 07:31 PM   #8
darkarcon2015
Member
 
Registered: Jun 2004
Location: Potsdam, NY
Distribution: Fedora Core 6
Posts: 201

Original Poster
Rep: Reputation: 30
Quote:
Originally posted by Cedrik
What is a 'normal' Makefile for you ?
Could you try: make menuconfig 2> errors_logged ?
Normal as in this:

http://cosmotron.homeip.net/files/Makefile

And when I type in "make menuconfig 2> errors_logged" I get a ">" prompt and sits at that.
 
Old 01-03-2005, 07:34 PM   #9
Cedrik
Senior Member
 
Registered: Jul 2004
Distribution: Slackware
Posts: 2,140

Rep: Reputation: 244Reputation: 244Reputation: 244
in which directory are you ?
pwd

also if you see a file named 'errors_logged' in this directory, could you post the first line (and
maybe 3 or 4 more)
 
Old 01-03-2005, 07:38 PM   #10
darkarcon2015
Member
 
Registered: Jun 2004
Location: Potsdam, NY
Distribution: Fedora Core 6
Posts: 201

Original Poster
Rep: Reputation: 30
Quote:
Originally posted by Cedrik
in which directory are you ?
pwd

also if you see a file named 'errors_logged' in this directory, could you post the first line (and
maybe 3 or 4 more)
I was in the directory "/usr/src/linux". And I don't see a "pwd" direcory.
 
Old 01-03-2005, 07:39 PM   #11
Cedrik
Senior Member
 
Registered: Jul 2004
Distribution: Slackware
Posts: 2,140

Rep: Reputation: 244Reputation: 244Reputation: 244
pwd is a command, when you type pwd you see exactly where you are.

could you post the output of pwd ?
 
Old 01-03-2005, 07:45 PM   #12
darkarcon2015
Member
 
Registered: Jun 2004
Location: Potsdam, NY
Distribution: Fedora Core 6
Posts: 201

Original Poster
Rep: Reputation: 30
Quote:
Originally posted by Cedrik
pwd is a command, when you type pwd you see exactly where you are.

could you post the output of pwd ?
Um, it said "/usr/src/linux", what I said above and there is not file in that directory called "errors_logged".

Last edited by darkarcon2015; 01-03-2005 at 07:55 PM.
 
Old 01-03-2005, 07:55 PM   #13
darkarcon2015
Member
 
Registered: Jun 2004
Location: Potsdam, NY
Distribution: Fedora Core 6
Posts: 201

Original Poster
Rep: Reputation: 30
Okay, I got the errors_logged file, you can view it here:

http://cosmotron.homeip.net/files/errors_logged
 
Old 01-04-2005, 09:05 AM   #14
Cedrik
Senior Member
 
Registered: Jul 2004
Distribution: Slackware
Posts: 2,140

Rep: Reputation: 244Reputation: 244Reputation: 244
I cant access your server, could you post the 4 first lines instead (just open errors_logged file in
a text editor, select the lines, then clik with the middle mouse button here)
 
  


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
kernel problem after installation kpachopoulos Fedora 1 09-06-2005 04:20 AM
kernel installation problem hk_michael Red Hat 1 04-06-2005 01:39 AM
kernel installation problem? fredgt Linux - Software 2 11-18-2004 04:23 PM
installation problem with kernel halovivek Linux - Newbie 1 03-27-2004 12:52 PM
linux kernel installation problem mahi1978 Linux - Software 1 08-06-2001 01:02 PM

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

All times are GMT -5. The time now is 01:28 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