Last active
June 2, 2017 21:33
-
-
Save badwulfy/8e7512a77b05428af3f452e21ada1d57 to your computer and use it in GitHub Desktop.
Surface pro 3 - kubuntu 17.04 - all working properly
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
install kubuntu 17.04 | |
wifi issues : | |
Necessary (TLP + bluetooth) : https://www.reddit.com/r/SurfaceLinux/comments/69atec/surface_book_wifi_dies_randomly/ | |
Suspend fix : /lib/systemd/system-sleep/sp3_hiber.sh | |
#!/bin/sh | |
case $1/$2 in | |
pre/suspend) | |
echo "Going to $2..." | |
;; | |
post/suspend) | |
echo "Waking up from $2..." | |
echo "Reload Wifi Driver" | |
modprobe -r mwifiex_pcie | |
modprobe mwifiex_pcie | |
;; | |
esac | |
Necessary : add to /etc/NetworkManager/NetworkManager.conf | |
[device] | |
wifi.scan-rand-mac-address=no | |
Can be usefull : https://itsfoss.com/reduce-overheating-laptops-linux/ | |
useless : | |
sudo apt-get update | |
sudo apt-get upgrade | |
echo "deb http://ppa.launchpad.net/tigerite/kernel/ubuntu trusty main" | sudo tee /etc/apt/sources.list.d/tigerite-kernel-trusty.list | |
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 984AE706D31B333A && sudo apt-get update | |
sudo apt-get install linux-surface |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment