在树莓派杰西上自动启动铬-11/2015


13

我已经成功在raspbian jessie上加载了铬浏览器,并且正在尝试自动启动铬浏览器--kiosk模式...并且没有运气。我尝试了几种尝试,使用了不同的语法,包括@chromium和@ chromium-browser(带有输出路径)。任何指导表示赞赏。

在以下目录中-我具有以下命令 /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 2015年

2018年6月--incognito
-Chromium 56-

Answers:


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应该会自动以信息亭模式启动。

有关更多详细说明,请参见如何在Debian 8'jessie'上的GNOME 3.14中添加启动程序


1
如果它对其他人有帮助-我们的Chromium会定期冻结,因此我们使用此命令创建了一个cron作业,以每小时重新启动Chromium:0 * * * * killall chromium-browser; DISPLAY=:0 /usr/bin/chromium-browser --noerrdialogs --disable-session-crashed-bubble --disable-infobars --kiosk "http://www.website.com"&
rinogo

6

Raspbian Jessie Chromium引导至全屏:

*基于此网站为Raspbian Jessie加载了铬浏览器:-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

我需要将Chromium用于webrtc实时视频流概念;它看起来可以在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也为我做了把戏。
布拉姆
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.