make-kpkg doesn't work properly when compiling i386 kernel on amd64 host

2013-04-17 Thread 曹思亮
Hello, I am trying to build a kernel for my i386 PC on a amd64 server. I follow a old instrusion at http://lists.debian.org/debian-user/2008/07/msg00926.html . It can build the kernel itself correctly, but the problem is script tools such as genksyms are build as amd64 format. I notice that Linux

Re: make-kpkg doesn't work properly when compiling i386 kernel on amd64 host

2013-04-17 Thread Linux-Fan
On 04/17/2013 12:44 PM, 曹思亮 wrote: Hello, I am trying to build a kernel for my i386 PC on a amd64 server. You might also try to build it inside an i386 chroot-environment on your amd64 server. I follow a old instrusion at http://lists.debian.org/debian-user/2008/07/msg00926.html . It can

Re: make-kpkg doesn't work properly when compiling i386 kernel on amd64 host

2013-04-17 Thread Miquel van Smoorenburg
In article xs4all.CAHurxuitAusyBJ9aqo0-Ncegvp4wHXb_dxdSjJQue-FF=_k...@mail.gmail.com you write: Hello, I am trying to build a kernel for my i386 PC on a amd64 server. I follow a old instrusion at http://lists.debian.org/debian-user/2008/07/msg00926.html . It can build the kernel itself

Re: Debian way of compiling a kernel.

2011-02-10 Thread Boyd Stephen Smith Jr.
In 20110209223754.5fa03...@ws82.int.tlc, Dan Serban wrote: I ask. What is the real ... accepted ... and suggested method that I follow, I don't understand why kernel-package looks deprecated, or what have you, but any information would be appreciated. If you want to use Debian's configuration

Re: Debian way of compiling a kernel.

2011-02-10 Thread Sven Joachim
On 2011-02-10 09:18 +0100, Boyd Stephen Smith Jr. wrote: If you just want a .deb to install, I've heard there's a makefile target in the kernel tarball that works fine. That target is called deb-pkg, i.e. you type make deb-pkg and get a nice Debian package. I believe but can't confirm that

Re: Debian way of compiling a kernel.

2011-02-10 Thread Jochen Schulz
Boyd Stephen Smith Jr.: If you just want a .deb to install, I've heard there's a makefile target in the kernel tarball that works fine. I believe but can't confirm that the .debs generated by the makefile in the kernel tarball will properly invoke the postint scripts that are used to

Re: Debian way of compiling a kernel.

2011-02-10 Thread Arthur Machlas
Ughn.. think google just discarded my post instead of sending. Don't want to retype; but here's the link: http://users.wowway.com/~zlinuxman/Kernel.htm -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org

Debian way of compiling a kernel.

2011-02-09 Thread Dan Serban
Ages ago, when amd64 wasn't part of the debian collection, I used to compile kernels myself using make-kpkg. This worked wonderfully, when I had to debug driver patches etc. (all is now of course stable). Since then I've forgotten this process, but this is not my problem. I wanted to test a

Re: Trouble compiling generic kernel

2010-07-26 Thread Curt Howland
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Monday 26 July 2010, Sven Joachim svenj...@gmx.de was heard to say: You need to install the fakeroot package to build Debian packages as an ordinary user.  In Squeeze, dpkg-dev recommends fakeroot for that reason. Well, that solves that

Re: Trouble compiling generic kernel

2010-07-26 Thread Sven Joachim
On 2010-07-26 14:00 +0200, Curt Howland wrote: On Monday 26 July 2010, Sven Joachim svenj...@gmx.de was heard to say: You need to install the fakeroot package to build Debian packages as an ordinary user.  In Squeeze, dpkg-dev recommends fakeroot for that reason. Well, that solves that

Re: Trouble compiling generic kernel

2010-07-26 Thread Dave Witbrodt
On 07/26/2010 11:04 AM, Sven Joachim wrote: There's another advice I need to give: while dpkg-dev will automatically use fakeroot when necessary, make-kpkg currently does not unless you set ROOT_CMD=fakeroot in the environment. You can put this setting into ~/.kernel-pkg.conf (I have it there

Re: Trouble compiling generic kernel

2010-07-25 Thread Sven Joachim
On 2010-07-25 05:22 +0200, Stan Hoeppner wrote: Curt Howland put forth on 7/24/2010 8:49 PM: Not compiling often (as you can tell), I note that the compile is using only one cpu of 4 at a time. I'm sure there is a parallel compilation tweak somewhere. Setting CONCURRENCY_LEVEL=4 in your

Re: Trouble compiling generic kernel

2010-07-25 Thread Sven Joachim
On 2010-07-25 03:49 +0200, Curt Howland wrote: Not compiling often (as you can tell), I note that the compile is using only one cpu of 4 at a time. I'm sure there is a parallel compilation tweak somewhere. Yes, the -j switch for make. If you want to build a Debian package that you can

Re: Trouble compiling generic kernel

2010-07-25 Thread Curt Howland
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Sunday 25 July 2010, Sven Joachim svenj...@gmx.de was heard to say: Setting CONCURRENCY_LEVEL=4 in your user environment should fix this, at least, it used to. This only works if you use kernel-package to build the kernel.  The generic way

Re: Trouble compiling generic kernel

2010-07-25 Thread Rares Aioanei
On 07/25/2010 07:25 PM, Curt Howland wrote: == $ make-kpkg --revision=curt0.1 kernel_image {scrolled so many as I'm sure you know... Then,} make[1]: Leaving directory `/usr/src/linux-2.6.35-rc6' /usr/bin/make -j1 ARCH=i386 \ -C Documentation/lguest

Re: Trouble compiling generic kernel

2010-07-25 Thread Sven Joachim
On 2010-07-25 18:54 +0200, Rares Aioanei wrote: On 07/25/2010 07:25 PM, Curt Howland wrote: == $ make-kpkg --revision=curt0.1 kernel_image {scrolled so many as I'm sure you know... Then,} make[1]: Leaving directory `/usr/src/linux-2.6.35-rc6' /usr/bin/make -j1 ARCH=i386 \

Re: Trouble compiling generic kernel

2010-07-25 Thread Sven Joachim
On 2010-07-25 18:25 +0200, Curt Howland wrote: Now on to something new: Build failure! Who'd'a thought? I changed back to single-concurrency just to make sure that it wasn't related, make clean, then tried again with the same result. Any suggestions? == $ make-kpkg

Re: Trouble compiling generic kernel

2010-07-25 Thread Curt Howland
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Sunday 25 July 2010, Rares Aioanei was heard to say: If you are certain that the kernel tree isn't missing some files, then this is a situation for bugzilla.kernel.org . :) As certain as I can be, having been careful not to delete anything.

Re: Trouble compiling generic kernel

2010-07-25 Thread Curt Howland
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Sunday 25 July 2010, Rares Aioanei was heard to say: If you are certain that the kernel tree isn't missing some files, then this is a situation for bugzilla.kernel.org . :) Well, no, it must be just me. I pulled down and tried the 2.6.34.1

Re: Trouble compiling generic kernel

2010-07-25 Thread Curt Howland
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Sunday 25 July 2010, Sven Joachim svenj...@gmx.de was heard to say: Not really.  The libc6-dev package is too old, lacking sys/eventfd. Got it. I will give up with this machine. I don't want to upgrade to Squeeze due to preferring KDE3. Curt-

Re: Trouble compiling generic kernel

2010-07-25 Thread Curt Howland
Well, I've run into another problem with the compile that folks might find interesting. All while running as the only user account on this machine (other than root), I ran into a very interesting permissions error at the end of the make-kpkg kernel_image process. I did the compile as root

Re: Trouble compiling generic kernel

2010-07-25 Thread Angus Hedger
On Mon, Jul 26, 2010 at 2:32 AM, Curt Howland howl...@priss.com wrote: Well, I've run into another problem with the compile that folks might find interesting. All while running as the only user account on this machine (other than root), I ran into a very interesting permissions error at the

Re: Trouble compiling generic kernel

2010-07-25 Thread Sven Joachim
On 2010-07-26 03:32 +0200, Curt Howland wrote: Well, I've run into another problem with the compile that folks might find interesting. All while running as the only user account on this machine (other than root), I ran into a very interesting permissions error at the end of the make-kpkg

Trouble compiling generic kernel

2010-07-24 Thread Curt Howland
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi. Lenny, up to date with security and backports. I pulled down 2.6.35-rc6.tar.bz2 from kernel.org, and would like to try compiling it to see what's Coming Soon To A Disto Near Me. Its been about 9 years since the last time I compiled a kernel,

Re: Trouble compiling generic kernel

2010-07-24 Thread Sven Joachim
On 2010-07-24 22:26 +0200, Curt Howland wrote: Hi. Lenny, up to date with security and backports. I pulled down 2.6.35-rc6.tar.bz2 from kernel.org, and would like to try compiling it to see what's Coming Soon To A Disto Near Me. Its been about 9 years since the last time I compiled a

Re: Trouble compiling generic kernel

2010-07-24 Thread John Hasler
Curt writes: I was surprised with the failure of menuconfig, since I have all of ncurses installed and the ncurses-devel suggestion isn't a Debian package name anyway. Suggestions? libncurses5-dev -- John Hasler -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a

Re: Trouble compiling generic kernel

2010-07-24 Thread Curt Howland
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Saturday 24 July 2010, Sven Joachim svenj...@gmx.de was heard to say: Suggestions? Install libncurses5-dev and use make menuconfig or make nconfig (the latter is new in 2.6.35). Got it, and it works fine. Thank you. Not compiling often (as

Re: Trouble compiling generic kernel

2010-07-24 Thread Stan Hoeppner
Curt Howland put forth on 7/24/2010 8:49 PM: Not compiling often (as you can tell), I note that the compile is using only one cpu of 4 at a time. I'm sure there is a parallel compilation tweak somewhere. Setting CONCURRENCY_LEVEL=4 in your user environment should fix this, at least, it used

RE: Trouble compiling generic kernel

2010-07-24 Thread Mike Viau
On Sat, 24 Jul 2010 22:22:29 -0500 s...@hardwarefreak.com wrote: Setting CONCURRENCY_LEVEL=4 in your user environment should fix this, at least, it used to. From the bash command line, for the current session only: export CONCURRENCY_LEVEL=4 To make it permanent you need to edit

Re: Trouble compiling generic kernel

2010-07-24 Thread Celejar
On Sat, 24 Jul 2010 22:22:29 -0500 Stan Hoeppner s...@hardwarefreak.com wrote: Curt Howland put forth on 7/24/2010 8:49 PM: Not compiling often (as you can tell), I note that the compile is using only one cpu of 4 at a time. I'm sure there is a parallel compilation tweak somewhere.

Re: Compiling Linux kernel

2009-12-25 Thread Sven Joachim
On 2009-12-25 07:55 +0100, Daniel Bareiro wrote: Sorry to send this message twice, but I thought that for some reason it had not arrived at the list. Although it seems that both messages arrived with a delay of six hours. This can be due to some moderation of the list? This list is not

Re: Compiling Linux kernel

2009-12-25 Thread Daniel Bareiro
Hi, Sven. On Friday, 25 December 2009 09:53:53 +0100, Sven Joachim wrote: Sorry to send this message twice, but I thought that for some reason it had not arrived at the list. Although it seems that both messages arrived with a delay of six hours. This can be due to some moderation of the

Re: Compiling Linux kernel

2009-12-24 Thread Daniel Bareiro
On Wednesday, 23 December 2009 11:19:26 +0100, Sven Joachim wrote: b) Debian way compilation: b.1) Having booted an i386 kernel and userland 32: # cp /boot/config-`uname -r` ./.config # make ARCH=x86_64 menuconfig # fakeroot make-kpkg clean --cross-compile - -arch amd64 #

Re: Compiling Linux kernel

2009-12-24 Thread Stephen Powell
On 2009-12-17 at 21:32:59 -300, Daniel Bareiro wrote: Hi all! I am trying to compile Linux 2.6.32 with the source code of kernel.org. Kernel that I'm using at the moment is 2.6.26-2-686 of the Debian GNU/Linux repositories. In order to generate the configuration, I've copied the file

Re: Compiling Linux kernel

2009-12-24 Thread Daniel Bareiro
Hi, Sven. On Wednesday, 23 December 2009 11:19:26 +0100, Sven Joachim wrote: b) Debian way compilation: b.1) Having booted an i386 kernel and userland 32: # cp /boot/config-`uname -r` ./.config # make ARCH=x86_64 menuconfig # fakeroot make-kpkg clean --cross-compile - -arch

Re: Compiling Linux kernel

2009-12-24 Thread Daniel Bareiro
Sorry to send this message twice, but I thought that for some reason it had not arrived at the list. Although it seems that both messages arrived with a delay of six hours. This can be due to some moderation of the list? On Thursday, 24 December 2009 09:45:54 -0300, Daniel Bareiro wrote:

Re: Compiling Linux kernel

2009-12-23 Thread Daniel Bareiro
On Saturday, 19 December 2009 16:19:31 -0300, Daniel Bareiro wrote: I assume that it must have differences between both kernels versions; for that reason, as I've mentioned in another mail of this thread, after to have copied the file, I followed a similar procedure to which mentioned

Re: Compiling Linux kernel

2009-12-23 Thread Sven Joachim
On 2009-12-23 11:07 +0100, Daniel Bareiro wrote: Reading [1] and [2], I already found the cause of this problem. The configuration in Executable file formats / Emulations must be the following one in order to use a kernel x86_64 in userland 32. [*] Kernel support for ELF binaries [ ] Write

Re: Compiling Linux kernel

2009-12-19 Thread Daniel Bareiro
Hi, Sven. On Friday, 18 December 2009 17:34:22 +0100, Sven Joachim wrote: I was trying installing and booting 2.6.26-2-amd64 kernel and then compiling 2.6.32 kernel of the traditional way: # cd /usr/src/linux-2.6.32 # cp /boot/config-`uname -r` ./.config # make menuconfig # make

