• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

simple linux application installation question

walla

Senior member
I'm sure this is simple for the linux/unix people here:

I installed a new version of Adobe Acrobat (7.0) for linux. I delete the old version of AA (5.0).

How do I make it so I can type "acroread" from any location to launch the application?

 
Make sure the acroread binary is in your $PATH.

Of course, if you're just reading PDFs, why not use xpdf? It's much lighter.
 
To expand a bit on what bersl2 said...

Type echo $PATH. You need to get the directory where acroread lives in there. I don't know what directory that is - probably /usr/local/acroread or something similar. Browse around until you figure it out. Once you know the directory, check out /home/yourname/.bashrc or /home/yourname/.bash_profile. Depending on which distro you use, one of those files (try .bashrc first) will have some lines to set your path. Add the directory in there, then open a new terminal and you should be set.
 
Back
Top