@ユメイ11 月前

02/24
23:01
internet

Mac OSX Tuning

echo "net.inet.tcp.sendspace=1048576
net.inet.tcp.recvspace=1048576
net.inet.tcp.win_scale_factor=8
net.inet.tcp.autorcvbufmax=33554432
net.inet.tcp.autosndbufmax=33554432
net.inet.udp.maxdgram=65500
kern.ipc.somaxconn=2048" | sudo tee /etc/sysctl.conf

Mac OSX Tuning

@ユメイ1 年前

11/11
21:51
internet

常用一键脚本

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

realm一键配置脚本
wget -N https://raw.githubusercontent.com/qqrrooty/EZrealm/main/realm.sh && chmod +x realm.sh && ./realm.sh

一键xray-vless-reality
bash <(curl -L https://github.com/crazypeace/xray-vless-reality/raw/main/install.sh)

一键ss-plugins
wget -N --no-check-certificate -c -t3 -T60 -O ss-plugins.sh https://git.io/fjlbl
chmod +x ss-plugins.sh
./ss-plugins.sh

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

NextTrace

curl nxtrace.org/nt |bash

nexttrace --fast-trace --tcp

常用一键脚本

@ユメイ3 年前

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(不推荐)

@ユメイ4 年前

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

@ユメイ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)