Last active
April 20, 2017 10:12
-
-
Save jezman/cbe3b5f8b5c44ddfbf7c9711efbfbf71 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| #!/bin/bash | |
| # Official Wiki | |
| # https://wiki.debian.org/InstallingDebianOn/Thinkpad/X250/Jessie | |
| # Wifi | |
| echo deb http://httpredir.debian.org/debian/ jessie main contrib non-free >> /etc/apt/sources.list | |
| # Indel HD Graphic | |
| echo deb http://http.debian.net/debian jessie-backports main > /etc/apt/sources.list.d/jessie-backports.list | |
| apt-get update | |
| apt-get -t jessie-backports install xserver-xorg-video-intel -y | |
| apt-get install firmware-iwlwifi laptop-mode-tools -y | |
| modprobe -r iwlwifi ; modprobe iwlwifi | |
| apt-get purge gnome-games-common gbrainy |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment