Re: After Upgrade from F25 to F26 VMware Workstation is refusing anything ...

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On 14.07.2017 00:26, Mark C. Allman wrote:
On 07/13/2017 12:33 PM, Walter H. wrote:
On 12.07.2017 21:27, Mark C. Allman wrote:
On 07/12/2017 12:14 PM, Walter H. wrote:
Hello,

I did this as explained here:
https://fedoraproject.org/wiki/DNF_system_upgrade

and after this I can't start VMware Workstation;
removing and installing VMware Workstation (latest release: 12.5.7)
new doesn't help ...
(the same as if I hadn't removed and installed new)

ifconfig   only shows this:

enp63s0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>    mtu 1500
          inet 192.168.1.1  netmask 255.255.255.0  broadcast
192.168.1.255
          inet6 fe80::673e:4262:54d2:1816  prefixlen 64  scopeid
0x20<link>
          inet6 #myprefix#::1:1  prefixlen 64  scopeid 0x0<global>
          ether 24:00:00:00:00:24  txqueuelen 1000  (Ethernet)
          RX packets 18656  bytes 1210711 (1.1 MiB)
          RX errors 0  dropped 0  overruns 0  frame 0
          TX packets 25349  bytes 35314278 (33.6 MiB)
          TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0
          device interrupt 17

lo: flags=73<UP,LOOPBACK,RUNNING>    mtu 65536
          inet 127.0.0.1  netmask 255.0.0.0
          inet6 ::1  prefixlen 128  scopeid 0x10<host>
          loop  txqueuelen 1000  (Local Loopback)
          RX packets 32  bytes 2848 (2.7 KiB)
          RX errors 0  dropped 0  overruns 0  frame 0
          TX packets 32  bytes 2848 (2.7 KiB)
          TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0


and before the upgrade there were two extra virtual interfaces from
VMware ...
one used when VMs run with Host-only network connection, and
one used when VMs run with NAT network connection ...
(the same as I'm used to with Windows release)

Greetings,
Walter




_______________________________________________
users mailing list -- users@xxxxxxxxxxxxxxxxxxxxxxx
To unsubscribe send an email to users-leave@xxxxxxxxxxxxxxxxxxxxxxx
First, sorry if this doesn't show up as plain text.  It should but
typing it in Thunderbird isn't showing it as plain text.

Use "systemctl status vmware" to determine if the vmware services are
all running.  If it's my experience then I bet not.  When I run
      sudo vmware-modconfig --console --install-all

I get the error message "Failed to get gcc information."  I had to do
this (as root):
        cd /usr/lib/vmware/modules/source
        tar xf vmmon.tar
        cd vmmon-only
        make
        cd ..
        tar xf vmnet.tar
        cd vmnet-only
        make
        cd ../
        mkdir /lib/modules/`uname -r`/misc
        cp vmmon.ko /lib/modules/`uname -r`/misc
        cp vmnet.ko /lib/modules/`uname -r`/misc
        depmod -a
        systemctl vmware restart
so far this works and brings back the two virtual network interfaces ...
with the only difference I had to do this:

cp vmmon.o /lib/modules/`uname -r`/misc/vmmon.ko
cp vmnet.o /lib/modules/`uname -r`/misc/vmnet.ko

vmnet1: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>   mtu 1500
         inet 192.168.151.1  netmask 255.255.255.0  broadcast
192.168.151.255
         inet6 fe80::250:56ff:fec0:1  prefixlen 64  scopeid 0x20<link>
         ether 00:50:56:c0:00:01  txqueuelen 1000  (Ethernet)
         RX packets 0  bytes 0 (0.0 B)
         RX errors 0  dropped 0  overruns 0  frame 0
         TX packets 41  bytes 0 (0.0 B)
         TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

vmnet8: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>   mtu 1500
         inet 192.168.21.1  netmask 255.255.255.0  broadcast
192.168.21.255
         inet6 fe80::250:56ff:fec0:8  prefixlen 64  scopeid 0x20<link>
         ether 00:50:56:c0:00:08  txqueuelen 1000  (Ethernet)
         RX packets 0  bytes 0 (0.0 B)
         RX errors 0  dropped 0  overruns 0  frame 0
         TX packets 40  bytes 0 (0.0 B)
         TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

but
vmware (as in VMware-Workstation) still wouldn't start.  Using strace I
found that libexpat.so.0 wasn't being found so I then ran:
      ln -s /usr/lib64/libexpat.so.1.6.2 /usr/lib64/libexpat.so.0
this doesn't help anything, VMware Wkst. still refuses to start ...
(even after a shutdown -r now)

is there any log or similar where I can look for the reason if this?
vmware would then run and my Windows 10 VM appears to be working fine
(so far ;-).

i googled around for the first part about the need to manually rebuild
vmmon and vmnet.

Thanks,
Walter



_______________________________________________
users mailing list -- users@xxxxxxxxxxxxxxxxxxxxxxx
To unsubscribe send an email to users-leave@xxxxxxxxxxxxxxxxxxxxxxx
Ugh! Yea -- forgot that the object files needed to have a ".ko"
extension.  I typed that all up from memory.

Next step is to try to figure out why vmware still won't run.  I'd
recommend editing /usr/bin/vmware (which is a shell script) to tweak the
bottom of the script from:

     if "$BINDIR"/vmware-modconfig --appname="VMware Workstation"
--icon="vmware-workstation"&&
        vmware_module_exists $vmmon; then
        exec "$libdir"/bin/"vmware" "$@"
     fi

to look something like:

     #if "$BINDIR"/vmware-modconfig --appname="VMware Workstation"
--icon="vmware-workstation"&&
     if   vmware_module_exists $vmmon; then
        exec "$libdir"/bin/"vmware" "$@"
     fi

We may need to comment out running "$BINDIR"/vmware-modconfig
--appname="VMware Workstation" --icon="vmware-workstation" because it
might be failing with a "Failed to get gcc information" error.
this didn't help
If it still won't start then make a copy of the exec line inside the
"if," comment out the copy, and edit the uncommented line to something like:

        strace -o /tmp/debug.txt "$libdir"/bin/"vmware" "$@"
/tmp/debug.txt is this:

execve("/usr/lib/vmware/bin/vmware", ["/usr/lib/vmware/bin/vmware"], 0x7ffcb3f124f0 /* 43 vars */) = 0
brk(NULL)                               = 0x55af8d509000
mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f6185b2d000 access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory)
open("/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=124195, ...}) = 0
mmap(NULL, 124195, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f6185b0e000
close(3)                                = 0
open("/lib64/libdl.so.2", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\340\r\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=19496, ...}) = 0
mmap(NULL, 2109584, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f6185705000
mprotect(0x7f6185708000, 2093056, PROT_NONE) = 0
mmap(0x7f6185907000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f6185907000
close(3)                                = 0
open("/lib64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\340^\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=153896, ...}) = 0
mmap(NULL, 2220552, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f61854e6000
mprotect(0x7f61854ff000, 2097152, PROT_NONE) = 0
mmap(0x7f61856ff000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x19000) = 0x7f61856ff000 mmap(0x7f6185701000, 12808, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f6185701000
close(3)                                = 0
open("/lib64/libgcc_s.so.1", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\300*\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=92800, ...}) = 0
mmap(NULL, 2188336, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f61852cf000
mprotect(0x7f61852e5000, 2093056, PROT_NONE) = 0
mmap(0x7f61854e4000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x15000) = 0x7f61854e4000
close(3)                                = 0
open("/lib64/libc.so.6", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\360\5\2\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=2163104, ...}) = 0
mmap(NULL, 4000096, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f6184efe000
mprotect(0x7f61850c5000, 2097152, PROT_NONE) = 0
mmap(0x7f61852c5000, 24576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1c7000) = 0x7f61852c5000 mmap(0x7f61852cb000, 14688, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f61852cb000
close(3)                                = 0
mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f6185b0c000
arch_prctl(ARCH_SET_FS, 0x7f6185b0d040) = 0
mprotect(0x7f61852c5000, 16384, PROT_READ) = 0
mprotect(0x7f61854e4000, 4096, PROT_READ) = 0
mprotect(0x7f61856ff000, 4096, PROT_READ) = 0
mprotect(0x7f6185907000, 4096, PROT_READ) = 0
mprotect(0x55af8c5a6000, 94208, PROT_READ) = 0
mprotect(0x7f6185b2f000, 4096, PROT_READ) = 0
munmap(0x7f6185b0e000, 124195)          = 0
set_tid_address(0x7f6185b0d310)         = 3048
set_robust_list(0x7f6185b0d320, 24)     = 0
rt_sigaction(SIGRTMIN, {sa_handler=0x7f61854eb960, sa_mask=[], sa_flags=SA_RESTORER|SA_SIGINFO, sa_restorer=0x7f61854f82c0}, NULL, 8) = 0 rt_sigaction(SIGRT_1, {sa_handler=0x7f61854eba00, sa_mask=[], sa_flags=SA_RESTORER|SA_RESTART|SA_SIGINFO, sa_restorer=0x7f61854f82c0}, NULL, 8) = 0
rt_sigprocmask(SIG_UNBLOCK, [RTMIN RT_1], NULL, 8) = 0
prlimit64(0, RLIMIT_STACK, NULL, {rlim_cur=8192*1024, rlim_max=RLIM64_INFINITY}) = 0
brk(NULL)                               = 0x55af8d509000
brk(0x55af8d52a000)                     = 0x55af8d52a000
brk(NULL)                               = 0x55af8d52a000
stat("/etc/vmware/icu/icudt44l.dat", {st_mode=S_IFREG|0644, st_size=9609648, ...}) = 0
rt_sigprocmask(SIG_BLOCK, ~[ILL ABRT BUS SEGV RTMIN RT_1], [], 8) = 0
rt_sigprocmask(SIG_BLOCK, ~[ILL ABRT BUS SEGV RTMIN RT_1], ~[ILL ABRT BUS KILL SEGV STOP RTMIN RT_1], 8) = 0 rt_sigprocmask(SIG_SETMASK, ~[ILL ABRT BUS KILL SEGV STOP RTMIN RT_1], NULL, 8) = 0
rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
geteuid()                               = 1000
stat("/tmp", {st_mode=S_IFDIR|S_ISVTX|0777, st_size=460, ...}) = 0
geteuid()                               = 1000
getgroups(0, NULL)                      = 1
getgroups(1, [1000])                    = 1
socket(AF_UNIX, SOCK_STREAM|SOCK_CLOEXEC|SOCK_NONBLOCK, 0) = 3
connect(3, {sa_family=AF_UNIX, sun_path="/var/run/nscd/socket"}, 110) = -1 ENOENT (No such file or directory)
close(3)                                = 0
socket(AF_UNIX, SOCK_STREAM|SOCK_CLOEXEC|SOCK_NONBLOCK, 0) = 3
connect(3, {sa_family=AF_UNIX, sun_path="/var/run/nscd/socket"}, 110) = -1 ENOENT (No such file or directory)
close(3)                                = 0
open("/etc/nsswitch.conf", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=1757, ...}) = 0
read(3, "#\n# /etc/nsswitch.conf\n#\n# An ex"..., 4096) = 1757
read(3, "", 4096)                       = 0
close(3)                                = 0
open("/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=124195, ...}) = 0
mmap(NULL, 124195, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f6185b0e000
close(3)                                = 0
open("/lib64/libnss_files.so.2", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\200 \0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=56784, ...}) = 0
mmap(NULL, 2168280, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f6184cec000
mprotect(0x7f6184cf7000, 2093056, PROT_NONE) = 0
mmap(0x7f6184ef6000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xa000) = 0x7f6184ef6000 mmap(0x7f6184ef8000, 21976, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f6184ef8000
close(3)                                = 0
mprotect(0x7f6184ef6000, 4096, PROT_READ) = 0
munmap(0x7f6185b0e000, 124195)          = 0
open("/etc/passwd", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=2276, ...}) = 0
read(3, "root:x:0:0:Charlie Root:/root:/b"..., 4096) = 2276
close(3)                                = 0
mkdir("/tmp/vmware-walter", 0700)       = -1 EEXIST (File exists)
lstat("/tmp/vmware-walter", {st_mode=S_IFDIR|0700, st_size=120, ...}) = 0
mkdir("/tmp", 0777)                     = -1 EEXIST (File exists)
stat("/tmp", {st_mode=S_IFDIR|S_ISVTX|0777, st_size=460, ...}) = 0
mkdir("/tmp/vmware-walter", 0777)       = -1 EEXIST (File exists)
stat("/tmp/vmware-walter", {st_mode=S_IFDIR|0700, st_size=120, ...}) = 0
getpid()                                = 3048
open("/tmp/vmware-walter", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFDIR|0700, st_size=120, ...}) = 0
getdents(3, /* 6 entries */, 32768)     = 240
getdents(3, /* 0 entries */, 32768)     = 0
close(3)                                = 0
kill(2475, SIG_0)                       = -1 ESRCH (No such process)
kill(2635, SIG_0)                       = -1 ESRCH (No such process)
kill(2538, SIG_0)                       = -1 ESRCH (No such process)
kill(2377, SIG_0)                       = -1 ESRCH (No such process)
open("/tmp/vmware-walter/vmware-apploader-3048.log", O_RDWR|O_CREAT, 0640) = 3
fstat(3, {st_mode=S_IFREG|0640, st_size=0, ...}) = 0
lstat("/tmp/vmware-walter/vmware-apploader-3048.log", {st_mode=S_IFREG|0640, st_size=0, ...}) = 0
ftruncate(3, 0)                         = 0
gettimeofday({tv_sec=1500128156, tv_usec=460137}, NULL) = 0
open("/etc/localtime", O_RDONLY|O_CLOEXEC) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=2335, ...}) = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=2335, ...}) = 0
read(4, "TZif2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\t\0\0\0\t\0\0\0\0"..., 4096) = 2335
lseek(4, -1476, SEEK_CUR)               = 859
read(4, "TZif2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\t\0\0\0\t\0\0\0\0"..., 4096) = 1476
close(4)                                = 0
getpid()                                = 3048
write(3, "2017-07-15T16:15:56.460+02:00| a"..., 125) = 125
write(3, "2017-07-15T16:15:56.460+02:00| a"..., 71) = 71
write(3, "2017-07-15T16:15:56.460+02:00| a"..., 83) = 83
uname({sysname="Linux", nodename="lx.my.home.arpa", ...}) = 0
uname({sysname="Linux", nodename="lx.my.home.arpa", ...}) = 0
geteuid()                               = 1000
pipe2([4, 5], O_CLOEXEC)                = 0
clone(child_stack=NULL, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, child_tidptr=0x7f6185b0d310) = 3049
close(5)                                = 0
fcntl(4, F_SETFD, 0)                    = 0
fstat(4, {st_mode=S_IFIFO|0600, st_size=0, ...}) = 0
read(4, "", 4096)                       = 0
--- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=3049, si_uid=1000, si_status=127, si_utime=0, si_stime=0} ---
close(4)                                = 0
wait4(3049, [{WIFEXITED(s) && WEXITSTATUS(s) == 127}], 0, NULL) = 3049
open("/etc/annvix-release", O_RDONLY) = -1 ENOENT (No such file or directory) open("/etc/arch-release", O_RDONLY) = -1 ENOENT (No such file or directory) open("/etc/arklinux-release", O_RDONLY) = -1 ENOENT (No such file or directory) open("/etc/aurox-release", O_RDONLY) = -1 ENOENT (No such file or directory) open("/etc/blackcat-release", O_RDONLY) = -1 ENOENT (No such file or directory) open("/etc/cobalt-release", O_RDONLY) = -1 ENOENT (No such file or directory) open("/etc/conectiva-release", O_RDONLY) = -1 ENOENT (No such file or directory) open("/etc/debian_release", O_RDONLY) = -1 ENOENT (No such file or directory) open("/etc/debian_version", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/etc/fedora-release", O_RDONLY)   = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=31, ...}) = 0
read(4, "Fedora release 26 (Twenty Six)\n", 31) = 31
close(4)                                = 0
uname({sysname="Linux", nodename="lx.my.home.arpa", ...}) = 0
write(3, "2017-07-15T16:15:56.460+02:00| a"..., 116) = 116
lseek(3, 0, SEEK_END)                   = 395
brk(NULL)                               = 0x55af8d52a000
brk(0x55af8d54e000)                     = 0x55af8d54e000
gettimeofday({tv_sec=1500128156, tv_usec=467909}, NULL) = 0
write(3, "2017-07-15T16:15:56.467+02:00| a"..., 87) = 87
gettimeofday({tv_sec=1500128156, tv_usec=467996}, NULL) = 0
write(3, "\"\n", 2)                     = 2
gettimeofday({tv_sec=1500128156, tv_usec=468099}, NULL) = 0
write(3, "2017-07-15T16:15:56.468+02:00| a"..., 84) = 84
gettimeofday({tv_sec=1500128156, tv_usec=468172}, NULL) = 0
write(3, "\"\n", 2)                     = 2
gettimeofday({tv_sec=1500128156, tv_usec=468247}, NULL) = 0
write(3, "2017-07-15T16:15:56.468+02:00| a"..., 65) = 65
gettimeofday({tv_sec=1500128156, tv_usec=468325}, NULL) = 0
write(3, "2017-07-15T16:15:56.468+02:00| a"..., 85) = 85
gettimeofday({tv_sec=1500128156, tv_usec=468398}, NULL) = 0
write(3, "2017-07-15T16:15:56.468+02:00| a"..., 84) = 84
gettimeofday({tv_sec=1500128156, tv_usec=468470}, NULL) = 0
write(3, "2017-07-15T16:15:56.468+02:00| a"..., 84) = 84
gettimeofday({tv_sec=1500128156, tv_usec=469213}, NULL) = 0
write(3, "2017-07-15T16:15:56.469+02:00| a"..., 83) = 83
gettimeofday({tv_sec=1500128156, tv_usec=469292}, NULL) = 0
write(3, "2017-07-15T16:15:56.469+02:00| a"..., 93) = 93
open("/etc/vmware/config", O_RDONLY)    = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=896, ...}) = 0
fstat(4, {st_mode=S_IFREG|0644, st_size=896, ...}) = 0
read(4, ".encoding = \"UTF-8\"\ninstallerDef"..., 4096) = 896
lseek(4, 0, SEEK_SET)                   = 0
read(4, ".encoding = \"UTF-8\"\ninstallerDef"..., 4096) = 896
read(4, "", 4096)                       = 0
close(4)                                = 0
gettimeofday({tv_sec=1500128156, tv_usec=470450}, NULL) = 0
write(3, "2017-07-15T16:15:56.470+02:00| a"..., 91) = 91
pipe([4, 5])                            = 0
clone(child_stack=NULL, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, child_tidptr=0x7f6185b0d310) = 3051
close(5)                                = 0
read(4, "", 4096)                       = 0
--- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_DUMPED, si_pid=3051, si_uid=1000, si_status=SIGSEGV, si_utime=24, si_stime=39} --- wait4(3051, [{WIFSIGNALED(s) && WTERMSIG(s) == SIGSEGV && WCOREDUMP(s)}], 0, NULL) = 3051
gettimeofday({tv_sec=1500128157, tv_usec=195966}, NULL) = 0
write(3, "2017-07-15T16:15:57.195+02:00| a"..., 93) = 93
close(4)                                = 0
gettimeofday({tv_sec=1500128157, tv_usec=196085}, NULL) = 0
write(3, "2017-07-15T16:15:57.196+02:00| a"..., 126) = 126
gettimeofday({tv_sec=1500128157, tv_usec=196138}, NULL) = 0
write(3, "2017-07-15T16:15:57.196+02:00| a"..., 94) = 94
close(3)                                = 0
exit_group(-1)                          = ?
+++ exited with 255 +++

Open /tmp/debug.txt and go to the bottom to look for some type of error
that's happening.
I don't see any,. or does anybody see one?
I removed the soft link to /usr/lib64/libexpat.so.0
that I mentioned in the earlier post,
I did this before I did the modifications to /usr/bin/vmware ...
  made the changes to
/usr/bin/vmware, ran it, opened /tmp/debug.txt and I see a few lines
from the bottom several error lines where the app is trying to open
libexpat.so.0 from several different locations.  Use strace to see if at
about the end of the /tmp/debug.txt file you see some error messages.
a little bit often  'gettimeofday' ...

I don't know the reason ...

Thanks,
Walter

Attachment: smime.p7s
Description: S/MIME Cryptographic Signature

_______________________________________________
users mailing list -- users@xxxxxxxxxxxxxxxxxxxxxxx
To unsubscribe send an email to users-leave@xxxxxxxxxxxxxxxxxxxxxxx
[Index of Archives]     [Older Fedora Users]     [Fedora Announce]     [Fedora Package Announce]     [EPEL Announce]     [EPEL Devel]     [Fedora Magazine]     [Fedora Summer Coding]     [Fedora Laptop]     [Fedora Cloud]     [Fedora Advisory Board]     [Fedora Education]     [Fedora Security]     [Fedora Scitech]     [Fedora Robotics]     [Fedora Infrastructure]     [Fedora Websites]     [Anaconda Devel]     [Fedora Devel Java]     [Fedora Desktop]     [Fedora Fonts]     [Fedora Marketing]     [Fedora Management Tools]     [Fedora Mentors]     [Fedora Package Review]     [Fedora R Devel]     [Fedora PHP Devel]     [Kickstart]     [Fedora Music]     [Fedora Packaging]     [Fedora SELinux]     [Fedora Legal]     [Fedora Kernel]     [Fedora OCaml]     [Coolkey]     [Virtualization Tools]     [ET Management Tools]     [Yum Users]     [Yosemite News]     [Gnome Users]     [KDE Users]     [Fedora Art]     [Fedora Docs]     [Fedora Sparc]     [Libvirt Users]     [Fedora ARM]

  Powered by Linux