# 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
'실전 임베디드' 카테고리의 다른 글
| raspberry pi bluetooth 실전 임베디드 2016. 2. 11. 15:17 (0) | 2019.09.22 |
|---|---|
| raspberry pi boot script /etc/init.d 실전 임베디드 2016. 2. 5. 16:29 (0) | 2019.09.22 |
| raspberry pi wifi가 자꾸 잠을 자요... 실전 임베디드 2016. 1. 29. 20 (0) | 2019.09.22 |
| bluetooth rfcommclient rfcommserver 실전 임베디드 2016. 2. 11. 15:27 (0) | 2019.09.22 |
| raspberry pi serial 실전 임베디드 2016. 1. 29. 19:47 (0) | 2019.09.22 |