Various instructions for setting up Linux OS on Clevo N950TP6
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

62 lines
3.5 KiB

  1. ## Required boot parameters
  2. The following kernel parameters are for correct GPU handling (Clevo N950TP6) on older Linux kernels. Without this setting you _may_ be unable to boot on Linux desktop on Clevo N950TP6 laptop.
  3. Add these to your syslinux or GRUB boot parameters, either `/boot/syslinux/syslinux.cfg` OR `/boot/grub/grub.cfg` (GRUB configuration file `/etc/default/grub` preferred):
  4. ```
  5. acpi_osi="!Windows 2015" acpi_osi=Linux nogpumanager
  6. ```
  7. -------------------------
  8. ## About
  9. This `multimonitor` package creates two desktop entries to turn on/off `intel-virtual-output` executable (can be run as daemon, too). When enabled, the program creates new VirtualGL devices which is seen by issuing `xrandr` command. These devices are referring to your external monitors you use with Clevo N950TP6 laptop. Thus, you can set up all needed configuration for these external monitors in your desktop settings.
  10. Only downside with setting up new VirtualGL devices is that discrete Nvidia card must be enabled as well. At least on Linux, all external graphics output goes through Nvidia chipset on Clevo N950TP6. However, if you have your laptop plugged in to AC power adapter, you don't need to worry about Nvidia/Intel dilemma. Temperature of Nvidia card stays at ~47-53 while idle. It is higher on load, of course.
  11. Please read a personal usage story below for additional information.
  12. ## Overriding configuration files
  13. This package overrides the following bumblebee files:
  14. ```
  15. /etc/bumblebee/xorg.conf.nvidia
  16. /etc/bumblebee/xorg.conf.nouveau
  17. ```
  18. and adds the following X11 configuration files:
  19. ```
  20. /etc/X11/xorg.conf.d/10-intel.conf
  21. /etc/X11/xorg.conf.d/20-nvidia.conf
  22. /etc/X11/nvidia-xorg.conf
  23. ```
  24. Therefore, you MUST install this package AFTER you have installed bumblebee. And you need to force installation with pacman parameter `--force` (`sudo pacman -U --force package.tar.xz`). Proper way to install these overriding files would be patching the corresponding packages.
  25. ## Extra
  26. Subfolder extra contains the default `xorg.conf` (`/etc/X11/xorg.conf`) file I personally use on Clevo N950TP6. You can use it if you find it useful.
  27. -------------------------
  28. ## Multimonitor - Personal Story
  29. There are two ways I personally use Nvidia card on my Clevo laptop. They are as follows:
  30. - **1)** Multimonitor mode: enable additional display/screen output(s). This is which `intel-virtual-output` executable is for. I use this mode to enable one of the miniDisplayPort output, and attaching one additional monitor to my laptop. Another miniDisplayPort is enabled by default.
  31. - **2)** Nvidia "only" mode: Switch to another TTY session (without X server enabled, only CLI). Start a new X server instance with Openbox DE by issuing command: `nvidia-xrun openbox-session` ([AUR - nvidia-xrun](https://aur.archlinux.org/packages/?O=0&SeB=nd&K=nvidia-xrun&outdated=&SB=n&SO=a&PP=50&do_Search=Go))
  32. Worth noting: These modes can not be run simultaneously. For instance, I need to shut down `intel-virtual-output` process (1) before attempting to launch another X server session (2). Vice versa, I can't execute `intel-virtual-output` if I have a X server session already opened for Nvidia card (2).
  33. In this way, I can control when Nvidia card is turned ON/OFF.
  34. I use mode 1) for basic desktop tasks, and mode 2) for gaming (Steam, GOG, etc.)
  35. Sometimes `intel-virtual-output` can complain about not finding bumblebee. You can try checking your `/etc/X11` conf files.
  36. About role of bumblebee: it is required by `intel-virtual-output` binary. Practically, I don't use bumblebee for *anything* else.