博客

  • 什么是临时邮箱?

    临时邮箱,也被称为一次性邮箱或临时邮件地址,是一种用于临时接收邮件的虚拟邮箱。与常规邮箱不同,临时邮箱旨在提供一种匿名且临时的邮件接收解决方案。

    临时邮箱往往由网站或在线服务提供商提供,用户可以在需要注册或接收验证邮件时使用临时邮箱地址,而无需暴露自己的真实邮箱地址。这样做的好处是可以保护个人隐私

    出处:来自Linux.do

  • 常用 vps 脚本

    1、DD重装脚本

    史上最强脚本

    wget --no-check-certificate -qO InstallNET.sh 'https://raw.githubusercontent.com/leitbogioro/Tools/master/Linux_reinstall/InstallNET.sh' && chmod a+x InstallNET.sh && bash InstallNET.sh -debian 12 -pwd 'password'
    

    萌咖大佬的脚本

    bash <(wget --no-check-certificate -qO- 'https://raw.githubusercontent.com/MoeClub/Note/master/InstallNET.sh') -d 11 -v 64 -p 密码 -port 端口 -a -firmware
    

    beta.gs大佬的脚本

    wget --no-check-certificate -O NewReinstall.sh https://raw.githubusercontent.com/fcurrk/reinstall/master/NewReinstall.sh && chmod a+x NewReinstall.sh && bash NewReinstall.sh
    

    DD windows(使用史上最强DD脚本)

    bash <(curl -sSL https://raw.githubusercontent.com/leitbogioro/Tools/master/Linux_reinstall/InstallNET.sh) -windows 10  -lang "cn"
    
    账户:Administrator
    密码:Teddysun.com
    

    使用Windows徽标+R快捷键打开运行框,输入powershell运行,弹出powershell命名输入窗口,输入以下命令:irm https://get.activated.win | iex

    2、综合测试脚本

    bench.sh

    wget -qO- bench.sh | bash
    

    LemonBench

    wget -qO- https://raw.githubusercontent.com/LemonBench/LemonBench/main/LemonBench.sh | bash -s -- --fast
    

    融合怪

    bash <(wget -qO- --no-check-certificate https://gitlab.com/spiritysdx/za/-/raw/main/ecs.sh)
    

    NodeBench

    bash <(curl -sL https://raw.githubusercontent.com/LloydAsp/NodeBench/main/NodeBench.sh)
    

    3、性能测试

    yabs

    curl -sL yabs.sh | bash
    

    跳过网络,测GB5

    curl -sL yabs.sh | bash -s -- -i5
    

    跳过网络和磁盘,测GB5

    curl -sL yabs.sh | bash -s -- -if5
    

    改测GB5不测GB6

    curl -sL yabs.sh | bash -s -- -5
    

    4、流媒体及IP质量测试

    最常用版本

    bash <(curl -L -s check.unlock.media)
    

    原生检测脚本

    bash <(curl -sL Media.Check.Place)
    

    准确度最高

    bash <(curl -L -s https://github.com/1-stream/RegionRestrictionCheck/raw/main/check.sh)
    

    IP质量体检脚本

    bash <(curl -sL IP.Check.Place)
    

    一键修改解锁DNS

    wget https://raw.githubusercontent.com/Jimmyzxk/DNS-Alice-Unlock/refs/heads/main/dns-unlock.sh && bash dns-unlock.sh
    

    5、测速脚本

    Speedtest

    bash <(curl -sL bash.icu/speedtest)
    

    Taier

    bash <(curl -sL res.yserver.ink/taier.sh)
    

    hyperspeed

    bash <(curl -Lso- https://bench.im/hyperspeed)
    

    全球测速

    curl -sL network-speed.xyz | bash
    

    6、回程测试

    直接显示回程(小白用这个)

    curl https://raw.githubusercontent.com/ludashi2020/backtrace/main/install.sh -sSf | sh
    

    回程详细测试(推荐)

    wget -N --no-check-certificate https://raw.githubusercontent.com/Chennhaoo/Shell_Bash/master/AutoTrace.sh && chmod +x AutoTrace.sh && bash AutoTrace.sh
    
    wget https://ghproxy.com/https://raw.githubusercontent.com/vpsxb/testrace/main/testrace.sh -O testrace.sh && bash testrace.sh
    

    7、功能脚本

    添加SWAP

    wget https://www.moerats.com/usr/shell/swap.sh && bash swap.sh
    

    Fail2ban

    wget --no-check-certificate https://raw.githubusercontent.com/FunctionClub/Fail2ban/master/fail2ban.sh && bash fail2ban.sh 2>&1 | tee fail2ban.log
    

    一键开启BBR,适用于较新的Debian、Ubuntu

    echo "net.core.default_qdisc=fq" >> /etc/sysctl.conf
    echo "net.ipv4.tcp_congestion_control=bbr" >> /etc/sysctl.conf
    sysctl -p
    sysctl net.ipv4.tcp_available_congestion_control
    lsmod | grep bbr
    

    多功能BBR安装脚本

    wget -N --no-check-certificate "https://gist.github.com/zeruns/a0ec603f20d1b86de6a774a8ba27588f/raw/4f9957ae23f5efb2bb7c57a198ae2cffebfb1c56/tcp.sh" && chmod +x tcp.sh && ./tcp.sh
    

    锐速/BBRPLUS/BBR2/BBR3

    wget -O tcpx.sh "https://github.com/ylx2016/Linux-NetSpeed/raw/master/tcpx.sh" && chmod +x tcpx.sh && ./tcpx.sh
    

    TCP窗口调优

    wget http://sh.nekoneko.cloud/tools.sh -O tools.sh && bash tools.sh
    

    添加warp

    wget -N https://gitlab.com/fscarmen/warp/-/raw/main/menu.sh && bash menu.sh [option] [lisence/url/token]
    

    25端口开放测试

    telnet smtp.aol.com 25
    

    8、一键安装常用环境及软件

    docker

    bash <(curl -sL 'https://get.docker.com')
    

    Python

    curl -O https://raw.githubusercontent.com/lx969788249/lxspacepy/master/pyinstall.sh && chmod +x pyinstall.sh && ./pyinstall.sh
    

    iperf3

    apt install iperf3
    

    realm

    bash <(curl -L https://raw.githubusercontent.com/zhouh047/realm-oneclick-install/main/realm.sh) -i
    

    gost

    wget --no-check-certificate -O gost.sh https://raw.githubusercontent.com/qqrrooty/EZgost/main/gost.sh && chmod +x gost.sh && ./gost.sh
    

    极光面板

    bash <(curl -fsSL https://raw.githubusercontent.com/Aurora-Admin-Panel/deploy/main/install.sh)
    

    哪吒监控

    curl -L https://raw.githubusercontent.com/naiba/nezha/master/script/install.sh  -o nezha.sh && chmod +x nezha.sh && sudo ./nezha.sh
    

    WARP

    wget -N https://gitlab.com/fscarmen/warp/-/raw/main/menu.sh && bash menu.sh
    

    Aria2

    wget -N git.io/aria2.sh && chmod +x aria2.sh && ./aria2.sh
    

    宝塔

    wget -O install.sh http://v7.hostcli.com/install/install-ubuntu_6.0.sh && sudo bash install.sh
    

    PVE虚拟化

    bash <(wget -qO- --no-check-certificate https://raw.githubusercontent.com/oneclickvirt/pve/main/scripts/build_backend.sh)
    

    Argox

    bash <(wget -qO- https://raw.githubusercontent.com/fscarmen/argox/main/argox.sh)
    

    9、综合功能脚本

    科技lion

    apt update -y  && apt install -y curl
    
    bash <(curl -sL kejilion.sh)
    

    SKY-BOX

    wget -O box.sh https://raw.githubusercontent.com/BlueSkyXN/SKY-BOX/main/box.sh && chmod +x box.sh && clear && ./box.sh
    

    TG中文汉化

    https://t.me/setlanguage/classic-zh-cn
    

    出处:https://www.nodeseek.com/post-183694-1

  • 这是一条测试

    这是一条测试这是一条测试这是一条测试这是一条测试这是一条测试这是一条测试这是一条测试这是一条测试这是一条测试这是一条测试这是一条测试这是一条测试这是一条测试这是一条测试这是一条测试这是一条测试这是一条测试这是一条测试这是一条测试这是一条测试这是一条测试这是一条测试这是一条测试这是一条测试这是一条测试这是一条测试这是一条测试这是一条测试这是一条测试这是一条测试这是一条测试这是一条测试这是一条测试这是一条测试这是一条测试这是一条测试这是一条测试这是一条测试这是一条测试这是一条测试这是一条测试这是一条测试这是一条测试这是一条测试这是一条测试这是一条测试这是一条测试这是一条测试这是一条测试这是一条测试这是一条测试这是一条测试这是一条测试这是一条测试这是一条测试这是一条测试这是一条测试这是一条测试这是一条测试这是一条测试这是一条测试这是一条测试这是一条测试这是一条测试这是一条测试这是一条测试这是一条测试这是一条测试这是一条测试这是一条测试这是一条测试这是一条测试这是一条测试这是一条测试这是一条测试这是一条测试这是一条测试

  • 公告测试

    公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试公告测试

  • 网页中怎么引入icon的图标

    使用字体图标(如Font Awesome)

    Font Awesome是最流行的字体图标库之一,它允许你通过CSS来使用矢量图标。

    步骤:

    引入Font Awesome在HTML的<head>部分,通过<link>标签引入Font Awesome的CSS文件。

    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">

    使用图标

    使用<i>标签和特定的类名来插入图标。

    <i class="fas fa-heart"></i>
    
    <a href="https://www.google.com/search?q=yhd.org" class="fa-brands fa-google"><i></i> 搜索一下</a>

    图标库:https://fa6.dashgame.com/

  • Nginx Proxy Manager 可视化面板一键安装部署方法

    2.更新下VPS系统环境:

    apt update -y && apt install -y curl socat wget sudo

    3.安装 Docker:

    curl -fsSL https://get.docker.com | sh

    4.一键安装 Nginx Proxy Manager:

    docker run -d \
      --name=npm \
      -p 80:80 \
      -p 81:81 \
      -p 443:443 \
      -v /home/npm/data:/data \
      -v /home/npm/letsencrypt:/etc/letsencrypt \
      --restart=always \
      jc21/nginx-proxy-manager:latest

    5.安装成功后进入NGINX后台面板:

    服务器IP加81端口访问网页

    用户:admin@example.com

    密码:changeme

    登入后记得先修改密码!

    官方手册:https://nginxproxymanager.com/guide/

    最新修订:2025.11.8日

    近期安装的 Nginx Proxy Manager 需要自己手动设定管理员账户密码哦