I am having trouble when shutting down Dell Alienware Aurora R7 after installing ubuntu 18.04. The nvidia drivers were successfully installed.
Asked
Active
Viewed 4,820 times
1 Answers
6
Copy-pasting answer from U&L as per people request
After reading kernel sources, I found a function we need to blacklist!
Thanks to Stephen Kitt for the hint about initcall_blacklist.
Add initcall_blacklist=dw_i2c_init_driver to the kernel command line. This works for me on kernel 4.15.0.
For anyone else who'll find this answer. You can do it by editing /etc/default/grub:
- Run in the terminal:
sudo -H gedit /etc/default/grub. - Append blacklist string to the
GRUB_CMDLINE_LINUX_DEFAULT:GRUB_CMDLINE_LINUX_DEFAULT="… initcall_blacklist=dw_i2c_init_driver". - Save the file, close the editor.
- Run in the terminal:
sudo update-grub. - Reboot and test!
Yurij
- 171
