森山と申します。 VMware Workstation 6.5.1をインストールしてみたのですが、 起動出来ずにいます。どなたか、うまくいっている方がいましたら、 御教授下さい。 やってみた事。 # LANG=C rpm -Uvh VMware-Workstation-6.5.1-126130.i386.rpm $ LANG=C vmware /usr/lib/vmware/bin/vmware-modconfig: Symbol `_ZTIN4Glib10ObjectBaseE' has different size in shared object, consider re-linking /usr/lib/vmware/bin/vmware-modconfig: Symbol `_ZTIN4Glib9InterfaceE' has different size in shared object, consider re-linking /usr/lib/vmware/bin/vmware-modconfig: Symbol `_ZTIN4Glib6ObjectE' has different size in shared object, consider re-linking /usr/lib/vmware/bin/vmware-modconfig: Symbol `_ZTIN3Gtk6WidgetE' has different size in shared object, consider re-linking Logging to /tmp/vmware-userName/setup-3848.log /usr/bin/vmware: line 31: 3848 Segmentation fault "$BINDIR"/vmware-modconfig --appname="VMware Workstation" --icon="vmware-workstation となり起動しません。setup-3848.logの内容は以下のようになります。 Dec 14 23:00:35.482: app| Log for VMware Workstation pid=4104 version=6.5.1 build=build-126130 option=Release Dec 14 23:00:35.482: app| Host codepage=ANSI_X3.4-1968 encoding=ASCII Dec 14 23:00:35.482: app| Logging to /tmp/vmware-userName/setup-4104.log /usr/bin/vmwareの内容は #!/usr/bin/env bash # # Copyright 2005-2008 VMware, Inc. All rights reserved. # # Wrapper for the real 'vmware' binary. Ensure that the # binary will find all the shared libraries it needs. If a shared # library is not available from any of the standard system-wide # locations, we provide it from the location where the VMware software # is installed. # set -e ETCDIR=/etc/vmware . $ETCDIR/bootstrap export PRODUCT_NAME="VMware Workstation" libdir="$LIBDIR"/vmware . "$libdir"/scripts/util.sh # If there are command line arguments like -version, launch the binary without # checking configuration state or running the module updater. if echo "$1" | grep -q "^-"; then launch_binary "$libdir" "vmware" "$@" fi if "$BINDIR"/vmware-modconfig --appname="VMware Workstation" --icon="vmware-workstation" && /sbin/modinfo vmmon; then launch_binary "$libdir" "vmware" "$@" fi exit 1 となっています。 -- K.Moriyama