VMware Communities > VMTN > Desktop Products > VMware Workstation > Discussions

This Question is Answered

1 "correct" answer available (10 pts) 2 "helpful" answers available (6 pts)
1 2 3 Previous Next
Reply Re: libpng12.so.0: no version information available Sep 22, 2006 2:37 PM
in response to: ksc
Click to view fabianoma's profile Lurker fabianoma 3 posts since
Sep 22, 2006
Well, If I don't use
# Fix for pulling in libdbus-1.so.2 instead of .3
export LD_PRELOAD=/usr/lib/libdbus-1.so.3:$LD_PRELOAD
vmware fails to run. But I have changed to libdbus-1.so.2, so put
export LD_PRELOAD=/usr/lib/libdbus-1.so.2:$LD_PRELOAD
The program runs but still have the same browser problem with the same error message above with libdbus-1.so.3.

Here is the output of ldd -r command
:~$ ldd -r /usr/lib/libdbus-1.so.2
linux-gate.so.1 => (0xffffe000)
libnsl.so.1 => /lib/tls/libnsl.so.1 (0xa7edf000)
libc.so.6 => /lib/tls/libc.so.6 (0xa7dad000)
/lib/ld-linux.so.2 (0x75555000)

~$ ldd -r /usr/lib/libdbus-1.so.3
linux-gate.so.1 => (0xffffe000)
libnsl.so.1 => /lib/tls/libnsl.so.1 (0xa7f83000)
libc.so.6 => /lib/tls/libc.so.6 (0xa7e51000)
/lib/ld-linux.so.2 (0x75555000)

Cheers.
Reply Re: libpng12.so.0: no version information available Sep 29, 2006 4:53 AM
in response to: fabianoma
Click to view lousypoetry's profile Novice lousypoetry 9 posts since
Sep 18, 2006
Just found this thread because I've got the same problem.

I used to run vmware on ubuntu 2.6.12-9-386 but it fails with 2.6.12-10-386. I tried starting it with
VMWARE_USE_SHIPPED_GTK=yes LD_PRELOAD=/usr/lib/libglib-2.0.so.0 vmware
vmware starts and I can chose my winxp to boot. The winxp booting screen appears but after a while I'm taken back to the wmware menu.

I'm grateful for any idea or hint, if you want me to post some output stuff just say a word (and excuse my english)
Reply Re: libpng12.so.0: no version information available Oct 2, 2006 5:41 AM
in response to: lousypoetry
Click to view miikka's profile Lurker miikka 1 posts since
Oct 2, 2006
hi, i did have same problem in debian etch (testing)

all i had to do was remove package libdbus-1-2

there is libdbus-1-3 version also but old library still have some dependency packages
Reply Re: libpng12.so.0: no version information available Oct 3, 2006 3:55 AM
in response to: miikka
Click to view KrystianNowak's profile Lurker KrystianNowak 1 posts since
Oct 3, 2006
I've got the same problem under Debian Etch. Executing apt-get remove libdbus-1-2 (1.3 still should be installed) fixes the bug.
Reply Re: libpng12.so.0: no version information available Oct 3, 2006 4:09 AM
in response to: miikka
Click to view lousypoetry's profile Novice lousypoetry 9 posts since
Sep 18, 2006
Hi,

thanks fo your reply. It seams to me like I don't have libdbus-1-2 installed:

user@ubuntu:~$ sudo apt-cache policy libdbus-1-2
W: cannot find libdbus-1-2

however, libdbus 1-1 is installed
Reply Re: libpng12.so.0: no version information available Oct 4, 2006 7:45 PM
in response to: KrystianNowak
Click to view PsyDoc's profile Lurker PsyDoc 1 posts since
Oct 4, 2006
I can confirm that removing libdbus-1-2 using:

apt-get remove libdbus-1-2

fixes the problem of vmware failing to load on Debian Etch. I received one error of:

/usr/lib/vmware/bin/vmware: /usr/lib/vmware/lib/libpng12.so.0/libpng12.so.0: no version information available (required by /usr/lib/libcairo.so.2)

when I run vmware from the command line, but VMware finds a way to continue loading itself quite nicely, whereas it spat out 3 of the above error before and just died previously. I found that copying the libpng12.so.0 from my /usr/lib/ directory did *not* allow VMware to run, though it stopped the above error message from printing out.
Reply Re: libpng12.so.0: no version information available Oct 10, 2006 3:14 AM
in response to: PsyDoc
Click to view ouhrbach's profile Lurker ouhrbach 1 posts since
May 21, 2006
i fix the problem .. :)

