No se puede abrir la URL con xdg-open

No se puede abrir la URL con xdg-open

Obteniendo este error como usuario normal:

~$ xdg-open http://www.google.com/
xdg-open: no method available for opening 'http://www.google.com/'
~$
~$ xdg-mime query default text/html
~$

Código de /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'"
}

Sistema operativo: Ubuntu 16.04 Gnu/Linux

Respuesta1

El tipo MIME que utiliza xdg-open para los URI es x-scheme-handler/<scheme>, en su caso, x-scheme-handler/httpy x-scheme-handler/https. Puede poner una entrada para aquellos que usan el archivo .desktop que desee en su

${XDG_CONFIG_HOME:-$HOME/.config}/mimeapps.list

archivo.

información relacionada