英文:
chrome_browser_cloud_management_controller.cc(162)] Cloud management controller initialization aborted as CBCM is not enabled
问题
这是一个用于 chromium-browser 的命令行指令:
chromium-browser --kiosk --start-fullscreen /home/lando2319/WeatherWindow/home.html
实际上,这个命令可以正常打开浏览器,但会留下以下命令行提示:
[5488:5488:0520/174814.193710:ERROR:chrome_browser_cloud_management_controller.cc(162)] Cloud management controller initialization aborted as CBCM is not enabled.
不幸的是,这个提示会导致浏览器挂起,当您按下Ctrl+C时,才能退出窗口。
您知道如何打开这个窗口而不受此提示消息的影响吗?
英文:
Here is a CLI command for chromium-browser
chromium-browser --kiosk --start-fullscreen /home/lando2319/WeatherWindow/home.html
This is actually opening the browser just fine, but it leaves me with the command
[5488:5488:0520/174814.193710:ERROR:chrome_browser_cloud_management_controller.cc(162)] Cloud management controller initialization aborted as CBCM is not enabled.
Unfortunately this just hangs, and eventually when I press control c, it escapes the window.
Do you know how I can open this window and not be held hostage by this message?
答案1
得分: 3
--disable-extensions
完成任务。
其中一个 '相关问题' 是 "树莓派上的 Chromium 破坏键盘输入",这导致我找到了这个标志,摆脱了错误,并按预期打开了文件。感谢 Stackoverflow,这个 '相关问题' 真是太完美了。
https://stackoverflow.com/a/42319666/2066855
英文:
--disable-extensions
does the job
One of the, 'related questions', was "Chromium on Raspberry Pi breaking keyboard input", this lead me to this flag which got rid of the error, and opened the file as expected. Thanks Stackoverflow, this 'related question' was perfect.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论