Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save dniku/35417ddcc41d6f163cd322ff1a2d33d7 to your computer and use it in GitHub Desktop.
Save dniku/35417ddcc41d6f163cd322ff1a2d33d7 to your computer and use it in GitHub Desktop.
Small, quick guide to set up Manjaro on the XPS 15 9560
  1. First of all of course get Manjaro: https://manjaro.org/get-manjaro/

  2. I recommend using Etcher to copy the image to your USB: https://etcher.io/

  3. Before installing make sure:

  1. Once at the GRUB menu do the following (these steps are important, Manjaro won't even boot otherwise):
  • For drivers select the nonfree option instead of free, there is no support for Pascal GPUs yet (is planned for 4.12)
  • Hover over the option Boot : Manjaro.x86_64 <your DE> and press e to edit the boot entry
  • Look for quiet in the boot entry, after quiet you should type acpi_rev_override=1
  1. Now just install Manjaro like you normally would. After installation repeat step 3 once you are in Grub as Manjaro will still not be bootable without that parameter.

  2. Once Manjaro is installed pretty much everything is set up already.

Manjaro handles things like installing Bumblebee beautifully, but there is one more thing we should do. We need to add the boot arguments given in step 3.

I recommend doing that from the terminal, but if you want, you can also use something like grub-customizer (available from AUR or https://launchpad.net/grub-customizer). This is an UI for making Grub customizations.

  • Using terminal
    • sudo nano /etc/default/grub
    • Find this line and make sure it looks like this:
    • GRUB_CMDLINE_LINUX_DEFAULT="quiet acpi_rev_override=1"
    • Run sudo update-grub to update your Grub config and we are done.
  • Using grub-customizer
    • Open up grub-customizer
    • Go to the 'General settings' tab and add acpi_rev_override=1 after quiet
    • Press 'ctrl + s' or click save and we are done. Your installation should be fully working now.

I get around 5 to 8 hours of battery life on an i7, 16GB, 512GB 4k model 9560.

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