是否可以在不启动Raspberry Pi桌面的情况下启动Chromium?
我可以通过编辑$ HOME / .xinitrc并在Medori中编写来启动Medori,但由于某些原因,无法启动Chromium。
输出是这样的: 来自xkbcomp的错误对X服务器来说并不致命 [1:1:1234563078:错误:nss_util.cc(692)]无法加载NSS库 在现有浏览器会话中创建新窗口。 xinit:与X服务器的连接丢失
更新
参考here的评论,似乎可以在没有启动LXDE的情况下启动Chromium。
谴责评论:
编辑/home/myuser/.xinitrc
unclutter -idle 15 -root &
xset -dpms &
xset s off &
exec chromium -incognito -kiosk “http://your.web.site”
编辑/etc/rc.local
su – myuser -c “startx” &
exit 0
但是,错误仍然存在, [1:1:1234563078:错误:nss_util.cc(692)]无法加载NSS。
我可以重新安装这些库,在没有LXDE之类的情况下给它任何启动权吗?
THX
答案 0 :(得分:1)
我有同样的问题但后来意识到我需要将呼叫置于循环中。这就是我正在使用的,它工作正常。
# Disable DPMS.
xset -dpms
while true; do
# Clean up previously running apps, gracefully at first then harshly
killall -TERM chromium 2>/dev/null;
killall -TERM matchbox-window-manager 2>/dev/null;
sleep 2;
killall -9 chromium 2>/dev/null;
killall -9 matchbox-window-manager 2>/dev/null;
# Launch window manager without title bar.
exec matchbox-window-manager -use_titlebar no &
# Launch browser.
chromium --incognito --kiosk http://mammothworkwear.com
done;
另请注意,命令行选项以双连字符开头 -