Excluding kernel modules through /etc/modprobe.d/blacklist.conf does not work Announcing the...
How would a mousetrap for use in space work?
What does it mean that physics no longer uses mechanical models to describe phenomena?
Why can't I install Tomboy in Ubuntu Mate 19.04?
Significance of Cersei's obsession with elephants?
Why does 14 CFR have skipped subparts in my ASA 2019 FAR/AIM book?
How often does castling occur in grandmaster games?
Dyck paths with extra diagonals from valleys (Laser construction)
Electrolysis of water: Which equations to use? (IB Chem)
Crossing US/Canada Border for less than 24 hours
What does Turing mean by this statement?
Central Vacuuming: Is it worth it, and how does it compare to normal vacuuming?
How can I set the aperture on my DSLR when it's attached to a telescope instead of a lens?
How do living politicians protect their readily obtainable signatures from misuse?
Co-worker has annoying ringtone
What's the point of the test set?
What is the meaning of 'breadth' in breadth first search?
How could we fake a moon landing now?
Project Euler #1 in C++
How to compare two different files line by line in unix?
How long can equipment go unused before powering up runs the risk of damage?
Why is it faster to reheat something than it is to cook it?
What are the discoveries that have been possible with the rejection of positivism?
What initially awakened the Balrog?
Karn the great creator - 'card from outside the game' in sealed
Excluding kernel modules through /etc/modprobe.d/blacklist.conf does not work
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 23, 2019 at 23:30UTC (7:30pm US/Eastern)
2019 Community Moderator Election Results
Why I closed the “Why is Kali so hard” questionBlacklisting modules in modprobe.d and kernel params is not workingWhy is kernel module blacklisting so weak?systemd-modules-load print errors when loading builtin kernel modulesHow to block loading kernel module only in single user boot when blacklist fails?How to set up a blacklist for insmod?Kernel modules still loaded after crash, can't unload themVirtualBox kernel modules will not load via systemd/dev/sdb* not available after boot - initramfs does not load uas and usb_storage modulesDiscover needed tuner/frontends kernel modules for a DVB deviceCentOS 7 persistent module loading at bootOverride modprobe.d blacklistOrder of kernel upgrade commands for gentoo
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
I don't want to load the kernel module nouveau on my debian box at startup, so I put the following in /etc/modprobe.d/blacklist.conf:
blacklist ttm
blacklist drm
blacklist nouveau
I even did a update-initramfs -u but nonetheless those three modules get loaded each time I boot.
Does anyone know why and how to fix this.
debian kernel boot kernel-modules initramfs
add a comment |
I don't want to load the kernel module nouveau on my debian box at startup, so I put the following in /etc/modprobe.d/blacklist.conf:
blacklist ttm
blacklist drm
blacklist nouveau
I even did a update-initramfs -u but nonetheless those three modules get loaded each time I boot.
Does anyone know why and how to fix this.
debian kernel boot kernel-modules initramfs
add a comment |
I don't want to load the kernel module nouveau on my debian box at startup, so I put the following in /etc/modprobe.d/blacklist.conf:
blacklist ttm
blacklist drm
blacklist nouveau
I even did a update-initramfs -u but nonetheless those three modules get loaded each time I boot.
Does anyone know why and how to fix this.
debian kernel boot kernel-modules initramfs
I don't want to load the kernel module nouveau on my debian box at startup, so I put the following in /etc/modprobe.d/blacklist.conf:
blacklist ttm
blacklist drm
blacklist nouveau
I even did a update-initramfs -u but nonetheless those three modules get loaded each time I boot.
Does anyone know why and how to fix this.
debian kernel boot kernel-modules initramfs
debian kernel boot kernel-modules initramfs
asked May 13 '13 at 10:14
JohnnyFromBFJohnnyFromBF
1,35292135
1,35292135
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
You can find the answer in the wiki: the idea is that one does not use /etc/modprobe.d/blacklist.conf.
Instead, say you want to blacklist pcspkr. You create a pcspkr.conf file in /etc/modprobe.d and put blacklist pcspkr inside. Then run
depmod -ae && update-initramfs -u
I see the wiki page saysdepmodis required here, but it sounds nonsense to me. Source: I helped develop modprobe, a while back :-P. I am not sure why following your answer would be any better, though clearly at least one person found this approach helpful.
– sourcejedi
2 hours ago
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%2f75631%2fexcluding-kernel-modules-through-etc-modprobe-d-blacklist-conf-does-not-work%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
You can find the answer in the wiki: the idea is that one does not use /etc/modprobe.d/blacklist.conf.
Instead, say you want to blacklist pcspkr. You create a pcspkr.conf file in /etc/modprobe.d and put blacklist pcspkr inside. Then run
depmod -ae && update-initramfs -u
I see the wiki page saysdepmodis required here, but it sounds nonsense to me. Source: I helped develop modprobe, a while back :-P. I am not sure why following your answer would be any better, though clearly at least one person found this approach helpful.
– sourcejedi
2 hours ago
add a comment |
You can find the answer in the wiki: the idea is that one does not use /etc/modprobe.d/blacklist.conf.
Instead, say you want to blacklist pcspkr. You create a pcspkr.conf file in /etc/modprobe.d and put blacklist pcspkr inside. Then run
depmod -ae && update-initramfs -u
I see the wiki page saysdepmodis required here, but it sounds nonsense to me. Source: I helped develop modprobe, a while back :-P. I am not sure why following your answer would be any better, though clearly at least one person found this approach helpful.
– sourcejedi
2 hours ago
add a comment |
You can find the answer in the wiki: the idea is that one does not use /etc/modprobe.d/blacklist.conf.
Instead, say you want to blacklist pcspkr. You create a pcspkr.conf file in /etc/modprobe.d and put blacklist pcspkr inside. Then run
depmod -ae && update-initramfs -u
You can find the answer in the wiki: the idea is that one does not use /etc/modprobe.d/blacklist.conf.
Instead, say you want to blacklist pcspkr. You create a pcspkr.conf file in /etc/modprobe.d and put blacklist pcspkr inside. Then run
depmod -ae && update-initramfs -u
edited 2 hours ago
sourcejedi
26.2k445114
26.2k445114
answered May 13 '13 at 10:54
schaibaschaiba
5,59712229
5,59712229
I see the wiki page saysdepmodis required here, but it sounds nonsense to me. Source: I helped develop modprobe, a while back :-P. I am not sure why following your answer would be any better, though clearly at least one person found this approach helpful.
– sourcejedi
2 hours ago
add a comment |
I see the wiki page saysdepmodis required here, but it sounds nonsense to me. Source: I helped develop modprobe, a while back :-P. I am not sure why following your answer would be any better, though clearly at least one person found this approach helpful.
– sourcejedi
2 hours ago
I see the wiki page says
depmod is required here, but it sounds nonsense to me. Source: I helped develop modprobe, a while back :-P. I am not sure why following your answer would be any better, though clearly at least one person found this approach helpful.– sourcejedi
2 hours ago
I see the wiki page says
depmod is required here, but it sounds nonsense to me. Source: I helped develop modprobe, a while back :-P. I am not sure why following your answer would be any better, though clearly at least one person found this approach helpful.– sourcejedi
2 hours ago
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%2f75631%2fexcluding-kernel-modules-through-etc-modprobe-d-blacklist-conf-does-not-work%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