问题描述
我想知道打开默认Web浏览器的终端命令是什么。
最佳解决方法
sensible-browser是您正在寻找的命令。
次佳解决方法
在Google上搜索我找到了答案。
xdg-open opens a file or URL in the user’s preferred application. If a URL is provided the URL will be opened in the user’s preferred web browser. If a file is provided the file will be opened in the preferred application for files of that type. xdg-open supports file, ftp, http and https URLs.
xdg-open是xdg-utils软件包的一部分,它已经安装在Ubuntu 10.10上。
第三种解决方法
您还可以使用:
x-www-browser http://some-url.org
它将在默认浏览器中打开URL。
第四种方法
使用默认的Ubuntu设置时,只会想到gnome-open命令。
gnome-open http://askubuntu.com
第五种方法
我玩了一下这个。 gnome-open存在问题 – 除非您指定网址,否则它不会调用默认的网络浏览器。如果要设置始终启动设置为默认的浏览器的图标或快捷方式,则会出现问题。其他时候,您可能需要将其设置为某些程序的参数,这些程序需要链接到Web浏览器并且与gnome-open不兼容(例如:acroread)。您可以使用可以通过update-alternatives设置的x-www-browser或gnome-www-browser系统链接来解决此问题,但这些是系统范围的设置,而不是用户特定的(并且它们与通过gnome-default-applications-properties设置的值不同步。所有这些都可以通过打开来解决sensible-browser可执行文件(实际上是一个脚本):
sudo gedit $(which sensible-browser)
并在开头添加:
#!/bin/bash
BROWSER=$(gconftool -g /desktop/gnome/url-handlers/http/command)
export BROWSER="${BROWSER//""%s""/}"
这将使sensible-browser始终启动user-specified默认Web浏览器。 (我发现gnome-default-applications-properties根据当前设置的浏览器更改了一些gconf密钥。默认浏览器值可以从任何这些密钥中获取,所以我去了/desktop/gnome/url-handlers/http/command并用它来填充$BROWSER变量(该值被剥去了"%s"部分)。)
参考资料
问题描述 我想知道打开默认Web浏览器的终端命令是什么。 最佳解决方法 sensible-browser是您正在寻找的命令。 次佳解决方法 在Google上搜索我找到了答案。 xdg-open opens a file or URL in the user’s preferred application. If a URL is provided the URL will be opened in the user’s preferred web browser. If a file is provided the file will be opened in the preferred application for files of that type. xdg-open supports file, ftp, http and https URLs. xdg-open是xdg-utils软件包的一部分,它已经安装在Ubuntu 10.10上。 第三种解决方法 您还可以使用: x-www-browser http://some-url.org 它将在默认浏览器中打开URL。 第四种方法 使用默认的Ubuntu设置时,只会想到gnome-open命令。 gnome-open http://askubuntu.com 第五种方法 我玩了一下这个。 gnome-open存在问题 – 除非您指定网址,否则它不会调用默认的网络浏览器。如果要设置始终启动设置为默认的浏览器的图标或快捷方式,则会出现问题。其他时候,您可能需要将其设置为某些程序的参数,这些程序需要链接到Web浏览器并且与gnome-open不兼容(例如:acroread)。您可以使用可以通过update-alternatives设置的x-www-browser或gnome-www-browser系统链接来解决此问题,但这些是系统范围的设置,而不是用户特定的(并且它们与通过gnome-default-applications-properties设置的值不同步。所有这些都可以通过打开来解决sensible-browser可执行文件(实际上是一个脚本): sudo gedit $(which sensible-browser) 并在开头添加: #!/bin/bash BROWSER=$(gconftool -g /desktop/gnome/url-handlers/http/command) export BROWSER="${BROWSER//""%s""/}" 这将使sensible-browser始终启动user-specified默认Web浏览器。 (我发现gnome-default-applications-properties根据当前设置的浏览器更改了一些gconf密钥。默认浏览器值可以从任何这些密钥中获取,所以我去了/desktop/gnome/url-handlers/http/command并用它来填充$BROWSER变量(该值被剥去了"%s"部分)。) 参考资料
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/291561.html