Created
July 18, 2017 03:44
-
-
Save kurtis318/ca1d903524f89b133c556c0bb4cff09a to your computer and use it in GitHub Desktop.
F26: Dell XPS 15 hangs on reboot and shutdown
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
My Dell XPS 15 (9560) would hang whenever I tried reboot or shutdown under Fedora 26. | |
The soltion I found was to add the following boot parameter. I believe it blacklists the nouveau video driver. | |
nouveau.runpm=0 | |
Of course the proper place to update /boot/grub2/grub.conf is to update /etc/default/grub as such: | |
GRUB_TIMEOUT=5 | |
GRUB_DISTRIBUTOR="$(sed 's, release .*$,,g' /etc/system-release)" | |
GRUB_DEFAULT=saved | |
GRUB_DISABLE_SUBMENU=true | |
GRUB_TERMINAL_OUTPUT="console" | |
GRUB_CMDLINE_LINUX="rhgb quiet nouveau.runpm=0" | |
GRUB_DISABLE_RECOVERY="true" | |
Don't forget to generate a new /boot/grub2/grub.conf using this command: | |
sudo grub2-mkconfig -o /boot/grub2/grub.cfg | |
A reboot (hard power off is probably needed) will fix the issue of hanging during reboot or shutdown. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment