我需要在Debian 8.0中登录后立即打开一个chrome浏览器(全屏+ localhost:8080),我部分能够用以下命令实现相同的功能 -
#!/bin/bash
sensible-browser 127.0.0.1:8080 ---- this opens the browser with the URL
sensible-browser --kiosk 127.0.0.1:8080 ---- this opens the browser in full screen but not with the URL
我正在考虑另一种方法,如果我可以使用命令设置浏览器默认页面,则上面的行可以全屏打开浏览器,但不知道如何操作。
请帮忙。提前谢谢!
答案 0 :(得分:0)
此行为是由sensible-browser
命令引起的。如果您查看脚本(可能在/usr/bin/sensible-browser
),您可能会看到此脚本只接受第一个参数。
您可以通过运行Chrome可执行文件(通常名为google-chrome
。
google-chrome '127.0.0.1:8000' --kiosk
或google-chrome --kiosk '127.0.0.1:8000'
都可以正常使用。