Last active
December 18, 2015 07:00
-
-
Save JiriChara/5743819 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
# Wifi | |
echo "deb http://http.debian.net/debian/ wheezy main contrib non-free" | sudo tee -a /etc/apt/sources.list | |
sudo apt-get update && sudo apt-get install firmware-iwlwifi | |
sudo modprobe -r iwlwifi ; sudo modprobe iwlwifi | |
# No crackling sound on reboot | |
echo "options snd-hda-intel single_cmd=1" | sudo tee -a /etc/modprobe.d/alsa-base.conf | |
# No beep on reboot | |
# in /etc/inputrc uncomment: | |
set bell-style none | |
# mute beep in alsamixer too | |
# No wifi led blinking | |
echo "echo \"options iwlcore led_mode=1\" >> /etc/modprobe.d/wlan.conf" | sudo bash | |
# NVIDIA 880M Proprietary Driver | |
sudo aptitude update | |
sudo aptitude -r install linux-headers-$(uname -r|sed 's,[^-]*-[^-]*-,,') nvidia-kernel-legacy-173xx-dkms | |
sudo mkdir /etc/X11/xorg.conf.d | |
echo -e 'Section "Device"\n\tIdentifier "My GPU"\n\tDriver "nvidia"\nEndSection' > /etc/X11/xorg.conf.d/20-nvidia.conf | |
# No failed to get i915 symbols, graphics turbo disabled on boot | |
sudo echo "softdep intel_ips pre: i915" > /etc/modprobe.d/intel-ips-dep-i915.conf |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment