Is the order of NVIDIA kernel modules in mkinitcpio important? The 2019 Stack Overflow Developer Survey Results Are InIdentifying kernel modulesWhat is the difference between kernel drivers and kernel modules?Compiling kernel but doesn't build kernel modulesBuildroot - missing i2c kernel modulesinstalling modules after kernel compile?Sources of mkinitcpio MODULES=, BINARIES= and HOOKS= entriesHow to prevent kernel modules to load?Is LVM partition order important'/lib/modules/4.9.8-1-ARCH' is not a valid kernel module directoryEnumerating (all) loaded kernel modules
Worn-tile Scrabble
Inverse Relationship Between Precision and Recall
Straighten subgroup lattice
Is it safe to harvest rainwater that fell on solar panels?
What do I do when my TA workload is more than expected?
Why doesn't UInt have a toDouble()?
Are there any other methods to apply to solving simultaneous equations?
"as much details as you can remember"
Why didn't the Event Horizon Telescope team mention Sagittarius A*?
Keeping a retro style to sci-fi spaceships?
Why “相同意思的词” is called “同义词” instead of "同意词"?
How can I define good in a religion that claims no moral authority?
Accepted by European university, rejected by all American ones I applied to? Possible reasons?
What do hard-Brexiteers want with respect to the Irish border?
How do PCB vias affect signal quality?
Why doesn't shell automatically fix "useless use of cat"?
A word that means fill it to the required quantity
Is it okay to consider publishing in my first year of PhD?
How come people say “Would of”?
writing variables above the numbers in tikz picture
Why not take a picture of a closer black hole?
Relationship between Gromov-Witten and Taubes' Gromov invariant
The phrase "to the numbers born"?
For what reasons would an animal species NOT cross a *horizontal* land bridge?
Is the order of NVIDIA kernel modules in mkinitcpio important?
The 2019 Stack Overflow Developer Survey Results Are InIdentifying kernel modulesWhat is the difference between kernel drivers and kernel modules?Compiling kernel but doesn't build kernel modulesBuildroot - missing i2c kernel modulesinstalling modules after kernel compile?Sources of mkinitcpio MODULES=, BINARIES= and HOOKS= entriesHow to prevent kernel modules to load?Is LVM partition order important'/lib/modules/4.9.8-1-ARCH' is not a valid kernel module directoryEnumerating (all) loaded kernel modules
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I'm troubleshooting a solution for Nvidia screen tearing cited on the Archlinux wiki which instructs to enable DRM kernel mode setting:
nvidia 364.16 adds support for DRM kernel mode setting. To enable this
feature, add the nvidia-drm.modeset=1 kernel parameter, and add
nvidia, nvidia_modeset, nvidia_uvm and nvidia_drm to your initramfs#MODULES.
I entered the MODULES into mkinitcpio.conf
as instructed. Here is the relevant line from my .conf
file: MODULES="ext4 dm_mod dm_crypt vfat nvidia nvidia_modeset nvidia_uvm nvidia_drm"
Troubleshooting, I discovered evidence the modules are not loaded:
$ rmmod nvidia_drm nvidia_modeset nvidia
rmmod: ERROR: Module nvidia_drm is not currently loaded
rmmod: ERROR: Module nvidia_modeset is not currently loaded
I know mkinitcpio HOOKS go in order (ie. LUKS). Is the order of NVIDIA kernel modules in mkinitcpio important?
linux mkinitcpio
add a comment |
I'm troubleshooting a solution for Nvidia screen tearing cited on the Archlinux wiki which instructs to enable DRM kernel mode setting:
nvidia 364.16 adds support for DRM kernel mode setting. To enable this
feature, add the nvidia-drm.modeset=1 kernel parameter, and add
nvidia, nvidia_modeset, nvidia_uvm and nvidia_drm to your initramfs#MODULES.
I entered the MODULES into mkinitcpio.conf
as instructed. Here is the relevant line from my .conf
file: MODULES="ext4 dm_mod dm_crypt vfat nvidia nvidia_modeset nvidia_uvm nvidia_drm"
Troubleshooting, I discovered evidence the modules are not loaded:
$ rmmod nvidia_drm nvidia_modeset nvidia
rmmod: ERROR: Module nvidia_drm is not currently loaded
rmmod: ERROR: Module nvidia_modeset is not currently loaded
I know mkinitcpio HOOKS go in order (ie. LUKS). Is the order of NVIDIA kernel modules in mkinitcpio important?
linux mkinitcpio
add a comment |
I'm troubleshooting a solution for Nvidia screen tearing cited on the Archlinux wiki which instructs to enable DRM kernel mode setting:
nvidia 364.16 adds support for DRM kernel mode setting. To enable this
feature, add the nvidia-drm.modeset=1 kernel parameter, and add
nvidia, nvidia_modeset, nvidia_uvm and nvidia_drm to your initramfs#MODULES.
I entered the MODULES into mkinitcpio.conf
as instructed. Here is the relevant line from my .conf
file: MODULES="ext4 dm_mod dm_crypt vfat nvidia nvidia_modeset nvidia_uvm nvidia_drm"
Troubleshooting, I discovered evidence the modules are not loaded:
$ rmmod nvidia_drm nvidia_modeset nvidia
rmmod: ERROR: Module nvidia_drm is not currently loaded
rmmod: ERROR: Module nvidia_modeset is not currently loaded
I know mkinitcpio HOOKS go in order (ie. LUKS). Is the order of NVIDIA kernel modules in mkinitcpio important?
linux mkinitcpio
I'm troubleshooting a solution for Nvidia screen tearing cited on the Archlinux wiki which instructs to enable DRM kernel mode setting:
nvidia 364.16 adds support for DRM kernel mode setting. To enable this
feature, add the nvidia-drm.modeset=1 kernel parameter, and add
nvidia, nvidia_modeset, nvidia_uvm and nvidia_drm to your initramfs#MODULES.
I entered the MODULES into mkinitcpio.conf
as instructed. Here is the relevant line from my .conf
file: MODULES="ext4 dm_mod dm_crypt vfat nvidia nvidia_modeset nvidia_uvm nvidia_drm"
Troubleshooting, I discovered evidence the modules are not loaded:
$ rmmod nvidia_drm nvidia_modeset nvidia
rmmod: ERROR: Module nvidia_drm is not currently loaded
rmmod: ERROR: Module nvidia_modeset is not currently loaded
I know mkinitcpio HOOKS go in order (ie. LUKS). Is the order of NVIDIA kernel modules in mkinitcpio important?
linux mkinitcpio
linux mkinitcpio
asked Nov 21 '17 at 10:07
xtianxtian
290210
290210
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
I think that your syntax is wrong.
The MODULES
variable is an array, so assigning to it should be done using (...)
:
MODULES=(ext4 dm_mod dm_crypt vfat nvidia nvidia_modeset nvidia_uvm nvidia_drm)
New contributor
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%2f405954%2fis-the-order-of-nvidia-kernel-modules-in-mkinitcpio-important%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
I think that your syntax is wrong.
The MODULES
variable is an array, so assigning to it should be done using (...)
:
MODULES=(ext4 dm_mod dm_crypt vfat nvidia nvidia_modeset nvidia_uvm nvidia_drm)
New contributor
add a comment |
I think that your syntax is wrong.
The MODULES
variable is an array, so assigning to it should be done using (...)
:
MODULES=(ext4 dm_mod dm_crypt vfat nvidia nvidia_modeset nvidia_uvm nvidia_drm)
New contributor
add a comment |
I think that your syntax is wrong.
The MODULES
variable is an array, so assigning to it should be done using (...)
:
MODULES=(ext4 dm_mod dm_crypt vfat nvidia nvidia_modeset nvidia_uvm nvidia_drm)
New contributor
I think that your syntax is wrong.
The MODULES
variable is an array, so assigning to it should be done using (...)
:
MODULES=(ext4 dm_mod dm_crypt vfat nvidia nvidia_modeset nvidia_uvm nvidia_drm)
New contributor
edited Apr 8 at 10:33
Kusalananda♦
141k17263439
141k17263439
New contributor
answered Apr 8 at 10:13
Ed GuglielminoEd Guglielmino
111
111
New contributor
New contributor
add a comment |
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%2f405954%2fis-the-order-of-nvidia-kernel-modules-in-mkinitcpio-important%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