Why don't hyperlinks open in evince document viewer?

5,741

You encountered a bug but there is a quick fix, I just did it and it worked, thanks to @maggotbrain by the way. He pointed me to this comment, and the suggested solution worked. So I was able to fix this issue with google chrome by doing the following:

  1. Open a terminal, type gksudo nautilus and hit enter,type your password and hit enter again, so now you are running nautilus with root privileges.
  2. On nautilus go to /etc/apparmor.d/abstractions/
  3. Open the ubuntu-helpers file and locate this lines inside:

    # Allow exec of libexec applications in /usr/lib*

    /usr/lib*/{,**/}* Pixr,

  4. You will insert this block of text after those lines:

    # From https://bugs.launchpad.net/ubuntu/+source/apparmor/+bug/964510/comments/12
    # While the chromium and chrome sandboxes are setuid root, they only link
    # in limited libraries so glibc's secure execution should be enough to not
    # require the santized_helper (ie, LD_PRELOAD will only use standard system
    # paths (man ld.so)).
    /usr/lib/chromium-browser/chromium-browser-sandbox PUxr,
    /opt/google/chrome/chrome-sandbox PUxr,
    /opt/google/chrome/google-chrome Pixr,
    /opt/google/chrome/chrome Pixr,
    /opt/google/chrome/lib*.so{,.*} m,
    

    but before this line:

    # Full access
    
  5. Save the file, close nautilus.

  6. Finally, type sudo apparmor_parser -T -W -r /etc/apparmor.d/usr.bin.evince on the terminal and hit enter, wait a few seconds until there is a line break and the cursor is awaiting for new input, this means the command went through with no problems :) hope it was helpful.

Share:
5,741

Related videos on Youtube

Jan Bijman
Author by

Jan Bijman

Updated on September 18, 2022

Comments

  • Jan Bijman
    Jan Bijman almost 2 years

    I am using Evince document viewer as default in ubuntu 12.04.

    How do I get a hyperlink to open when clicking on it?

  • JorgeArtware
    JorgeArtware almost 11 years
    If by any chance it didn't work just open the file again, erase the same lines, save it and run sudo apparmor_parser -T -W -r /etc/apparmor.d/usr.bin.evince again.
  • Cerin
    Cerin over 7 years
    What does this have to do with the OP's question?
  • James Ray
    James Ray over 6 years
    I went through all of this, as well as other stuff here, but haven't been successful yet, I still get the same error: askubuntu.com/questions/997511/….
  • James Ray
    James Ray over 6 years
    I tried reordering chrome, firefox and brave to brave, firefox and chrome (I prefer this order), but that didn't help.
  • Kvothe
    Kvothe over 2 years
    I am having the same issue. Is this still a bug in 20.04? I feel like this was probably fixed the last ten years and I am dealing with something else.