|
|
|
|
|
|
| |
| |
|
|
|
|
| |
| |
|
|
I can't get mozilla to run. I think I have everything I need, from
what I could gather from strace's output (more precisely, from this:
strace mozilla 2> err ; grep open err), but it keeps saying "error
while loading shared libraries: cannot open shared object file: cannot
load shared object file: No such file or directory." Any help?
Peter Popov ICQ : 15002700
Personal e-mail : pet### [at] vipbg
TAG e-mail : pet### [at] tagpovrayorg
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
On Mon, 04 Feb 2002 01:31:30 +0200, Peter Popov wrote:
> I can't get mozilla to run. I think I have everything I need, from
> what I could gather from strace's output (more precisely, from this:
> strace mozilla 2> err ; grep open err), but it keeps saying "error
> while loading shared libraries: cannot open shared object file: cannot
> load shared object file: No such file or directory." Any help?
Try running ldconfig, also see if the libraries that it's talking
about are in /etc/ld.so.config, and see if the directories of
those files are in your LD_LIBRARY_PATH, just type:
echo ${LD_LIBRARY_PATH}
And it'll tell you what it's got in it.
Chances are that the libraries are there, but they're not quite where
the program thinks they are.
--
sphere{z*5,1pigment{rgb.5}finish{reflection.3specular.5}}box{<-50,-3,-50>
<50,-2,50>pigment{checker/*\__\\__/ * \_\\__*/scale 2}finish{ambient.7}}
light_source/*__\\__\\__\\__\\__\( ~ )\__\\__\\__\\__\\*/{<2,5,1>*4,1}
/*\\__\\__\\__\\__\\__\\__\\__\\__\~ -/__\\__\\__\\__\\__\\*//* Steve */
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
Try "ldd mozilla" to see what libraries it needs. ldd will tell you which
of them can't be found.
If that library *is* installed in your system, you'll need to either
copy/link it to some directory mentioned in your LD_LIBRARY_PATH or you
have to add that directory to it.
--
#macro M(A,N,D,L)plane{-z,-9pigment{mandel L*9translate N color_map{[0rgb x]
[1rgb 9]}scale<D,D*3D>*1e3}rotate y*A*8}#end M(-3<1.206434.28623>70,7)M(
-1<.7438.1795>1,20)M(1<.77595.13699>30,20)M(3<.75923.07145>80,99)// - Warp -
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
On Sun, 03 Feb 2002 19:48:02 -0500, Warp wrote:
> Try "ldd mozilla" to see what libraries it needs. ldd will tell you
> which
> of them can't be found.
> If that library *is* installed in your system, you'll need to either
> copy/link it to some directory mentioned in your LD_LIBRARY_PATH or you
> have to add that directory to it.
"mozilla" is typically a shell script wrapper. Also, ldd doesn't search
your path, so you need to do something like ldd `which mozilla-bin`
Peter: what distribution are you running, and where did you get your
mozilla from?
-Mark Gordon
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
On 3 Feb 2002 19:48:02 -0500, Warp <war### [at] tagpovrayorg> wrote:
> Try "ldd mozilla" to see what libraries it needs. ldd will tell you which
>of them can't be found.
Gosh, why didn't I think of that! Thanks, Warp, I fixed it. I quite
like the browser already :)
The missing libraries were all GTK related... turns out I didn't have
GTK. I thought I did as I run GVim but obviously I must have built it
with the Motif GUI (and it looks like Motif, too) and not GTK. Anyway,
all is fine now. (P.S. Of course I only installed what I needed :) )
Peter Popov ICQ : 15002700
Personal e-mail : pet### [at] vipbg
TAG e-mail : pet### [at] tagpovrayorg
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
|
|