Last active
October 24, 2020 15:59
-
-
Save jonathannerat/439f14d29b923f89c78b84e2b0e1cd46 to your computer and use it in GitHub Desktop.
Revisions
-
jonathannerat revised this gist
Feb 22, 2019 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,6 @@ This is done with an option when you load the module: `modprobe nvidia NVreg_RegisterForACPIEvents=1 NVreg_EnableMSI=1` To automatically use this option, create a file named `/etc/modprobe.d/50-nvidia.conf` with the following content: ```bash options nvidia NVreg_RegisterForACPIEvents=1 NVreg_EnableMSI=1 -
jonathannerat revised this gist
Feb 22, 2019 . 1 changed file with 4 additions and 4 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,9 +1,9 @@ This is done with an option when you load the module: 'modprobe nvidia NVreg_RegisterForACPIEvents=1 NVreg_EnableMSI=1' To automatically use this option, create a file named '/etc/modprobe.d/50-nvidia.conf' with the following content: ```bash options nvidia NVreg_RegisterForACPIEvents=1 NVreg_EnableMSI=1 ``` Restart your machine and now you can safely suspend and resume without screen corruption. In my case in 9 out of 10 suspend operations this fixes the screen corruption issue. Very rarely it still happens, but much less often than without this options. -
jonathannerat created this gist
Feb 22, 2019 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,9 @@ This is done with an option when you load the module: modprobe nvidia NVreg_RegisterForACPIEvents=1 NVreg_EnableMSI=1 To automatically use this option, create a file named /etc/modprobe.d/50-nvidia.conf with the following content: ´´´bash options nvidia NVreg_RegisterForACPIEvents=1 NVreg_EnableMSI=1 ´´´ Restart your machine and now you can safely suspend and resume without screen corruption. In my case in 9 out of 10 suspend operations this fixes the screen corruption issue. Very rarely it still happens, but much less often than without this options.