I just tried this with the version I installed manually (from the tar.bz2 file),
and it all worked correctly, so it would appear to be an issue with the IPS 
pkg...

I'm wondering if the .desktop file and/or mime-types have been correctly set up.
Have you rebooted since installing it, or maybe restarted the desktop-cache
services?

You could try doing something like the following, to figure out what the exact
command being called is (I'm sure dtrace could do this too, but I can't think of
it off hand):

$ mv /usr/bin/acroread /usr/bin/acroread-installed
$ cat > /usr/bin/acroread <<_EOF
#!/bin/sh
exec > /tmp/acroead.$$.log 2>&1
for arg in $0 $@
do
    echo "'$@'"
done
exec $0-installed ${1+"$@"}
_EOF
$ chmod 755 /usr/bin/acroread

And then try again - this will output the arguments (one per line to be sure we
see how spaces are interpreted, etc.) to a log file in /tmp.

To undo, just "mv /usr/bin/acroread-installed /usr/bin/acroread".

This might give some clue as to what is happening...

Darren.


On 26/03/2009 08:51, solarg wrote:
> hello all,
> i've just installed it on my os2008.11, it's great, but it's unable to 
> open pdf documents in url.
> Try:
> http://www.cmi.univ-mrs.fr/~herbin/L1/Hefferon/book.pdf
> or
> https://extranet.ac-versailles.fr/ensup/galaxie/Emplois%20re-publi%E9s.pdf
> 
> The pdf is in /tmp/plugtmp-1/:
> # find /tmp -name '*.pdf'
> /tmp/plugtmp-1/plugin-Emplois%20re-publi%E9s.pdf
> /tmp/plugtmp-1/plugin-book.pdf
> 
> but nothing is display in firefox! and yes, nppdf.so is correctly 
> installed in /usr/lib/firefox/plugins
> 
> if i excute firefox in terminal, i got this error:
> ?Usage : acroread [options] [liste de fichiers]
> Ex?cutez 'acroread-help' pour afficher la liste compl?te des options 
> disponibles de la ligne de commande.
> 
> 
> i've installed it as a pkg, with AdbeRdr9.1.0-1_i386solaris_fra.pkg
> 
> anyone has this problem?
> 
> thanks in advance,
> 
> gerard
> 
> _______________________________________________
> desktop-discuss mailing list
> desktop-discuss at opensolaris.org

Reply via email to