just copy the /usr/lib/libpng12.so.0 to /usr/lib/vmware/lib/libpng12.so.0/

overwrite the file ... and it will be funktion :) why ? i dont now

cu

olekole
Reply Re: libpng12.so.0: no version information available Oct 16, 2006 6:33 AM
in response to: ouhrbach
Click to view Dano's profile Lurker Dano 3 posts since
Feb 12, 2006
Had this problem fixed by removing the libdbus-1-2 which was left in repository after a hugh apt-get update on Ubuntu edgy.

Cheers,

Danny.

Message was edited by:
Dano

Reply Re: libpng12.so.0: no version information available Oct 19, 2006 9:29 PM
in response to: Dano
Click to view danyul's profile Lurker danyul 4 posts since
Jan 12, 2006
Thanks Danny,

That fixed the problem for me also, with Workstation on Edgy.

Cheers,
Dan
Reply Re: libpng12.so.0: no version information available Nov 16, 2006 10:22 AM
in response to: aakef
Click to view 241comp's profile Novice 241comp 8 posts since
Nov 16, 2006
Add to vmware/lib/wrapper-gtk24.sh in vm_run()

# Fix for pulling in libdbus-1.so.2 instead of .3
export LD_PRELOAD=/usr/lib/libdbus-1.so.3:$LD_PRELOAD

This worked for me - thanks! I had tried all the other fixes and got nothing (error message went away but it still didn't work!) and when I tried yours, I still got the error but vmware console started so I'm happy. Thanks!
Reply Re: libpng12.so.0: no version information available Dec 15, 2006 7:52 AM
in response to: ouhrbach
Click to view chucktr's profile Enthusiast chucktr 68 posts since
Nov 29, 2004
Thanks. The "just copy" fixed it for me also. :-)

Chuck
Reply Re: libpng12.so.0: no version information available Jan 20, 2007 8:26 PM
in response to: ouhrbach
Click to view masta11's profile Lurker masta11 1 posts since
Jan 20, 2007
I'm using Ubuntu 6.10 (2.6.17-10-generic)
This works great!! Everyone should try this fix. Thanks ouhrbach

sudo cp /usr/lib/libpng12.so.0 /usr/lib/vmware/lib/libpng12.so.0/
Reply Re: libpng12.so.0: no version information available Feb 2, 2007 6:16 PM
in response to: masta11
Click to view VKueffel's profile Lurker VKueffel 1 posts since
Feb 2, 2007
I upgraded Kubuntu from dapper (6.06) to edgy (6.10) simply by changing sources.lst and running apt-get dist-upgrade and VMware stopped working. Got the same libpng error which I can get rid of using several of the previously mentioned fixes (comment out vm_append_lib 'libpng12.so.0' in the wrapper or copy the system libpng into vmware's lib directory). Unfortunately the VMware Console still didn't start. I didn't get the error anymore, but it hangs immediately.

Finally I ran
sudo apt-get remove libdbus-1-2

and it finally started working again.
Reply Re: libpng12.so.0: no version information available Mar 15, 2007 9:59 PM
in response to: VKueffel
Click to view JP_731's profile Lurker JP_731 2 posts since
Mar 15, 2007
this solve the problem for me (debian etch, custom kernel 2.6.20.3):

Modificar el archivo: /usr/lib/vmware/lib/wrapper-gtk24.sh

En la función: vm_run()

Code:

vm_run() {
local exitCode;
# Fix for vmplayer pulling in libdbus-1.so.2 instead of .3 export LD_PRELOAD=/usr/lib/libdbus-1.so.3:$LD_PRELOAD

# Append any libraries that are still missing.

==============================================
reference:

http://patxi.wordpress.com/2006/10/29/no-se-puede-iniciar-vmware-despues-de-la-actualizacion/

Reply Re: libpng12.so.0: no version information available Jun 14, 2007 12:09 PM
in response to: ouhrbach
Click to view IdeCable's profile Novice IdeCable 35 posts since
May 30, 2007
ouhrbach's suggestion worked for me as well!!

Same error reported over Ubuntu Fiesty (7.04?).

;)
1 2 3 Previous Next
Actions