build is missing for compiling kernel module












0















this is my first time trying to create a kernel module, apparently after creating a module I need to follow these steps to compile it:



echo "obj-m := Hello.c" > Makefile
make -C /lib/modules/`uname -r`/build M=$PWD modules


here's my problem, there is no "build" in "/lib/modules/uname -r/" directory!



what am I missing here?










share|improve this question














bumped to the homepage by Community 8 mins ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
















  • What flavor / distribution of Linux are you using?

    – steeldriver
    Apr 19 '17 at 19:49











  • @steeldriver Debian Jessie, sorry forgot to mention it.

    – Brian SP2
    Apr 19 '17 at 20:03
















0















this is my first time trying to create a kernel module, apparently after creating a module I need to follow these steps to compile it:



echo "obj-m := Hello.c" > Makefile
make -C /lib/modules/`uname -r`/build M=$PWD modules


here's my problem, there is no "build" in "/lib/modules/uname -r/" directory!



what am I missing here?










share|improve this question














bumped to the homepage by Community 8 mins ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
















  • What flavor / distribution of Linux are you using?

    – steeldriver
    Apr 19 '17 at 19:49











  • @steeldriver Debian Jessie, sorry forgot to mention it.

    – Brian SP2
    Apr 19 '17 at 20:03














0












0








0








this is my first time trying to create a kernel module, apparently after creating a module I need to follow these steps to compile it:



echo "obj-m := Hello.c" > Makefile
make -C /lib/modules/`uname -r`/build M=$PWD modules


here's my problem, there is no "build" in "/lib/modules/uname -r/" directory!



what am I missing here?










share|improve this question














this is my first time trying to create a kernel module, apparently after creating a module I need to follow these steps to compile it:



echo "obj-m := Hello.c" > Makefile
make -C /lib/modules/`uname -r`/build M=$PWD modules


here's my problem, there is no "build" in "/lib/modules/uname -r/" directory!



what am I missing here?







linux compiling kernel-modules






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Apr 19 '17 at 19:31









Brian SP2Brian SP2

160212




160212





bumped to the homepage by Community 8 mins ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.







bumped to the homepage by Community 8 mins ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.















  • What flavor / distribution of Linux are you using?

    – steeldriver
    Apr 19 '17 at 19:49











  • @steeldriver Debian Jessie, sorry forgot to mention it.

    – Brian SP2
    Apr 19 '17 at 20:03



















  • What flavor / distribution of Linux are you using?

    – steeldriver
    Apr 19 '17 at 19:49











  • @steeldriver Debian Jessie, sorry forgot to mention it.

    – Brian SP2
    Apr 19 '17 at 20:03

















What flavor / distribution of Linux are you using?

– steeldriver
Apr 19 '17 at 19:49





What flavor / distribution of Linux are you using?

– steeldriver
Apr 19 '17 at 19:49













@steeldriver Debian Jessie, sorry forgot to mention it.

– Brian SP2
Apr 19 '17 at 20:03





@steeldriver Debian Jessie, sorry forgot to mention it.

– Brian SP2
Apr 19 '17 at 20:03










1 Answer
1






active

oldest

votes


















0














just found it, the following package is missing and needs to be installed before compiling any Linux kernel module:



sudo apt-get install -y linux-headers-`uname -r`


then we're ready to compile the module



echo "obj-m := Hello.c" > Makefile
make -C /lib/modules/`uname -r`/build M=$PWD modules
sudo insmod Hello.ko





share|improve this answer



















  • 1





    I'm more familiar with Ubuntu, but I believe it's recommended to install the appropriate architecture-specific metapackage instead - that way, the headers should be updated automatically when the kernel is updated e.g. linux-headers-amd64

    – steeldriver
    Apr 19 '17 at 23:16











  • @steeldriver I believe this is right and more appropriate, you should add this as an answer, I'll set it as main solution, and tnx

    – Brian SP2
    Apr 20 '17 at 9:58











Your Answer








StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "106"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f360020%2fbuild-is-missing-for-compiling-kernel-module%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









0














just found it, the following package is missing and needs to be installed before compiling any Linux kernel module:



sudo apt-get install -y linux-headers-`uname -r`


then we're ready to compile the module



echo "obj-m := Hello.c" > Makefile
make -C /lib/modules/`uname -r`/build M=$PWD modules
sudo insmod Hello.ko





share|improve this answer



















  • 1





    I'm more familiar with Ubuntu, but I believe it's recommended to install the appropriate architecture-specific metapackage instead - that way, the headers should be updated automatically when the kernel is updated e.g. linux-headers-amd64

    – steeldriver
    Apr 19 '17 at 23:16











  • @steeldriver I believe this is right and more appropriate, you should add this as an answer, I'll set it as main solution, and tnx

    – Brian SP2
    Apr 20 '17 at 9:58
















0














just found it, the following package is missing and needs to be installed before compiling any Linux kernel module:



sudo apt-get install -y linux-headers-`uname -r`


then we're ready to compile the module



echo "obj-m := Hello.c" > Makefile
make -C /lib/modules/`uname -r`/build M=$PWD modules
sudo insmod Hello.ko





share|improve this answer



















  • 1





    I'm more familiar with Ubuntu, but I believe it's recommended to install the appropriate architecture-specific metapackage instead - that way, the headers should be updated automatically when the kernel is updated e.g. linux-headers-amd64

    – steeldriver
    Apr 19 '17 at 23:16











  • @steeldriver I believe this is right and more appropriate, you should add this as an answer, I'll set it as main solution, and tnx

    – Brian SP2
    Apr 20 '17 at 9:58














0












0








0







just found it, the following package is missing and needs to be installed before compiling any Linux kernel module:



sudo apt-get install -y linux-headers-`uname -r`


then we're ready to compile the module



echo "obj-m := Hello.c" > Makefile
make -C /lib/modules/`uname -r`/build M=$PWD modules
sudo insmod Hello.ko





share|improve this answer













just found it, the following package is missing and needs to be installed before compiling any Linux kernel module:



sudo apt-get install -y linux-headers-`uname -r`


then we're ready to compile the module



echo "obj-m := Hello.c" > Makefile
make -C /lib/modules/`uname -r`/build M=$PWD modules
sudo insmod Hello.ko






share|improve this answer












share|improve this answer



share|improve this answer










answered Apr 19 '17 at 21:08









Brian SP2Brian SP2

160212




160212








  • 1





    I'm more familiar with Ubuntu, but I believe it's recommended to install the appropriate architecture-specific metapackage instead - that way, the headers should be updated automatically when the kernel is updated e.g. linux-headers-amd64

    – steeldriver
    Apr 19 '17 at 23:16











  • @steeldriver I believe this is right and more appropriate, you should add this as an answer, I'll set it as main solution, and tnx

    – Brian SP2
    Apr 20 '17 at 9:58














  • 1





    I'm more familiar with Ubuntu, but I believe it's recommended to install the appropriate architecture-specific metapackage instead - that way, the headers should be updated automatically when the kernel is updated e.g. linux-headers-amd64

    – steeldriver
    Apr 19 '17 at 23:16











  • @steeldriver I believe this is right and more appropriate, you should add this as an answer, I'll set it as main solution, and tnx

    – Brian SP2
    Apr 20 '17 at 9:58








1




1





I'm more familiar with Ubuntu, but I believe it's recommended to install the appropriate architecture-specific metapackage instead - that way, the headers should be updated automatically when the kernel is updated e.g. linux-headers-amd64

– steeldriver
Apr 19 '17 at 23:16





I'm more familiar with Ubuntu, but I believe it's recommended to install the appropriate architecture-specific metapackage instead - that way, the headers should be updated automatically when the kernel is updated e.g. linux-headers-amd64

– steeldriver
Apr 19 '17 at 23:16













@steeldriver I believe this is right and more appropriate, you should add this as an answer, I'll set it as main solution, and tnx

– Brian SP2
Apr 20 '17 at 9:58





@steeldriver I believe this is right and more appropriate, you should add this as an answer, I'll set it as main solution, and tnx

– Brian SP2
Apr 20 '17 at 9:58


















draft saved

draft discarded




















































Thanks for contributing an answer to Unix & Linux Stack Exchange!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f360020%2fbuild-is-missing-for-compiling-kernel-module%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Loup dans la culture

How to solve the problem of ntp “Unable to contact time server” from KDE?

Connection limited (no internet access)