반응형
자동 실행 /etc/rc.local 에서 실행이 잘 안되는 경우
※ 라즈베리파이3 B or B+ 스크립트 자동 실행 /etc/rc.local 에서 실행이 잘 안되는 경우
$sudo nano /etc/profile.d/bash_completion.sh
이 파일을 열어서 명령줄을 추가할 것. 내용은 아래 코드를 참고할 것
# Check for interactive bash and that we haven't already been sourced.
if [ -n "$BASH_VERSION" -a -n "$PS1" -a -z "$BASH_COMPLETION_COMPAT_DIR" ]; then
# Check for recent enough version of bash.
bash=${BASH_VERSION%.*}; bmajor=${bash%.*}; bminor=${bash#*.}
if [ $bmajor -gt 4 ] || [ $bmajor -eq 4 -a $bminor -ge 1 ]; then
[ -r "${XDG_CONFIG_HOME:-$HOME/.config}/bash_completion" ] && \
. "${XDG_CONFIG_HOME:-$HOME/.config}/bash_completion"
if shopt -q progcomp && [ -r /usr/share/bash-completion/bash_completion ]; then
# Source completion code.
. /usr/share/bash-completion/bash_completion
fi
fi
unset bash bmajor bminor
fi
반응형
'개발자 > Raspberry Pi3' 카테고리의 다른 글
라즈베리파이를 AP모드로 변경시 에러 처리 (0) | 2019.10.09 |
---|---|
라즈베리파이3 B+ 데이터베이스 설치 실행 문제, error while loading shared libraries: libmysqlclient.so.18: cannot open shared object file: No such file or director (1) | 2019.10.09 |
건설 현장 안전 시스템 IoT 장비 - 여기서 일부 매듭 (0) | 2019.10.03 |
파이선 소켓 프로그램 1 - 서버와 클라이언트 (1) | 2019.09.04 |
RASPBERRY PI 3 B+ 블루투스 스캐너 설정 (0) | 2019.08.05 |
라즈베리파이를 사용할 때 알아야 할 것들. (0) | 2019.08.05 |
시리얼 통신을 지원하는 PySerial 설치하기 (0) | 2019.07.03 |
라즈베리파이 화면 꺼짐 중지, Disable Screen Saver In Raspberrypi (0) | 2019.05.17 |
더욱 좋은 정보를 제공하겠습니다.~ ^^