Key Management Service (abbreviation: KMS), this function is a new type of product activation mechanism in products after Windows Vista. The purpose is for Microsoft to better curb illegal software authorization (piracy).
# Download Vlmcsd
wget https://github.com/Wind4/vlmcsd/releases/download/svn1111/binaries.tar.gz
# Check if port 1688 is open
netstat -nxtlp | grep 1688
# Unzip binaries.tar.gz
tar -xzvf binaries.tar.gz
# Enter binaries/Linux/intel/static/
cd binaries/Linux/intel/static/
# Execute the command to start Vlmcsd
. /vlmcsd-x64-musl-static
# Check whether Vlmcsd is running normally
ps -ef |grep vlmcsd-x64-musl-static
Recently, there are problems in accessing Github in China. This step may pop up the connection failure. You need to modify the Host on the server before you can execute the command to download the Vlmcsd script.
# Use VI to modify the host file
vi /etc/hosts
# Modify Github resolution address
151.101.76.133 raw.githubusercontent.com
192.30.253.112 github.com
151.101.185.194 github.global.ssl.fastly.net
140.82.114.6 api.github.com
Part of the content of this article is referenced from: https://www.cnblogs.com/Simon212/p/10963530.html
Recommended Posts