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.

30 lines
917 B

4 years ago
  1. ## Ethernet
  2. If your `eth0` interface is not listed in `ip addr` output, you may consider blacklisting default `r8169` kernel module and installing `r8168` as a replacement module.
  3. **1)** Add `blacklist r8169` into `/etc/modprobe.d/ethernet.conf`:
  4. ```
  5. echo "blacklist r8169" | tee -a /etc/modprobe.d/ethernet.conf
  6. ```
  7. **2)** Install [r8168-dkms](https://aur.archlinux.org/packages/r8168-dkms/) from AUR repository
  8. **3)** If you have `r8169` module loaded (`lsmod`), remove it with `rmmod r8169` and load installed `r8168` module (`modprobe r8168`)
  9. ## Nvidia Optimus
  10. - Follow [Arch Wiki - Bumblebee](https://wiki.archlinux.org/index.php/Bumblebee) instructions
  11. - Use Xorg configuration files provided [here](../multimonitor_and_desktop/xf86-intel-multimonitor)
  12. - Blacklist several kernel modules:
  13. ```
  14. > cat /etc/modprobe.d/nvidia.conf
  15. blacklist nvidia
  16. blacklist nouveau
  17. options bbswitch load_state=0
  18. ```