Tag Archives: VMware

Quickly solve the problem of Vmware virtual machine “\\.\Global\vmx86”: the system cannot find the specified file

If your VMware virtual machine prompts this error:”

Unable to open kernel device "\\.\Global\vmx86": 系统找不到指定的文件. Did you reboot after installing VMware Workstation?
Failed to initialize monitor device.


Try this:
1. Shut down the virtual machine, download the green cracked version of Vmware and get the Vmware installation package
2. Unzip a folder, search for “vmx86.sys” in this folder, and copy
3. Enter this path: C:\Windows\System32\drivers, and search “vmx86.sys”. If this file exists, replace it (note that the backup is replaced)
4. Enter “Run” in the start menu: NET Start VMx86 and press OK;
5. Start the virtual machine and everything goes back to normal.

Note: This method is feasible for personal testing. Please refer to the network for some steps.

How to Fix VMware Taking ownership of this virtual machine failed

Today I used VMWare by mistake. When I logged in Windows 2003 Server, I needed to press Ctrl+Alt+Delete, and then I accidentally clicked where I went (I didn’t see it myself!!). , causing virtual machine deadlock. The following figure appears when the virtual machine is running:

After clicking Take Ownership, the following figure appears:

Google searched the fault, and it turned out to be the virtual machine deadlock caused by the system Crash:
When I clicked on the lock button (which had replaced VMWare Fusion’s normal “play” button), I got an error message sea-voyage “The virtual machine appears to be in use” :

Seeing as how I was not using The VM (… At least to the best of my knowledge), I clicked on “Take Ownership”, and got an error message that said “Taking Ownership of this virtual machine failed” :
What to do?I started googling for the error messages to see if I could find a resource or VMWare support document that described how to troubleshoot them, But to my surprise it took me awhile and some digging to find something. I helped myself, which in essence picked up VMWare’s lock files on the virtual machine.
In fact, every time the virtual machine is started, a.lCK folder is automatically generated, which can be found from the creation time of the mXXx.lCK file, which is the moment the virtual machine is started


After deleting all.lCK folders in the virtual machine, double-click the VMX file to run the virtual machine again. The problem is solved

The most complete solution for service network restart failure under CENTOS 7

Often, after changing the static IP under centOS 7, someone would find that the network service could not be restarted, so they searched the network, tried various methods and finally solved the problem.
is now a summary of various solutions, I hope to let you walk less crooked road.

First things first:
After executing the Service Network Restart command, the following error occurs:

Restarting network (via systemctl): Job for network. Service failed because the control process exited with error code.
See “systemctl status network. Service” and “journalctl-xe” for details.

After input systemctl status network. Service command, the following error message appears:

network.service - LSB: Bring up/down networking
   Loaded: loaded (/etc/rc.d/init.d/network; bad; vendor preset: disabled)
   Active: failed (Result: exit-code) since 三 2018-09-05 13:01:47 CST; 1min 16s ago
     Docs: man:systemd-sysv-generator(8)
  Process: 4681 ExecStart=/etc/rc.d/init.d/network start (code=exited, status=1/FAILURE)
   CGroup: /system.slice/network.service
           └─1192 /sbin/dhclient -H mini1 -1 -q -lf /var/lib/dhclient/dhclient--ens33.lease -pf /v...
9月 05 13:01:47 mini1 network[4681]: RTNETLINK answers: File exists
9月 05 13:01:47 mini1 network[4681]: RTNETLINK answers: File exists
9月 05 13:01:47 mini1 network[4681]: RTNETLINK answers: File exists
9月 05 13:01:47 mini1 network[4681]: RTNETLINK answers: File exists
9月 05 13:01:47 mini1 network[4681]: RTNETLINK answers: File exists
9月 05 13:01:47 mini1 network[4681]: RTNETLINK answers: File exists
9月 05 13:01:47 mini1 systemd[1]: network.service: control process exited, code=exited status=1
9月 05 13:01:47 mini1 systemd[1]: Failed to start LSB: Bring up/down networking.
9月 05 13:01:47 mini1 systemd[1]: Unit network.service entered failed state.
9月 05 13:01:47 mini1 systemd[1]: network.service failed.

