Notice
Recent Posts
Recent Comments
Link
«   2024/05   »
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31
Tags more
Archives
Today
Total
관리 메뉴

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