Skip to content

Instantly share code, notes, and snippets.

@ma-he-sh
Last active October 3, 2019 02:02
Show Gist options
  • Save ma-he-sh/84d9cd3e7a8bc073963571070a28999b to your computer and use it in GitHub Desktop.
Save ma-he-sh/84d9cd3e7a8bc073963571070a28999b to your computer and use it in GitHub Desktop.
Fix for Dell XPS 9570 Long boot on Manjaro Linux

Important: [ Do at your own risk ]

DELL XPS 9570 Manjaro Long Boot

Solution1: try this first(at your own risk):worked for me

# find and update drivers
sudo mhwd -a pci nonfree 0300

Solution2: [arch docks]:https://wiki.archlinux.org/index.php/Dell_XPS_15_9570

[1] Switch to deep sleep

 $ cat /sys/power/mem_sleep 
 [s2idle] deep
 $ echo deep|sudo tee /sys/power/mem_sleep
 $ cat /sys/power/mem_sleep 
 s2idle [deep]
 
 replace GRUB_CMDLINE_LINUX_DEFAULT on /etc/default/grub
 with  GRUB_CMDLINE_LINUX_DEFAULT="mem_sleep_default=deep"

[2]create file blacklist.conf in /etc/modprobe.d/blacklist.conf and add following

blacklist nouveau
blacklist rivafb
blacklist nvidiafb
blacklist rivatv
blacklist nv

[3] add following line at the end of /etc/default/tlp

X_TLP_USB_MODE=1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment