You are not logged in.
Hello! Here is similar topic https://dev1galaxy.org/viewtopic.php?pid=10918
I have an up-to-date Devuan ASCII with Nvidia non-free drivers 340.108
But i want to know how remove this message from booting log?
root@home:/etc/modprobe.d# dmesg | grep -i nvidia
[ 1.094049] udevd[93]: Error running install command for nvidia
[ 8.801126] udevd[427]: could not find module by name='nvidia'
root@home:/etc/modprobe.d#
root@home:/etc/default# grep "install nvidia" /etc/modprobe.d/*
/etc/modprobe.d/nvidia.conf:install nvidia modprobe -i nvidia-legacy-340xx $CMDLINE_OPTS
/etc/modprobe.d/nvidia.conf:install nvidia-uvm modprobe nvidia ; modprobe -i nvidia-legacy-340xx-uvm $CMDLINE_OPTS
root@home:/etc/default#
ps sorry for my English
pps i have no this file "/etc/modprobe.d/lrm-video"
Last edited by deepforest (2020-03-24 20:13:07)
Offline
How did you install the driver?
What about nouveau?
Offline
Hi!) Thanks for quick reply)
Non-free nvidia driver i am installing from Devuan repo.
# apt install linux-headers-$(uname -r|sed 's/[^-]*-[^-]*-//') nvidia-legacy-340xx-driver
I have bit problem with blacklisting nouveau on Devuan. Blacklisting method through /etc/modprobe.d/* not help. I am blacklisted nouveau only through GRUB. Why usual(/etc/modprobe.d/*) method blacklisting not work?
GRUB_CMDLINE_LINUX_DEFAULT="modprobe.blacklist=nouveau nouveau.blacklist=1 nomodset quiet splash"
Last edited by deepforest (2020-03-25 13:35:08)
Offline
You probably need to run update-initramfs (or live-update-initramfs) to make the blacklist take effect. Without that the initial ramdisk will still tell the OS to load nouveau. Check the man page first though.
Chris
Offline
Hi, I blacklist the nouveau driver, for the proprietary driver install with this in the grub line...
nokmsboot nouveau.modeset=0
I leave it there after install, but i still see the module has loaded with lsmod, but it doesn't seem to create any problems.
anyhow, it may help ...
Offline
Try the following command as root:
dpkg-reconfigure nvidia-kernel-dkms
Offline
Offline