Browse Source

Add system_conf

master
Pekka Helenius 4 years ago
parent
commit
f339cf08ee
2 changed files with 36 additions and 0 deletions
  1. +6
    -0
      README.md
  2. +30
    -0
      system_conf/README.md

+ 6
- 0
README.md View File

@ -79,6 +79,12 @@ The power adapter I use:
----------------
### [Misc system configuration](system_conf/README.md)
- **What? :** Various common instructions to configure Arch Linux OS on Clevo N950TP6
----------------
### [Laptop Images](images)
- **What? :** Sample images of Clevo N950TP6 laptop


+ 30
- 0
system_conf/README.md View File

@ -0,0 +1,30 @@
## Ethernet
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.
**1)** Add `blacklist r8169` into `/etc/modprobe.d/ethernet.conf`:
```
echo "blacklist r8169" | tee -a /etc/modprobe.d/ethernet.conf
```
**2)** Install [r8168-dkms](https://aur.archlinux.org/packages/r8168-dkms/) from AUR repository
**3)** If you have `r8169` module loaded (`lsmod`), remove it with `rmmod r8169` and load installed `r8168` module (`modprobe r8168`)
## Nvidia Optimus
- Follow [Arch Wiki - Bumblebee](https://wiki.archlinux.org/index.php/Bumblebee) instructions
- Use Xorg configuration files provided [here](../multimonitor_and_desktop/xf86-intel-multimonitor)
- Blacklist several kernel modules:
```
> cat /etc/modprobe.d/nvidia.conf
blacklist nvidia
blacklist nouveau
options bbswitch load_state=0
```

Loading…
Cancel
Save