본문 바로가기

작업일지/Raspberry Pi(라즈베리파이)

랩독(Lapdock)사용시 라즈비안의 키보드 레이아웃과 WLAN 설정 방법(외 soud출력).

랩독(Lapdock)사용시 라즈비안의 키보드 레이아웃과 WLAN 설정 방법.

 

1. 키보드 설정

키보드 레이아웃을 설정한다.

미설정시 "#"키등 몇가지 키가 제대로 나오지 않는다.


$ sudo vi /etc/default/keyboard

 

XKBMODEL="pc105"
XKBLAYOUT="us"             <= "gb"를 "us"로 변경
XKBVARIANT=""
XKBOPTIONS=""

BACKSPACE="guess"

2017.02.06

# rasp-config에서 키보드설정 메뉴가 있으며 이곳에서 설정하면 되는것으로 변경됨. 

rasp-config설명:https://wikidocs.net/3197


 

2. keymap 설정


 $ sudo setupcon

콘솔에서 글꼴 및 키보드를 설정한다. 

setupcon을 하지 않을 경우 keymap 관련하여 부팅시 시간이 걸린다.

 


3. wlan 설정

참고 : My Debian Linux(네트워크 설정)

         WL:Wifi Configuration


[WPA의 경우]


$ sudo vi /etc/network/interfaces

auto wlan0
iface wlan0 inet static
        address 192.168.1.120
        netmask 255.255.255.0
        broadcast 192.168.1.255
        gateway 192.168.1.1
        wpa-essid AP_NAME             
<= AP명칭
        wpa-key_mgmt NONE
        wpa-proto WEP                   <= WPA이어야 할듯??
        wpa-pairwise netdev
        wpa-group netdev
        wpa-psk 2K5AQ8D0DA          
<= 공유기 암호
        wpa-driver wext

        dns-nameservers 168.126.63.1




[WEP의 경우] 보안에 취약 함으로 추천 안함.

 

$ sudo vi /etc/network/interfaces

auto wlan0
iface wlan0 inet static
address 192.168.1.120
netmask 255.255.255.0
broadcast 192.168.1.255
gateway 192.168.1.1
wireless-essid AP_NAME                  <= AP명칭
wireless-key 2K5AQ8D0DA               <= 공유기 암호

dns-nameservers 168.126.63.1





[추가]

2017.02.06

Sound출력을 위해 /boot/config.txt에서 "#hdmi_drive=2"의 주석을 제거한다.

참고:http://elinux.org/R-Pi_Troubleshooting#I_don.27t_know_the_root_password


Sound

Sound does not work with an HDMI monitor

This is caused by some computer monitors which select DVI mode even if an HDMI cable is connected. This fix may be necessary even if other HDMI devices work perfectly on the same monitor (or TV)!

Edit the configuration file - see the instructions at R-Pi_ConfigurationFile.

Add the following line to the configuration file /boot/config.txt:

hdmi_drive=2