Created
May 23, 2018 22:56
-
-
Save jonathanlxy/1865f5ebf20454ac94eb1c020659ca77 to your computer and use it in GitHub Desktop.
Notes for configuring ubuntu on XPS 15
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
| # Find out what's the recommended driver | |
| ubuntu-drivers devices | |
| # Install the driver | |
| sudo add-apt-repository ppa:graphics-drivers/ppa | |
| sudo apt-get update | |
| sudo apt install nvidia-driver-396 | |
| # If system stays hanging while booting, change the grub default parameters | |
| sudo vim /etc/default/grub | |
| # Look for Change GRUB_CMDLINE_LINUX_DEFAULT | |
| # Try these: | |
| # nouveau.modeset=0 | |
| # nvme_load=YES | |
| # nomodeset | |
| # acpi_rev_override | |
| nvidia-smi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment