Last active
August 29, 2015 14:20
-
-
Save spencersalazar/9f7306c155045f2828b1 to your computer and use it in GitHub Desktop.
Satellite CCRMA + wifi
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
auto lo | |
iface lo inet loopback | |
iface eth0 inet static | |
address 192.168.105.106 | |
netmask 255.255.255.0 | |
gateway 192.168.105.105 | |
auto wlan0 | |
allow-hotplug wlan0 | |
iface wlan0 inet dhcp | |
wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf |
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
See https://wiki.archlinux.org/index.php/WPA_supplicant | |
http://www.cs.upc.edu/lclsi/Manuales/wireless/files/wpa_supplicant.conf | |
https://wiki.debian.org/WiFi/HowToUse#Command_Line | |
edit these files: | |
avahi-daemon.conf | |
/etc/default/avahi-daemon (set thing to 0) | |
/etc/network/interfaces | |
/etc/wpa_supplicant/wpa_supplicant.conf | |
/etc/hostname | |
also potentially chmod the /etc/ files | |
cool commands | |
sudo ifdown wlan0 | |
sudo ifup wlan0 | |
sudo /etc/init.d/avahi-daemon (start|stop|restart) | |
route |
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
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev | |
update_config=1 | |
network={ | |
ssid="ssid" | |
scan_ssid=1 | |
key_mgmt=WPA-PSK | |
psk="pwd" | |
} | |
network={ | |
ssid="CASecure" | |
scan_ssid=1 | |
key_mgmt=IEEE8021X WPA-EAP | |
identity="your calarts wifi user name" | |
password="your calarts wifi password" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment