I am new to linux .i have to compile a device driver sample code.

i tried to install linux-source-2.6.38 from the synaptic, then it showed the message quoted below:

This package provides the source code for the Linux kernel version 2.6.38.

This package is mainly meant for other packages to use, in order to build custom flavours.

If you wish to use this package to create a custom Linux kernel, then it is suggested that you investigate the package kernel-package, which has been designed to ease the task of creating kernel image packages.

If you are simply trying to build third-party modules for your kernel, you do not want this package. Install the appropriate linux-headers package instead.

so get confused that 1) a linux-source needed or not for my device driver code compilation ?

2) if i install the new kernel how can i work with the new kernel ?

link|improve this question
feedback

2 Answers

Great detailed tutorial at:

https://help.ubuntu.com/community/Kernel/Compile

link|improve this answer
I'd also suggest nijit to learn ways of Linux (:D) before messing with it. Also, why not just download it from tarball instead (or use git if one is serious about messing with kernel). – AoeAoe Feb 10 at 18:03
feedback

You probably need packages like linux-headers-2.6-amd64 and linux-kbuild-2.6. Use apt-cache search linux headers and apt-cache search linux kbuild to find exactly the name of the packages.

You could use apt-cache search linux headers and apt-cache search linux kbuild to get the exact name of the package.

If you are making a module (a dynamically loadable kernel module *.ko) you don't need to build a new kernel. Use insmod or modprobe to load it.

link|improve this answer
thank you for your feedback – nijit Feb 9 at 12:13
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.