Of Karit
라즈베리파이4 부팅시 자동실행 본문
라즈베리파이4 / OS (라즈비안)
부팅시 자동 실행 하는 방법 중 autostart 파일 수정 방법
LXDE(Lightweight X11 Desktop Environment)는 유닉스, POSIX 호환 플랫폼(리눅스, BSD, 라즈비안)에서 사용할 수 있는 자유 오픈소스 데스크톱 환경
$ sudo vi ~/.config/lxsession/LXDE-pi/autostart
@lxpanel --profile LXDE-pi
@pcmanfm --desktop --profile LXDE-pi
@xscreensaver -no-splash
@lxterminal --command=/home/pi/startp
위의 볼드체와 같이 자동 실행되는 프로그램(startp)을 경로와 함께 파일명을 작성하고 재부팅
아래와 같은 명령어로 작성해도 동작
@lxterminal -e ~/startp
아직 이유는 모르겠지만 ~/.config/lxsession/LXDE-pi/autustart 에 없는 경우도 존재
그럴때 /etc/xdg/lxsession/LXDE-pi/autostart 에는 존재
tip) @lxterminal --geometry=80x24를 추가하면 부팅시 터미널 자동 실행
$ sudo apt-get install lxsession-default-apps
Comments