Skip to content

Instantly share code, notes, and snippets.

@kaushiks
Last active November 12, 2016 16:09
Show Gist options
  • Save kaushiks/751b6fd9ab63b98f5fc72982bab18ddc to your computer and use it in GitHub Desktop.
Save kaushiks/751b6fd9ab63b98f5fc72982bab18ddc to your computer and use it in GitHub Desktop.
Installing Debian on a 2016 X1 Carbon
# /etc/X11/xorg.conf.d/20-intel.conf
Section "Device"
Identifier "Intel Graphics"
Driver "intel"
Option "TripleBuffer" "on"
Option "SwapbufferWait" "on"
Option "TearFree" "true"
EndSection
# From http://www.thinkwiki.org/wiki/How_to_configure_the_TrackPoint
# Set trackpoint speed and sensitivity.
echo -n 205 > /sys/devices/platform/i8042/serio1/serio2/speed
echo -n 250 > /sys/devices/platform/i8042/serio1/serio2/sensitivity
# Disable the touchpad.
xinput set-prop 11 "Device Enabled" 0
# WIFI
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1451246
http://zeroset.mnim.org/2014/04/22/unstable-wifi-connection-on-ubuntu-14-04-trusty-tahr-ctrl-event-disconnected-reason4-locally_generated1/
WORKAROUND: Disable 802.11n:
echo 'options iwlwifi 11n_disable=1' | sudo tee -a /etc/modprobe.d/iwlwifi.conf
xset b off
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment