Created
October 11, 2021 23:35
-
-
Save bayasdev/c5ab533465537bc6a04a65feefc91fc0 to your computer and use it in GitHub Desktop.
Turn off Nvidia GPU with Udev rules
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 characters
# Remove NVIDIA USB xHCI Host Controller devices, if present | |
ACTION=="add", SUBSYSTEM=="pci", ATTR{vendor}=="0x10de", ATTR{class}=="0x0c0330", ATTR{remove}="1" | |
# Remove NVIDIA USB Type-C UCSI devices, if present | |
ACTION=="add", SUBSYSTEM=="pci", ATTR{vendor}=="0x10de", ATTR{class}=="0x0c8000", ATTR{remove}="1" | |
# Remove NVIDIA Audio devices, if present | |
ACTION=="add", SUBSYSTEM=="pci", ATTR{vendor}=="0x10de", ATTR{class}=="0x040300", ATTR{remove}="1" | |
# Remove NVIDIA VGA/3D controller | |
ACTION=="add", SUBSYSTEM=="pci", ATTR{vendor}=="0x10de", ATTR{class}=="0x03[0-9]*", ATTR{remove}="1" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment