LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
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


Reply
  Search this Thread
Old 10-11-2002, 10:14 AM   #1
samon
LQ Newbie
 
Registered: Apr 2002
Posts: 18

Rep: Reputation: 0
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
 
Old 10-11-2002, 12:04 PM   #2
jetblackz
Member
 
Registered: Mar 2002
Location: Debian Galaxy
Distribution: Debian
Posts: 711

Rep: Reputation: 30
Check with redhat.com for the same app in rpm.

what's your system's language and the reader's?
 
Old 10-11-2002, 12:24 PM   #3
samon
LQ Newbie
 
Registered: Apr 2002
Posts: 18

Original Poster
Rep: Reputation: 0
didn't find an rpm package of acrobat reader 5.
both are in english.
 
Old 10-11-2002, 12:31 PM   #4
neo77777
LQ Addict
 
Registered: Dec 2001
Location: Brooklyn, NY
Distribution: *NIX
Posts: 3,704

Rep: Reputation: 56
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.
 
Old 10-12-2002, 06:13 PM   #5
marktaff
Member
 
Registered: Jun 2001
Location: Bellevue, WA (Seattle)
Distribution: SuSE 9.3-10.0
Posts: 53

Rep: Reputation: 15
Why not just use KGhostView (if you have it)?

Alt+F2 Then `kghostview`

--Mark
 
Old 10-13-2002, 02:10 PM   #6
Thymox
Senior Member
 
Registered: Apr 2001
Location: Plymouth, England.
Distribution: Mostly Debian based systems
Posts: 4,368

Rep: Reputation: 64
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!
 
Old 10-25-2002, 12:19 PM   #7
filippo
LQ Newbie
 
Registered: Oct 2002
Location: Paris
Distribution: RedHat
Posts: 1

Rep: Reputation: 0
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
 
Old 12-17-2002, 08:08 AM   #8
dwains
LQ Newbie
 
Registered: Dec 2002
Location: Raleigh NC USA
Distribution: Red Hat
Posts: 18

Rep: Reputation: 0
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.
 
Old 12-17-2002, 09:27 AM   #9
Bert
Senior Member
 
Registered: Jul 2001
Location: 406292E 290755N
Distribution: GNU/Linux Slackware 8.1, Redhat 8.0, LFS 4.0
Posts: 1,004

Rep: Reputation: 46
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 ??)
 
Old 12-27-2002, 10:39 PM   #10
jpehling
LQ Newbie
 
Registered: Dec 2002
Location: Fremont, CA
Distribution: Red Hat 8.0
Posts: 2

Rep: Reputation: 0
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
 
Old 02-06-2003, 07:58 AM   #11
rjogie
LQ Newbie
 
Registered: Feb 2003
Posts: 1

Rep: Reputation: 0
to get Acrobat reader 5 to work with redhat 8, try this
env LANG=C /usr/local/Acrobat5/bin/acroread
 
Old 02-06-2003, 12:53 PM   #12
GtkUser
Member
 
Registered: Sep 2002
Location: Canada
Distribution: Redhat 9.0
Posts: 637

Rep: Reputation: 30
I had this same problem. Thanks for the correction.
 
Old 02-14-2003, 08:12 AM   #13
arunkj
LQ Newbie
 
Registered: Feb 2003
Posts: 1

Rep: Reputation: 0
If you like to open pdfs from KDE or Gnome, add double quotes around $1.

env LANG=C /usr/local/Acrobat5/bin/acroread "$1"
 
Old 02-24-2003, 12:29 AM   #14
kngharv
Member
 
Registered: Nov 2001
Location: China, USA
Distribution: SUN JDS/SUSE 9.1
Posts: 33

Rep: Reputation: 15
PDF, unicode

> env LANG=C /usr/local/Acrobat5/bin/acroread
>

Stupid question...

How to do that in csh /tcsh?

thanks
 
Old 02-24-2003, 01:32 AM   #15
Sonik21
LQ Newbie
 
Registered: Feb 2003
Location: East Coast
Distribution: OpenSuse 11.1 x64,Debian 5.0,PCBSD 7.1
Posts: 22

Rep: Reputation: 15
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
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
acrobat reader 7 alaios Debian 4 05-19-2005 10:48 AM
Acrobat reader prffzc Linux - Software 12 05-14-2005 12:07 AM
Acrobat Reader unixfreak *BSD 4 07-24-2004 10:15 AM
where is my acrobat reader ycli00 Linux - Networking 4 02-29-2004 07:42 AM
Acrobat reader 5.06 helenvale Linux - Newbie 10 07-27-2003 05:59 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 08:57 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration