通常ユーザーとしてこのエラーが発生します:
~$ 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
ファイル。