Yesterday I was configuring Red Hat enterprise Linux 4.0 64-bit version on DUAL AMD with 4 GiG system.
Everything went quite smoothly. The last requirement was to configure and install VMWARE Server products.
VMWARE error
I had downloaded the VMWARE server from official vmware site, while configuring vmware server I got an error, which reads as follows:
The correct version of one or more libraries needed to run VMware Server may be
missing. This is the output of ldd /usr/local/bin/vmware:
linux-gate.so.1 => (0xffffe000)
libm.so.6 => /lib32/libm.so.6 (0xf7f84000)
libdl.so.2 => /lib32/libdl.so.2 (0xf7f80000)
libpthread.so.0 => /lib32/libpthread.so.0 (0xf7f6e000)
libX11.so.6 => not found
libXtst.so.6 => not found
libXext.so.6 => not found
libXt.so.6 => not found
libICE.so.6 => not found
libSM.so.6 => not found
libXrender.so.1 => not found
libz.so.1 => not found
libc.so.6 => /lib32/libc.so.6 (0xf7e3c000)
/lib/ld-linux.so.2 (0xf7faf000)
From above output, I realized that Vmware needs 32-bit version of libc and other X windows library.
If you are using Debian/Ubuntu 64 bit there is a pcakge available called ia32-libs. You can install this package to get 32 bit libraries on 64 bit system.
# apt-get install ia32-libs
Luckily, Red Hat enterprise Linux v4.0 provides the backward compatibility too. All you need to do is type following two commands:
# up2date -i "@Compatibility Arch Development Support"
# up2date -i "@Compatibility Arch Support"
Above two commands will load/install all necessary libraries (total size 1GB). If you want to save a disk space, install individual packages.
Thanks to this topic @ VMWARE forum for quick solution – VMWare Server: Dependency problem on 64-Bit Red Hat ES 4, EM64T 😀
🐧 4 comments so far... add one ↓
Category | List of Unix and Linux commands |
---|---|
File Management | cat |
Firewall | Alpine Awall • CentOS 8 • OpenSUSE • RHEL 8 • Ubuntu 16.04 • Ubuntu 18.04 • Ubuntu 20.04 |
Network Utilities | dig • host • ip • nmap |
OpenVPN | CentOS 7 • CentOS 8 • Debian 10 • Debian 8/9 • Ubuntu 18.04 • Ubuntu 20.04 |
Package Manager | apk • apt |
Processes Management | bg • chroot • cron • disown • fg • jobs • killall • kill • pidof • pstree • pwdx • time |
Searching | grep • whereis • which |
User Information | groups • id • lastcomm • last • lid/libuser-lid • logname • members • users • whoami • who • w |
WireGuard VPN | Alpine • CentOS 8 • Debian 10 • Firewall • Ubuntu 20.04 |
in centos 5.5 no is present up2date it is reemplaced for yum in my case mi solution for this proble
# yum install libX* this commando instal full necesary
mi mail frostom@hotmail.com sory my english is bad
Thanks a ton. I’ve spent one day searching for solution. Again thanks!
perfect 🙂
Yours sincerely from germany
Dirk
Excellent. I am now able to run my free vmware server.
Thank you very much.