The network service cannot be started!! First of all, make sure that ifCFg-XXX (each machine is not the same) in /etc/sysconfig/network-scripts directory is free of errors (if you have made any changes), which refer to things like typing the wrong letters by hand during the change process.
The most common methods on the Internet are as follows:
1, and the NetworkManager service conflict, directly close the NetworkManager service, service NetworkManager stop, and forbid starting chkconfig NetworkManager off, finally restart it.
2. If it does not match the MAC address of the configuration file, use IP ADDR (or IFconfig) to check the MAC address

1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN qlen 1
    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
    inet 127.0.0.1/8 scope host lo
       valid_lft forever preferred_lft forever
    inet6 ::1/128 scope host 
       valid_lft forever preferred_lft forever
2: ens33: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP qlen 1000
    link/ether 00:0c:29:b8:e7:21 brd ff:ff:ff:ff:ff:ff
    inet 192.168.65.141/24 brd 192.168.65.255 scope global dynamic ens33
       valid_lft 1193sec preferred_lft 1193sec
    inet6 fe80::cca2:d835:f93:e637/64 scope link 
       valid_lft forever preferred_lft forever

00:0 C :29:b8:e7:21 is the MAC address, change HWADDR in /etc/sysconfig/ net-scripts/ifCFg-XXX to this MAC address
3. Set up and start a service named networkmanager-waiting-online . The command is: systemctl enable networkmanager-waiting-online-service
4, see /etc/sysconfig/network - scripts , will the rest of the network card position papers all deleted, avoid unnecessary influence, is only a file, starting with ifcfg leave that one should use IP addr command to check the IP the second identical at the beginning of (see above for my ens33, I posted the IP addr command execution results), so I only left a ifcfg - ens33. (That's how two of my machines worked, because I made a backup before changing it, so just delete it...)
5. Comment out the DEVICE line in IFCFG-XXX file.
6. Change the NAME in IFCFG-XXX to be the same as the file NAME.
7. Change the network mode to bridge in VMWare edit-Virtual Network Editor.
8. Check whether the network adapter at the bottom right corner of VMWare is connected or not. If it is not connected, it will be connected.

(note: click the network adapter - Settings, and try to change the NAT mode to bridge. After I changed the bridge mode, I could restart the network service, but I could not connect to the network. After restarting,
and then change the bridge mode to NAT mode, and I found that I could both surf the Internet and restart the network service.)
9. Check to see if VMware DHCP Service and VMware NAT Service are disabled on your computer. If so, turn them on.
10. If you change to static IP don't forget to change BOOTPROTO to static.
11,, if the above is not resolved, there is a final move - restart to see if there is a miracle!! (A lot of times you just restart it.)
I have tried almost all of the above methods, some of which are useful or not useful for my machine, but some people have solved them with these methods, and recorded them together for future use

Forced shutdown of VMware wrokstation error (failed to get exclusive lock on the configuration file —)

today I accidentally shut down the VMware. Exe process in the process. It doesn’t matter if I shut it down.

said that a running process was using the “configuration” file and was unable to obtain the lock for the configuration file, causing a failure.

know the error, we can solve the problem, there is a process using this file, then we go to the process to look, of course, the first thing we think of is, is the virtual machine process. Three virtual machine processes were actually found in the process manager,

vmware – usbarbibrator. Exe

vmware – unity – helper. Exe

vmware – VMX. Exe

my first instinct was vmware. Exe,kill it, really, the virtual machine is up.

【Q&A】Failed to start LSB: Bring up/down networking

Failed to start LSB: Bring up/down networking

because the *. VMSS file was deleted, after restarting the virtual machine, I found that I could not make a remote connection through SSH. Then I tried to restart the network card service, and the result was abnormal, as shown below:


baidu circle, is to modify the MAC address, but after the change does not have any use, finally Google solved.
facts prove that baidu is a gray goods! Solution: disable NetworkManager

  1. systemctl stop NetworkManager
  2. systemctl disable NetworkManager
    then restart the network service and network can be connected normally!

solve!! VMware Workstation failed to start the VMware authorization service

use VMware to start the virtual machine to report VMware Workstation failed to start the VMware Authorization Service

solution :

first step: enter your service, see vmware authorization service service will start

step 2: if the double-click service is started, see if it is started automatically. If not, change it to start automatically

step 3: if none of this is a problem, check to see if the executable path is correct, perhaps because the folder has been changed so that it cannot find the execution path

there are two ways to do it if the execution path is wrong:

the first: simple and crude uninstall reinstall

second path

first use the computer to search the registry to edit

open according to the path :HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services vmware authorization service

modify the path to

of course I still recommend uninstall reinstall, but must be unloaded clean!

hope everyone can solve the problem!

Failed to load vmmr0.r0 (Verr_ SUPLIB_ PATH_ NOT_ CLEAN).


I am window10 system, directly put the software into D disk, no folder package
causes the problem, there may be two reasons, 1 did not open the administrator identity, 2 virtual machine directly under D disk, the path has problems

address:
1, uninstall virtual machine
delete not clean will be very trouble, is said to be completely delete please refer to the bosses:
https://blog.csdn.net/lizhen8285/article/details/80143570

2, after completely uninstall, open an administrator, it is said that must be an administrator to run only that
how to open the administrator: https://baijiahao.baidu.com/s?id=1620557606146696792& wfr=spider& for=pc

3, open the status of administrator, install, put the virtual machine in a folder without Chinese name

is good

P2V error log

[ADS] Get username failed:1332

2012-12-27T15:54:42.355+08:00 [02384 info ‘Libs’] [ADS] GetTokenInformation failed: 1312

2012-12-27T15:54:42.355+08:00 [02384 info ‘Default’] [user,874]Successfully verified user admin for this local machine (using pipe).

2012-12-27T15:54:53.135+08:00 [02148 info ‘Libs’] [ADS] failed to get username:1332

2012-12-27T15:54:53.135+08:00 [02148 info ‘Libs’] [ADS] GetTokenInformation failed: 1312

2012-12-27T15:54:53.150+08:00 [02148 info ‘Default’] [user,874]Successfully verified user admin for this local machine (using pipe)

2013-12-27t15:55 42.394+08:00] [04060 error ‘Ufa. read request failed; stream:< io_obj p:0x01517224, h:-1, pipeline’ ‘\. \Pipeline \vmware-converter-server-soap’ ‘> <

2013-12-27T15:56:08.946+08:00 [00964 info ‘Default’] [agentManager,83] [agentManager] Install Agent on 10.0.0.68

2013-12-27T15:58:10.299+08:00 error ‘Default’] [agentManager,95] [agentManager] Install Agent failed: converter.fault.

2013-12-27T15:58:28.816+08:00 [00964 info ‘Default’] [agentManager,83] [agentManager] Install Agent on 10.0.0.68

2012-12-27T15:59:49.049+08:00 [02384 info ‘Default’] [agentManager,83] [agentManager] Install Agent on 10.0.0.68

2013-12-27 t16:23 40.851+08:00 [00964 error ‘Default’] [agentManager,95] [agentManager] Install Agent failed: converter.fault.

2012-12-27 t16:29 49.059+08:00 error ‘Default’] [agentManager,100] [agentManager] Agent installation failed: operation timeout
[02384 error ‘Default’] failed to send response to client: class Vmacore::IOException(IO error: send HTTP response during system exception:

— than; error id = 232

–(The President of the General Assembly)

2013-12-27 t16:37 59.370+08:00 info ‘Default’] [agentManager,83] [agentManager] Install Agent on 10.0.0.68

2013-12-27 t16:40:22 079+08:00 [00964 error ‘Default’] [agentManager,95] [agentManager] Install Agent failed:converter.fault.

Lenovo x3650 M5 installation esxi-5.5.0u3 failed to resolve circular relocation

error resolution failed to resolve circular relocation

is installed with IBM custom esx images.

https://www-01.ibm.com/marketing/iwm/iwm/web/preLogin.do?source=stg-esxi5& S_TACT=101J533W& Lang = en_US

or you can try my lenovo customised version VMware ESXi – 5.5.0 – Update3-3116895 – LNV – 20151125. Iso (lenovo)

link: http://pan.baidu.com/s/1c12Hg68 password: peku

VMware virtual machine prompt: locking file failed, unable to open the disk solution

looks for a long time, this is because the virtual machine when running, will lock the file, prevent modification, and if the system suddenly crashed, the virtual machine will not hurry to unlock the locked file, so you will be able to boot, can not lock the file. The solution:

in your virtual machine installation directory, search [. LCK]
to delete the three files found!