Skip to content

Instantly share code, notes, and snippets.

View hunterMG's full-sized avatar
🧑‍💻
🧠Uploading...

hunterMG

🧑‍💻
🧠Uploading...
View GitHub Profile
@hunterMG
hunterMG / get-vmwarefusion.sh
Created October 15, 2025 12:00 — forked from johnvilsack/get-vmwarefusion.sh
Direct Download VMWare Fusion - Download, Install, and Update VMWare Fusion Automatically.
#!/usr/bin/env bash
# VMware Fusion Latest Version Downloader, Installer, and Updater
# This script automatically finds, downloads, and optionally installs the highest version available
#
# Inspired by this gist: https://gist.github.com/jetfir3/6b28fd279bbcadbae70980bd711a844f
#
# Usage: $0 [-y] [-i] [-d] [-f] [-t <dmg_path>]
# -y: Skip download confirmation prompt
# -i: Automatically install after download (implies -y)
@hunterMG
hunterMG / latency.md
Created May 27, 2019 02:06
GCP、AWS latency test tool
@hunterMG
hunterMG / Debian9enableBBR.md
Created March 15, 2019 12:50
Debian 9 enable BBR
echo "net.core.default_qdisc=fq" >> /etc/sysctl.conf
echo "net.ipv4.tcp_congestion_control=bbr" >> /etc/sysctl.conf
sysctl -p

如果正常执行之后没有报错的话,需要重启一下系统,让配置生效。

重启之后,执行如下命令查看配置是否成功生效:

lsmod | grep bbr