Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum. |
| Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
 |
GNU/Linux Basic Guide
This 255-page guide will provide you with the keys to understand the philosophy of free software, teach you how to use and handle it, and give you the tools required to move easily in the world of GNU/Linux. Many users and administrators will be taking their first steps with this GNU/Linux Basic guide and it will show you how to approach and solve the problems you encounter.
Click Here to receive this Complete Guide absolutely free. |
|
 |
|
10-11-2002, 10:14 AM
|
#1
|
|
LQ Newbie
Registered: Apr 2002
Posts: 18
Rep:
|
acrobat reader
I installed the latest versin of acrobat reader for linux (506) on RH 8.0 and when I run the command :
/usr/local/Acrobat5/bin/acroread
I get the following error:
Warning: charset "UTF-8" not supported, using "ISO8859-1".
Aborted
and the program doesn't run, any ideas?
thanx in advance
|
|
|
|
10-11-2002, 12:04 PM
|
#2
|
|
Member
Registered: Mar 2002
Location: Debian Galaxy
Distribution: Debian
Posts: 711
Rep:
|
Check with redhat.com for the same app in rpm.
what's your system's language and the reader's?
|
|
|
|
10-11-2002, 12:24 PM
|
#3
|
|
LQ Newbie
Registered: Apr 2002
Posts: 18
Original Poster
Rep:
|
didn't find an rpm package of acrobat reader 5.
both are in english.
|
|
|
|
10-11-2002, 12:31 PM
|
#4
|
|
LQ Addict
Registered: Dec 2001
Location: Brooklyn, NY
Distribution: *NIX
Posts: 3,704
Rep:
|
Hah, I believe you have to hunt it to the kernel. In kernel configuration there is support for Unicode character set, it should be loaded as module or builtin, this is in filesystem->native language support.
|
|
|
|
10-12-2002, 06:13 PM
|
#5
|
|
Member
Registered: Jun 2001
Location: Bellevue, WA (Seattle)
Distribution: SuSE 9.3-10.0
Posts: 53
Rep:
|
Why not just use KGhostView (if you have it)?
Alt+F2 Then `kghostview`
--Mark
|
|
|
|
10-13-2002, 02:10 PM
|
#6
|
|
Senior Member
Registered: Apr 2001
Location: Cornwall, England.
Distribution: Debian + Ubuntu
Posts: 4,345
Rep:
|
Or just run it from a console (xterm, konsole, you name it). Alt-F2 is a KDE specific thing. There are many different pdf viewers under Linux: xpdf, ghostview, kghostview to name just a few. You don't even need the Adobe stuff to make pdf files under Linux. Have a go at the other pdf viewers, they're really quite good!
|
|
|
|
10-25-2002, 12:19 PM
|
#7
|
|
LQ Newbie
Registered: Oct 2002
Location: Paris
Distribution: RedHat
Posts: 1
Rep:
|
acroread with RH8.0
Hi,
just go there:
http://www.redhat.com/docs/manuals/l...ase-notes/x86/
Basically you need to tell the program that your env for lang is C:
bash$ env LANG=C acroread
and this works.
Cheers,
Filippo
|
|
|
|
12-17-2002, 08:08 AM
|
#8
|
|
LQ Newbie
Registered: Dec 2002
Location: Raleigh NC USA
Distribution: Red Hat
Posts: 18
Rep:
|
Fix for launching arcoread 5 from browser
I saw this good info here about this language locale issue with Acrobat 5.
I wrote this quickie script so I could launch arcoread from the helper
applications in Netscape.
Save the lines below as arrh8. I put this file in /usr/local/Acrobat5/bin
---------------------------------------------------------
#! /bin/bash
env LANG=C /usr/local/Acrobat5/bin/acroread $1
----------------------------------------------------------
Make the file executable (as root)
chmod 755 arrh8
chown bin.bin arrh8
Then add the following info to your browser config to launch arcroread
when you click on a pdf.
(the following is for Netscape 7 - Mozilla should be similar)
Go down the menu path Edit | Preferences | Navigator | Helper Applications
Click "New Type"
Description of Type: PDF files
File Extension: pdf
Mime type: application/pdf
Application to use: /usr/local/Acrobat5/bin/arrh8
Acrobat 5 should now launch when you click on a pdf file.
Hope this helps.
|
|
|
|
12-17-2002, 09:27 AM
|
#9
|
|
Senior Member
Registered: Jul 2001
Location: 406292E 290755N
Distribution: GNU/Linux Slackware 8.1, Redhat 8.0, LFS 4.0
Posts: 1,004
Rep:
|
I got round this one by installing version 4.05 which runs fine and has pretty well the same features as 5.0 and 5.05.
I'm still not impressed generally by the way Linux handles pdfs. (Why isn't xpdf as good as Acrobat ??)
|
|
|
|
12-27-2002, 10:39 PM
|
#10
|
|
LQ Newbie
Registered: Dec 2002
Location: Fremont, CA
Distribution: Red Hat 8.0
Posts: 2
Rep:
|
Thanks to dwains and the rest who helped me get Acrobat Reader 5 running under Red Hat 8. You are great.
One advantage of Adobe's PDF reader versus otherwise fine readers like xpdf or kghostview is the former's ability to search PDF files for strings. Another is the "Fit Width" and "Fit Visible" viewing modes, which tend to produce reasonable size type automatically, without any need to zoom.
--Jamie
|
|
|
|
02-06-2003, 07:58 AM
|
#11
|
|
LQ Newbie
Registered: Feb 2003
Posts: 1
Rep:
|
to get Acrobat reader 5 to work with redhat 8, try this
env LANG=C /usr/local/Acrobat5/bin/acroread
|
|
|
|
02-06-2003, 12:53 PM
|
#12
|
|
Member
Registered: Sep 2002
Location: Canada
Distribution: Redhat 9.0
Posts: 637
Rep:
|
I had this same problem. Thanks for the correction.
|
|
|
|
02-14-2003, 08:12 AM
|
#13
|
|
LQ Newbie
Registered: Feb 2003
Posts: 1
Rep:
|
If you like to open pdfs from KDE or Gnome, add double quotes around $1.
env LANG=C /usr/local/Acrobat5/bin/acroread "$1"
|
|
|
|
02-24-2003, 12:29 AM
|
#14
|
|
Member
Registered: Nov 2001
Location: China, USA
Distribution: SUN JDS/SUSE 9.1
Posts: 33
Rep:
|
PDF, unicode
> env LANG=C /usr/local/Acrobat5/bin/acroread
>
Stupid question...
How to do that in csh /tcsh?
thanks
|
|
|
|
02-24-2003, 01:32 AM
|
#15
|
|
LQ Newbie
Registered: Feb 2003
Location: East Coast
Distribution: OpenSuse 11.1 x64,Debian 5.0,PCBSD 7.1
Posts: 22
Rep:
|
another fix to the acrobat 5 error
edit the the acroread shell script in /usr/local/Acrobat5/bin directory and 2 lines @ the top of the script.
heres what the top of the file looks like
#!/bin/sh
#
ver=5.0
install_dir=/usr/local/Acrobat5/Reader
then you add these lines
LANG=en_US
export LANG
so your script should look like
#!/bin/sh
#
LANG=en_US
export LANG
ver=5.0
install_dir=/usr/local/Acrobat5/Reader
|
|
|
|
| Thread Tools |
Search this Thread |
|
|
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT -5. The time now is 08:58 AM.
|
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|