Re: Compiling Linux kernel

2009-12-18 Thread Sven Joachim
On 2009-12-18 01:32 +0100, Daniel Bareiro wrote: I am trying to compile Linux 2.6.32 with the source code of kernel.org. Kernel that I'm using at the moment is 2.6.26-2-686 of the Debian GNU/Linux repositories. In order to generate the configuration, I've copied the file corresponding to

Re: Compiling Linux kernel

2009-12-18 Thread Daniel Bareiro
kernel and then compiling 2.6.32 kernel of the traditional way: # cd /usr/src/linux-2.6.32 # cp /boot/config-`uname -r` ./.config # make menuconfig # make In this case I didn't use the ARCH=x86_64 variable and after to execute 'make menuselect' to select the configuration parameters, when invoking

Re: Compiling Linux kernel

2009-12-18 Thread Sven Joachim
On 2009-12-18 16:56 +0100, Daniel Bareiro wrote: I was trying installing and booting 2.6.26-2-amd64 kernel and then compiling 2.6.32 kernel of the traditional way: # cd /usr/src/linux-2.6.32 # cp /boot/config-`uname -r` ./.config # make menuconfig # make In this case I didn't use

Compiling Linux kernel

2009-12-17 Thread Daniel Bareiro
Hi all! I am trying to compile Linux 2.6.32 with the source code of kernel.org. Kernel that I'm using at the moment is 2.6.26-2-686 of the Debian GNU/Linux repositories. In order to generate the configuration, I've copied the file corresponding to this kernel to the directory of sources,

Re: Compiling Linux kernel

2009-12-17 Thread Kumar Appaiah
On Thu, Dec 17, 2009 at 09:32:59PM -0300, Daniel Bareiro wrote: Hi all! I am trying to compile Linux 2.6.32 with the source code of kernel.org. Kernel that I'm using at the moment is 2.6.26-2-686 of the Debian GNU/Linux repositories. In order to generate the configuration, I've copied the

Re: Compiling Linux kernel

2009-12-17 Thread Daniel Bareiro
Hi, Kumar. On Thursday, 17 December 2009 18:40:07 -0600, Kumar Appaiah wrote: I am trying to compile Linux 2.6.32 with the source code of kernel.org. Kernel that I'm using at the moment is 2.6.26-2-686 of the Debian GNU/Linux repositories. In order to generate the configuration, I've

Re: Compiling Linux kernel

2009-12-17 Thread Kumar Appaiah
On Thu, Dec 17, 2009 at 10:26:39PM -0300, Daniel Bareiro wrote: Well, the kernel build does check what your current config is, and based on that, asks you some new questions. One way I get around this is: cd kernel-build-directory cp /boot/config-$(uname -r) .config make menuconfig

Re: Compiling Linux kernel

2009-12-17 Thread Daniel Bareiro
Hi, Kumar. On Thursday, 17 December 2009 19:34:09 -0600, Kumar Appaiah wrote: On Thu, Dec 17, 2009 at 10:26:39PM -0300, Daniel Bareiro wrote: Well, the kernel build does check what your current config is, and based on that, asks you some new questions. One way I get around this is:

Re: Compiling Linux kernel

2009-12-17 Thread Kumar Appaiah
Dear Daniel, On Thu, Dec 17, 2009 at 11:41:11PM -0300, Daniel Bareiro wrote: [snip menuconfig discussion] This only works in the case of not using ARCH=x86_64 with make menuconfig in the second time that is invoked. But when not using this variable, the processor family returns to be like

Re: compiling a kernel from kernel.org [SOLVED]

2009-10-21 Thread Gregor Galwas
Hey, Thx everybody for your quick answers and friendly help. You were right. I removed all Xen options from the kernel config and linux-image-2.6.32-rc5_20091016-2_amd64.deb has been built. Installing it with dpkg -i ... worked fine. The only problem to be solved was the initrd. it has NOT

Re: compiling a kernel from kernel.org [SOLVED]

2009-10-21 Thread thveillon.debian
Gregor Galwas wrote: Hey, Thx everybody for your quick answers and friendly help. You were right. I removed all Xen options from the kernel config and linux-image-2.6.32-rc5_20091016-2_amd64.deb has been built. Installing it with dpkg -i ... worked fine. The only problem to be

Re: compiling a kernel from kernel.org [SOLVED]

2009-10-21 Thread Manoj Srivastava
On Wed, Oct 21 2009, Gregor Galwas wrote: The only problem to be solved was the initrd. it has NOT been generated by dpkg during the installation. so I generated it using mkinitramfs -c -k 2.6.32-rc5. worked fine. update-grub - worked fine as well. ,[ Manual page make-kpkg(1) ] |

compiling a kernel from kernel.org

2009-10-20 Thread Gregor Galwas
hello, in the new last days I've been trying to compile a recent kernel from kernel.org I fetched a kernel from http://www.kernel.org/ mainline: 2.6.32-rc5 2009-10-16 [Full Source] http://www.kernel.org/pub/linux/kernel/v2.6/testing/linux-2.6.32-rc5.tar.bz2 unpacked it

Re: compiling a kernel from kernel.org

2009-10-20 Thread Manoj Srivastava
Hi, Well, firstly, if you are going to be using the buildpackage target, instead of the far faster kernel_image target, you should either configure /etc/kernel-pkg.conf, adding your name and email, and have that in a keyring your gpg knows about, or pass the --us and --uc arguments on

problem compiling new kernel

2009-08-28 Thread bdebreil
Hi to Everyone, With my old SARGE system, as stated here last week, I was unable to boot newly compiled kernels, most likely because of the faulty initrd.img that I got using 'mkinitrd'. For this reason, I decided to install Lenny. Now, with Lenny, I haven't so far been able to go any further

Re: problem compiling new kernel

2009-08-28 Thread Niu Kun
bdebreil 写道: Hi to Everyone, With my old SARGE system, as stated here last week, I was unable to boot newly compiled kernels, most likely because of the faulty initrd.img that I got using 'mkinitrd'. For this reason, I decided to install Lenny. Now, with Lenny, I haven't so far been able to go

Re: problem compiling new kernel

2009-08-28 Thread Celejar
On Fri, 28 Aug 2009 19:07:45 +0800 Niu Kun haoniu...@gmail.com wrote: bdebreil 写道: ... Now, with Lenny, I haven't so far been able to go any further in recompiling usable kernels. 2.6.30.4 did compile without errors, but then I found that I had no 'mkinitrd' on my new system. How am I to

Re: problem compiling new kernel

2009-08-28 Thread Manoj Srivastava
On Fri, Aug 28 2009, Celejar wrote: Assuming that you're building kernel packages with kernel-package, you may be being hit by this: The image postinst no longer runs the initramfs creation commands. Instead, there are example scripts provided that will perform the task. These scripts will

Problem compiling custom kernel on debian

2009-04-21 Thread Divick Kishore
Hi,     I am trying to compile Linux kernel 2.6.29-1 as described here http://kernel-handbook.alioth.debian.org/ch-common-tasks.html, section 4.4, i.e. I copy the /boot/config-2.6.26-1-686 to untarred linux kernel directory as .config and after doing make menuconfig, when I try to do make-kpkg

Re: Problem compiling custom kernel on debian

2009-04-21 Thread Jochen Schulz
Divick Kishore: make-kpkg clean I get error that file system is read only. Somehow just before running this command, the file system wasn´t readonly but after running this, my file system has become read only. Your problem is most probably unrelated to your building a kernel. Take a look

Re: Problem compiling custom kernel on debian

2009-04-21 Thread Divick Kishore
Hi, On Tue, Apr 21, 2009 at 1:22 PM, Jochen Schulz m...@well-adjusted.de wrote: Your problem is most probably unrelated to your building a kernel. Take a look into /var/log/syslog and/or dmesg output. You will probably find messages about hard disk errors. Post them here if you have

Re: Problem compiling custom kernel on debian

2009-04-21 Thread Divick Kishore
Hi, Posting the output of 'smartctl -a /dev/hda' (from smartmontools, insert your hard drive device name) might help as well. The output from smatctl is fairly cryptic for me, posting it below: sudo smartctl -a /dev/hdc1 smartctl

Re: Problem compiling custom kernel on debian

2009-04-21 Thread Jochen Schulz
Divick Kishore: On Tue, Apr 21, 2009 at 1:22 PM, Jochen Schulz m...@well-adjusted.de wrote: Your problem is most probably unrelated to your building a kernel. Take a look into /var/log/syslog and/or dmesg output. You will probably find messages about hard disk errors. Post them here if

Re: Problem compiling custom kernel on debian

2009-04-21 Thread Jochen Schulz
Divick Kishore: General SMART Values: Offline data collection status: (0x00) Offline data collection activity was never started. Auto Offline Data Collection: Disabled. Self-test execution status: ( 0)

Re: Problem compiling 2.6.26 kernel

2008-09-29 Thread Mumia W..
On 09/28/2008 02:49 PM, Arthur Barlow wrote: I did check the settings in .config. Both BLK_DEV_IDE and BLK_DEV_IDEDISK are set to y. As for the ATA/SATA settings, they were not set, but my disk is an older one and should not care, but I tried setting them and trying again, and I got the

Re: Problem compiling 2.6.26 kernel

2008-09-28 Thread Mumia W..
On 09/27/2008 10:42 PM, Arthur Barlow wrote: I have used Debian for many years and I have always used the kernel-package program that is included with Debian to compile new kernels. I have an older Athlon PC that has the Reiserfs 3.6 on it. After I do the make-kpkg --revision= ##

Re: Problem compiling 2.6.26 kernel

2008-09-28 Thread Alex Samad
On Sun, Sep 28, 2008 at 02:28:43AM -0500, Mumia W.. wrote: On 09/27/2008 10:42 PM, Arthur Barlow wrote: I have used Debian for many years and I have always used the kernel-package program that is included with Debian to compile new kernels. I have an older Athlon PC that has the Reiserfs

Re: Problem compiling 2.6.26 kernel

2008-09-28 Thread Hugo Vanwoerkom
Alex Samad wrote: On Sun, Sep 28, 2008 at 02:28:43AM -0500, Mumia W.. wrote: On 09/27/2008 10:42 PM, Arthur Barlow wrote: I have used Debian for many years and I have always used the kernel-package program that is included with Debian to compile new kernels. I have an older Athlon PC that

Re: Re: Problem compiling 2.6.26 kernel

2008-09-28 Thread Arthur Barlow
On Sep 28, 2008, at 2:23 AM, debian-user-digest- [EMAIL PROTECTED] wrote From: Mumia W.. [EMAIL PROTECTED] Date: September 28, 2008 12:28:43 AM PDT To: Debian User List debian-user@lists.debian.org Subject: Re: Problem compiling 2.6.26 kernel On 09/27/2008 10:42 PM, Arthur Barlow wrote: I

Problem compiling 2.6.26 kernel

2008-09-27 Thread Arthur Barlow
I have used Debian for many years and I have always used the kernel- package program that is included with Debian to compile new kernels. I have an older Athlon PC that has the Reiserfs 3.6 on it. After I do the make-kpkg --revision= ## kernel-image and then use dpkg -i to install the

after compiling the kernel 2.6.18 bash error message no X Window

