Pure Software Engineer :)
Raspberry pi 2 Wireless lan setting in Raspbian 본문
Software Engineering/Etc
Raspberry pi 2 Wireless lan setting in Raspbian
HelloJaewon 2015. 4. 26. 00:27비록 라즈비안 뿐만 아니라
debian 계열의 리눅스에서 무선 랜 설정하는 방법에 공통으로 적용될 것 같다.
// /etc/network/interfaces 파일을 아래와 같이 수정
auto lo
iface lo inet loopback
iface eth0 inet dhcp
allow-hotplug wlan0
auto wlan0
iface wlan0 inet dhcp
wpa-ssid "Your Network SSID"
wpa-psk "Your Password"
// networking 재시작 (또는 리눅스 재부팅)
$ sudo /etc/init.d/networking restart
References
http://raspberrypihq.com/how-to-add-wifi-to-the-raspberry-pi/
'Software Engineering > Etc' 카테고리의 다른 글
boost library windows build (0) | 2015.09.11 |
---|---|
[Network] SO_KEEIALIVE, SIO_KEEPALIVE_VALS (0) | 2015.08.19 |
Microsoft symbol server 설정 (0) | 2015.04.23 |
[MongoDB] TTL Index Update (0) | 2015.04.21 |
OSX에 Consolas 폰트 설치 방법 (0) | 2015.02.21 |