作為普通用戶收到此錯誤:
~$ xdg-open http://www.google.com/
xdg-open: no method available for opening 'http://www.google.com/'
~$
~$ xdg-mime query default text/html
~$
程式碼來自 /usr/bin/xdg-open
# if BROWSER variable is not set, check some well known browsers instead
if [ x"$BROWSER" = x"chromium" ]; then
BROWSER=links2:elinks:links:lynx:w3m
if [ -n "$DISPLAY" ]; then
BROWSER=firefox:mozilla:epiphany:konqueror:chromium:google-chrome:$BROW$
fi
fi
open_envvar "$1"
exit_failure_operation_impossible "no method available for opening '$1'"
}
作業系統:Ubuntu 16.04 Gnu/Linux
答案1
xdg-open 用於 URI 的 MIME 類型是x-scheme-handler/<scheme>
,在您的情況下是x-scheme-handler/http
和x-scheme-handler/https
。您可以為那些使用所需 .desktop 檔案的使用者新增一個項目
${XDG_CONFIG_HOME:-$HOME/.config}/mimeapps.list
文件。