2007-05-12 Thread csanyipal
Hello! My system is Debian Etch. After I downloaded the new linux-source-2.6.18, compiled it and installed the new custom kernel, I get error messages on console prompt when logged in: -bash: id: command not found -bash: [: : integer expression expected and after gdm login I get error message

Compiling a Nvidia module [was Re: Compiling a kernel]

2006-10-25 Thread Chris Bannister
On Mon, Oct 23, 2006 at 11:31:46PM -0500, cothrige wrote: With this install of Debian I decided to stick to what I know, and grabbed the binary installer direct from NVidia. I ran that, and in less than two minutes I was up and running. No complaints from Debian and no complaints from

Re: Compiling a Nvidia module [was Re: Compiling a kernel]

2006-10-25 Thread cothrige
* Chris Bannister ([EMAIL PROTECTED]) wrote: Apparently the binary installer from NVidia messes with the libraries on the system and is not the recommended method for installing. Read http://home.comcast.net/~andrex/Debian-nVidia/ The Debian way is certainly a lot easier. Now where has

Re: Compiling a Nvidia module [was Re: Compiling a kernel]

2006-10-25 Thread David Baron
On Wednesday 25 October 2006 13:29, Chris Bannister wrote: On Mon, Oct 23, 2006 at 11:31:46PM -0500, cothrige wrote: With this install of Debian I decided to stick to what I know, and grabbed the binary installer direct from NVidia. I ran that, and in less than two minutes I was up and

Re: Compiling a Nvidia module [was Re: Compiling a kernel]

2006-10-25 Thread Alan Ianson
On Wed October 25 2006 06:39, David Baron wrote: On Wednesday 25 October 2006 13:29, Chris Bannister wrote: On Mon, Oct 23, 2006 at 11:31:46PM -0500, cothrige wrote: With this install of Debian I decided to stick to what I know, and grabbed the binary installer direct from NVidia. I ran

Re: Compiling a kernel

2006-10-24 Thread Michael D. Norwick
[EMAIL PROTECTED] wrote: You have gotten a couple DIFFERENT approaches to installing a kernel on Debian. At least one comment should send up a warning: Yes, a level-minded user. On compiling with --initrd, I finally drank the coolade last year. Before I tried to have no modules, compiling

Re: Compiling a kernel

2006-10-23 Thread Yura
John O'Hagan wrote: On Sunday 22 October 2006 18:02, cothrige wrote: [...] In the past, as a Slackware user, I never installed an OS where I didn't immediately compile a new kernel. Slack uses a 2.4 kernel, and I use some peripheral items which seem to require, or at least greatly prefer a

Re: Compiling a kernel

2006-10-23 Thread Jameson C. Burt
those files. You have heard from many of us, some complementing others information, some giving non-Debian approaches, and you don't really know who to listen to. YOU NEED TO GO TO A DEBIAN DOCUMENT (which has more thought even than these email-lists); eg, Compiling a New Kernel at http

Re: Compiling a kernel

2006-10-23 Thread David A.
I look here when I compile my own kernel: http://kernel-handbook.alioth.debian.org/ /David. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]

Re: Compiling a kernel

2006-10-23 Thread cothrige
heard from many of us, some complementing others information, some giving non-Debian approaches, and you don't really know who to listen to. YOU NEED TO GO TO A DEBIAN DOCUMENT (which has more thought even than these email-lists); eg, Compiling a New Kernel at http://www.debian.org

Compiling a kernel

2006-10-22 Thread cothrige
I am sure this is a really stupid question, but having read through the reference and searched online (some searches involve such common terms they never return anything useful) I have really been unable to find a clear answer. I hope someone here can help. In the past, as a Slackware user, I

Re: Compiling a kernel

2006-10-22 Thread Andrei Popescu
cothrige [EMAIL PROTECTED] wrote: I am sure this is a really stupid question, but having read through the reference and searched online (some searches involve such common terms they never return anything useful) I have really been unable to find a clear answer. I hope someone here can help.

Re: Compiling a kernel

2006-10-22 Thread Seweryn Kokot
For more than a year I compile my kernels the way you described (universal vay) and I have no problems. Of course there is a debian way but it's not a must. Regards, Seweryn -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]

Re: Compiling a kernel

2006-10-22 Thread Tim Post
Patrick, Its relatively easy .. and you can make it a bit easier on yourself. Untar from kernel.org in /usr/src be sure ncurses-dev and ncurses are present make menuconfig and configure your kernel now make (or make -j xx, where xx = # of cpu's if 1) [ fancy gcc hacks go here if your brave

Re: Compiling a kernel

2006-10-22 Thread John O'Hagan
On Sunday 22 October 2006 18:02, cothrige wrote: [...] In the past, as a Slackware user, I never installed an OS where I didn't immediately compile a new kernel. Slack uses a 2.4 kernel, and I use some peripheral items which seem to require, or at least greatly prefer a 2.6 kernel. The

Re: Compiling a kernel

2006-10-22 Thread cothrige
* John O'Hagan ([EMAIL PROTECTED]) wrote: Hi Patrick, Hello John, I always compile my own kernels the Debian (testing) way like this: -Install the latest Debian linux-source package (currently linux-source-2.6.17); or you can use vanilla source as you describe -Make a symlink

Re: Compiling a kernel

2006-10-22 Thread cothrige
* Tim Post ([EMAIL PROTECTED]) wrote: Hello Tim, [snip] Then make your initrd if needed and tweak as needed, verify /etc/modules is what you want it to be and you should be good to go. Cross your fingers and reboot. This makes me think. Recently I have gotten in the habit, after installing

Re: Compiling a kernel

2006-10-22 Thread Ron Johnson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 10/22/06 09:36, cothrige wrote: * John O'Hagan ([EMAIL PROTECTED]) wrote: Hi Patrick, Hello John, [snip] If you are recompiling a kernel with the same version name, you must move /lib/modules/[$KERNEL_VERSION] out of the way (you are

Re: Compiling a kernel

2006-10-22 Thread Gilles Mocellin
Le dimanche 22 octobre 2006 16:43, cothrige a écrit : * Tim Post ([EMAIL PROTECTED]) wrote: Hello Tim, [snip] Then make your initrd if needed and tweak as needed, verify /etc/modules is what you want it to be and you should be good to go. Cross your fingers and reboot. This makes me

Re: Compiling a kernel

2006-10-22 Thread John O'Hagan
On Monday 23 October 2006 00:36, cothrige wrote: * John O'Hagan ([EMAIL PROTECTED]) wrote: [snip summary of Debian kernel compilation] Will I still have to configure grub? And will update-grub work or will I have to manually edit menu.lst? [...] Installing the kernel-package generated by

Re: Compiling a kernel

2006-10-22 Thread Tim Post
depmod should be called by the makefile upon make modules_install after a successful build. Its really as easy as make, make modules_install , make install and a mkinitrd (if you need one). If using GRUB, remember by default the selection menu is hidden. You'll need to comment out the hiddenmenu

Re: Compiling a kernel

2006-10-22 Thread cothrige
* Tim Post ([EMAIL PROTECTED]) wrote: depmod should be called by the makefile upon make modules_install after a successful build. Its really as easy as make, make modules_install , make install and a mkinitrd (if you need one). If using GRUB, remember by default the selection menu is

Re: Compiling a kernel

2006-10-22 Thread cothrige
* Gilles Mocellin ([EMAIL PROTECTED]) wrote: This modprobe.conf is modularized in several files (you can add one) in /etc/modprobe.d/. Ahh yes, I see that. I would think I could run 'generate-modprobe.conf ~/modprobe.conf' and then split the info up as I need it. Shouldn't be too

Re: Compiling a kernel

2006-10-22 Thread cothrige
* John O'Hagan ([EMAIL PROTECTED]) wrote: Installing the kernel-package generated by make-kpkg will automatically detect and update grub, and add itself to menu.list. How easy is that? Now that it is a nifty feature. I suppose there is certainly something to be said for the Debian

Re: Compiling a kernel

2006-10-22 Thread Andrei Popescu
cothrige [EMAIL PROTECTED] wrote: I have never used initrd, at least not when I have compiled a kernel. To be entirely honest I have never fully understood just what it does. I was under the impression it was for things like booting from reiser fs and having to load modules to do it.

Re: Compiling a kernel

2006-10-22 Thread Damon L. Chesser
cothrige wrote: * Tim Post ([EMAIL PROTECTED]) wrote: depmod should be called by the makefile upon make modules_install after a successful build. Its really as easy as make, make modules_install , make install and a mkinitrd (if you need one). If using GRUB, remember by default the

Re: Compiling a kernel

2006-10-22 Thread cothrige
* Andrei Popescu ([EMAIL PROTECTED]) wrote: initrd's are especially useful for distros, because a kernel with all stuff compiled in is not an option (too big), but you still need some of the modules very early in the boot process, when the root filesystem is not accessible yet. For your

Selecting processor type when compiling the kernel

2006-09-25 Thread Andras Lorincz
Hello, I have a laptop with Celeron M processor within. My question is: what processor type should I select when compiling the kernel? Pentium M even though it's just Celeron M?

Re: compiling sid kernel source 2.6.15 in sarge

2006-03-01 Thread Glenn Meehan
Hiya LV, I have been using 2.6.15 for about a week now. It's fantastic. Seems to be faster than 2.6.8. I have scanning, sound, USB, cd burning, rsync, nfs. All works well. I used the kernel from kernel.org. I didn't bother with the ramdisk. Seems to be a waste of time. I followed the

Re: compiling sid kernel source 2.6.15 in sarge

2006-03-01 Thread L . V . Gandhi
On 3/1/06, Glenn Meehan [EMAIL PROTECTED] wrote: I have been using 2.6.15 for about a week now. It's fantastic. Seems to be faster than 2.6.8. I have scanning, sound, USB, cd burning, rsync, nfs. All works well. I used the kernel from kernel.org. I didn't bother with the ramdisk. Seems to be a

compiling sid kernel source 2.6.15 in sarge

2006-02-28 Thread L . V . Gandhi
I was using sid kernel source from my sid partition. When I was running sarge, I untarred sid kernel source 2.6.15 in /usr/src. Added bootsplash patch did oldconfig using sarge's config file from /boot/.and answered mostly all to defaults. I thought 2.6.15 will take only linux-image, I tried

  1   2   3   4   >