Skip to content

Instantly share code, notes, and snippets.

@bayasdev
Created October 11, 2021 23:35
Show Gist options
  • Save bayasdev/c5ab533465537bc6a04a65feefc91fc0 to your computer and use it in GitHub Desktop.
Save bayasdev/c5ab533465537bc6a04a65feefc91fc0 to your computer and use it in GitHub Desktop.
Turn off Nvidia GPU with Udev rules
# 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