Skip to content

Instantly share code, notes, and snippets.

@antikytheraton
Created August 17, 2019 21:16
Show Gist options
  • Save antikytheraton/79cc211fdd36434a2248ce878cf8e7f4 to your computer and use it in GitHub Desktop.
Save antikytheraton/79cc211fdd36434a2248ce878cf8e7f4 to your computer and use it in GitHub Desktop.

I’m using acpi_osi=! acpi_osi='Windows 2009' pcie_port_pm=off on my side

This worked for me too. Thanks to everyone who helped!

For someone who is having simmilar problem here is what I exacly did:

  1. Reinstall Manjaro to make sure everything is clear.
  2. Install packages from octopi: nvidia-utils bumblebee virtualgl mesa 32 bit versions of these
  3. Add myself to ‘bumblebee’ group: sudo gpasswd --add MyUserName bumblebee
  4. Enable bumblebee daemon sudo systemctl enable bumblebeed.service sudo systemctl enable bumblebeed
  5. Go to ‘Manjaro Settings Manager’ -> Hardware configuration and install driver ‘video-hybrid-intel-nvidia-bumblebee’
  6. Add options acpi_osi=! acpi_osi='Windows 2009' pcie_port_pm=off to grub configuration: sudo nano /etc/default/grub
  7. Change line GRUB_CMDLINE_LINUX_DEFAULT="quiet" to: GRUB_CMDLINE_LINUX_DEFAULT="quiet acpi_osi=! acpi_osi="Windows 2009" pcie_port_pm=off"
  8. Reboot. This time I was able to see GUI and log in.

To check if it actually works I run optirun glxgears. With my GTX 1050 I have FPS count greater than 1800 However, there is still one issue. Before installation there was following line in output of inxi -G command: NVIDIA GP107M [GeForce GTX 1050 Mobile] driver: N/A After first reboot the N/A part changed. I was so happy about this, but: After another reboot the driver was again N/A, however the optirun glxgears still shows above 1800 FPS.

Two questions:

What does it mean? Does the driver still work now? How to fix it, so I again see driver version instead of N/A?

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