Raspbian Jessie의 자동 시작 크롬-2015 년 11 월


13

raspbian jessie에 크롬 브라우저를 성공적으로로드했으며 크롬 브라우저-키오스크 모드를 자동 시작하려고하고 운이 없습니다. @chromium 및 @ chromium-browser (w / out path)를 포함하여 다양한 구문으로 여러 가지 시도를 시도했습니다. 모든 지침에 감사드립니다.

다음 디렉토리에-다음 명령이 있습니다. /etc/xdg/lxsession/LXDE-pi/autostart:

@lxpanel --profile LXDE-pi
@pcmanfm --desktop --profile LXDE-pi
@xscreensaver -no-splash
@sh ${HOME}/.config/lxsession/LXDE-pi/autokey.sh
@/usr/bin/chromium-browser --noerordialogs --disable-session-crashed-bubble --disable-infobars --kiosk http://www.website.com

1
해야 --noerordialogs--noerrdialogs? 참조 여기
SausageFingers

2018 년 6 월 --incognito
-Chromium 56-

답변:


28

Raspbian (Jessie)의 경우이 솔루션이 저에게 효과적이었습니다.

에 새 .desktop 파일을 만듭니다 ( ~/.config/autostart/예 :

sudo nano ~/.config/autostart/autoChromium.desktop

그런 다음 다음을 추가하십시오.

[Desktop Entry]
Type=Application
Exec=/usr/bin/chromium-browser --noerrdialogs --disable-session-crashed-bubble --disable-infobars --kiosk http://www.website.com
Hidden=false
X-GNOME-Autostart-enabled=true
Name[en_US]=AutoChromium
Name=AutoChromium
Comment=Start Chromium when GNOME starts

그런 다음 재부팅하십시오. 데스크톱이로드 된 후 Chromium이 키오스크 모드에서 자동으로 시작됩니다.

자세한 설명 은 데비안 8 'jessie'에서 그놈 3.14의 시작 프로그램을 추가하는 방법을 참조하십시오 .


1
다른 사람에게 도움이되는 경우 0 * * * * killall chromium-browser; DISPLAY=:0 /usr/bin/chromium-browser --noerrdialogs --disable-session-crashed-bubble --disable-infobars --kiosk "http://www.website.com"&
-Chromium

6

전체 화면으로의 Raspbian Jessie Chromium 부팅 :

* Raspbian 제시를위한로드 크롬 브라우저이 사이트를 기반으로 : - https://www.raspberrypi.org/forums/viewtopic.php?t=121195&p=818455

*이 지침에서 Chromium "전체 화면으로 부팅"을 받았습니다. 사이트 : http://www.0atman.com/auto-start-full-screen-web-page-on-raspbian-jessie-startup.html 파일 만들기 ~/.config/autostart/chromium.desktop다음 내용으로 호출 됩니다.

[Desktop Entry]
Encoding=UTF-8
Name=Connect
Comment=Checks internet connectivity
Exec=/usr/bin/chromium-browser -incognito --kiosk YOUR_WEB_ADDRESS

webrtc 라이브 비디오 스트림 개념을 위해 Chromium을 사용해야했습니다. V9 코덱 스트림에서 안정적으로 실행되는 것 같습니다 ... H.264 / 5로 시도해보십시오. 나는 주현절이 작동했지만 몇 분의 비디오 피드 후에 충돌했습니다.


2

시작시 스크립트를 실행하는 방법은 다음과 같습니다. 시작시 bash 스크립트 실행

bash 스크립트에 명령을 넣어보십시오. 예 :

#!/bin/bash
/usr/bin/chromium-browser --noerordialogs --disable-session-crashed-bubble --disable-infobars --kiosk http://www.website.com

그것을 실행 가능하게 만드십시오 :

chmod +x {path of the script}/nameofscript.sh

그리고 이것을 시도하십시오 :

sudo update-rc.d {path of the script}/nameofscript.sh defaults

감사합니다. Raspbian-Jessie에서 일한다면 나는 그것을 밖으로 시도하고 투표 할 것입니다. 나는 Wheezy와 Jessie 사이에 약간의 변화가 있음을 알고 있지만 ... 당신의 대답은 훨씬 깨끗합니다. 답변 감사합니다!
Glenn R

2

Raspberry 3이 포함 된 Raspian Jessie의 경우 올바른 디렉토리는 ~ / .config / autostart입니다.

중요 : 설정 전 포인트

여러 개의 자동 시작이 있기 때문에! 나를 위해 (pi 사용자)를 사용합니다 : home / pic.config / autostart


2
나에게 맞는 디렉토리 : /home/pi/.config/lxsession/LXDE-pi/autostart
piotr

1
sudo nano .config/lxsession/LXDE-pi/autostart나에게도 속임수를 썼다.
Bram
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.