nginx在cdn下获取原始ip

运维 

cloudflare版,放到配置文件server下 set_real_ip_from 173.245.48.0/20; set_real_ip_from 103.21.244.0/22; set_real_ip_from 103.22.200.0/22; set_re

linux开启路由转发功能

运维 

方式一、临时开启(重启后失效): echo 1 > /proc/sys/net/ipv4/ip_forward 方式二、长期开启: 修改/etc/sysctl.conf ,添加以下内容 net.ipv4.ip_forward=1 使规则生效: sysctl -p

git切换源

git 

先查看当前源 git remote -v 切换源 自行替换地址 git remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/github-repo-name

kvm直接修改虚拟机磁盘文件

运维 

宿主机安装软件: sudo apt install libguestfs-tools 进入目录: cd /xxxx/xxx 直接编辑: virt-edit -a vm-2143-disk-0.raw /etc/fstab 仅查看: virt-cat -a vm-493-disk-0.qcow2 /

使用脚本设定linux服务器网卡流量上限

运维 

#参考:https://www.freedidi.com/11185.html #安装依赖 sudo apt install vnstat bc -y #修改配置文件 sudo nano /etc/vnstat.conf Interface "ens5" # 使用GB为单位 UnitMode 1

安装阵列卡管理工具megacli

运维 

此教程仅适用于debian11/12系统,其他系统根据需求做调整 apt update sudo gpg --no-default-keyring --keyring /usr/share/keyrings/hwraid-archive-keyring.gpg --keyserver keyserv

linux内核开启bbr拥塞算法

运维 

开启原版bbr,请注意内核版本低于4.0不支持开启 echo "net.core.default_qdisc=fq" >> /etc/sysctl.conf echo "net.ipv4.tcp_congestion_control=bbr" >> /etc/sysctl.conf sysctl -

git工具设置免密码拉取项目

git 

给文件夹设置用户名和邮箱(自行替换) git config user.email "xxxxxxx@xx.xxx" git config user.name "xxxxx" git config --global credential.helper store