Skip to content

Instantly share code, notes, and snippets.

@chr33s
Last active July 28, 2016 20:00
Show Gist options
  • Select an option

  • Save chr33s/fe46e38edcc451c853e4bacdcefea52d to your computer and use it in GitHub Desktop.

Select an option

Save chr33s/fe46e38edcc451c853e4bacdcefea52d to your computer and use it in GitHub Desktop.
debian
su
apt-get install sudo
adduser chr33s sudo
exit
sudo vi /etc/apt/sources.list
>>>
deb http://ftp.us.debian.org/debian/ jessie main contrib non-free
deb-src http://ftp.us.debian.org/debian/ jessie main contrib non-free
deb http://security.debian.org/ jessie/updates main contrib non-free
deb-src http://security.debian.org/ jessie/updates main contrib non-free
<<<
sudo apt-get update
sudo apt-get install firmware-b43-installer
sudo modprobe -r b43 && sudo modprobe b43
sudo reboot now
wpa_passphrase NETGEAR34 | sudo tee /etc/network/interfaces.d/wlan0
# edit /etc/network/interfaces.d/wlan0
>>>
auto wlan0
iface wlan0 inet dhcp
wpa-ssid YOUR-SSID-HERE
wpa-psk YOUR-PASSWORD-HERE
<<<
sudo ifup wlan0
curl -O https://gist.github.com/chr33s/fab7ce71d2bf4a9bf4daadb37dc13cc0/archive/1e713a73520a73d282dac933534c0bd69854a927.zip
unzip 1e713a*
sudo mv iptables /etc/network/if-pre-up.d/iptables
sudo chmod +x /etc/network/if-pre-up.d/iptables
sudo mkdir -p /etc/iptables
sudo mv rules.v4 /etc/iptables/rules.v4
sudo mv rules.v6 /etc/iptables/rules.v6
sudo apt-get install xorg openbox
echo "deb http://mozilla.debian.net/ jessie-backports firefox-release" | sudo tee /etc/apt/sources.list.d/mozilla.list
sudo apt-get update
sudo apt-get install --no-install-recommends curl make git vagrant virtualbox firefox xul-ext-ublock-origin
startx
@chr33s
Copy link
Author

chr33s commented Jul 28, 2016

ADD: SOUND

sudo apt-get install alsa-base alas-utils
alsactl init

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment