본문 바로가기
실전 임베디드

raspberry pi keyboard layout 실전 임베디드 2016. 2. 5. 14:52

by BABEL-II 2019. 9. 22.

# raspi-config

여기서 미쿡 영어 키보드 선택

 

 

wifi 다른 거 사용할 때는

 

@raspberrypi-m:~$ cat /etc/rc.local

#!/bin/sh -e

#

# rc.local

#

# This script is executed at the end of each multiuser runlevel.

# Make sure that the script will "exit 0" on success or any other

# value on error.

#

# In order to enable or disable this script just change the execution

# bits.

#

# By default this script does nothing.

 

# Print the IP address

_IP=$(hostname -I) || true

if [ "$_IP" ]; then

  printf "My IP address is %s\n" "$_IP"

fi

 

ifconfig wlan0 down

 

exit 0

pi@raspberrypi-m:~$

 

FIN