build is missing for compiling kernel module
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
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.
add a comment |
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
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
add a comment |
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
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
linux compiling kernel-modules
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
add a comment |
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
add a comment |
1 Answer
1
active
oldest
votes
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
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
add a comment |
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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
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
add a comment |
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
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
add a comment |
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
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
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
add a comment |
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
add a comment |
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
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