@ユメイ2 天前

11/11
21:51
internet

常用一键脚本

流媒体解锁查询
bash <(curl -L -s https://git.io/JRw8R) -E en

tinyportmapper一键配置脚本
wget https://raw.githubusercontent.com/lmc999/TinyPortMapper_KeepAlive/master/tinymapper.sh && bash tinymapper.sh

一键测试脚本bench.sh
wget -qO- bench.sh | bash

NextTrace

curl nxtrace.org/nt |bash

nexttrace --fast-trace --tcp

常用一键脚本

@ユメイ2 年前

03/2
08:40
internet

bbr2 @ Windows11 22h2(不推荐)

Change TCP congestion control to BBR:

netsh int tcp set supplemental Template=Internet CongestionProvider=bbr2
netsh int tcp set supplemental Template=Datacenter CongestionProvider=bbr2
netsh int tcp set supplemental Template=Compat CongestionProvider=bbr2
netsh int tcp set supplemental Template=DatacenterCustom CongestionProvider=bbr2
netsh int tcp set supplemental Template=InternetCustom CongestionProvider=bbr2

Verify

Get-NetTCPSetting | Select SettingName, CongestionProvider

bbr2 @ Windows11 22h2(不推荐)

@ユメイ3 年前

03/27
14:25
internet

加载,删除swap

dd if=/dev/zero of=/var/swap bs=1k count=1024k
chmod 600 /var/swap
mkswap /var/swap
swapon /var/swap
echo '/var/swap   swap   swap   default 0 0' >> /etc/fstab

swapoff /var/swapfile

rm -rf /var/swapfile

删除/etc/fstab文件条目/var/swapfile swap swap defaults 0 0

加载,删除swap

@ユメイ4 年前

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)

@ユメイ7 年前

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服务器