@ユメイ5 年前

08/16
13:38
internet

Microsoft Activation Scripts (MAS)

Microsoft Activation Scripts (MAS):

A collection of scripts for activating Microsoft products using HWID / KMS38 / Online KMS activation methods with a focus on open-source code, less antivirus detection and user-friendliness.

Homepages:
NsaneForums: (Login Required) https://www.nsaneforums.com/topic/316668-microsoft-activation-scripts/
GitLab: https://gitlab.com/massgrave/microsoft-activation-scripts
GitHub: https://github.com/massgravel/Microsoft-Activation-Scripts/

Downloads:
https://github.com/massgravel/Microsoft-Activation-Scripts/releases

Microsoft Activation Scripts (MAS)

@ユメイ8 年前

06/11
20:32
internet

树莓派搭建kms服务器

sudo apt-get install python-argparse

git clone https://github.com/myanaloglife/py-kms

运行激活服务器

cd /py-kms

python server.py

使用supervisor管理py-kms服务

建立/etc/supervisor/conf.d/pykms.conf 

[program:pykms]

command=python /root/py-kms/server.py

autorestart=true

user=root
 Read More →

树莓派搭建kms服务器

@ユメイ8 年前

05/28
23:30
internet

Raspberry Pi 开启root权限,安装SS

默认用户是pi 密码为raspberry
修改root密码
sudo passwd root

启用 root 账号登录

sudo passwd --unlock root

 

新版本ssh默认关闭root登陆 你可以修改一下ssh的配置文件

sudo nano /etc/ssh/sshd_config

PermitRootLogin without-password修改为PermitRootLogin yes

service ssh restart

更新系统apt-get dist-upgrade
官方初始化命令 sudo raspi-config

Read More →

Raspberry Pi 开启root权限,安装SS