找回密码
 立即注册
CeraNetworksBGVM服务器主机交流会员请立即修改密码Sharktech防护
查看: 143|回复: 9

[脚本收集]常用脚本备份

[复制链接]

3

主题

434

回帖

1119

积分

金牌会员

积分
1119
发表于 2021-11-22 11:27:18 | 显示全部楼层 |阅读模式
本帖最后由 AaronYYDS 于 2021-11-22 11:32 编辑

DD 重装

· 甲骨文
[ol]
  • bash 复制代码

    · 三毛
    [ol]
  • wget -N --no-check-certificate https://raw.githubusercontent.com/veip007/dd/master/dd-gd.sh && chmod +x dd-gd.sh && ./dd-gd.sh[/ol]复制代码

    · gcore
    [ol]
  • wget git.io/auto.sh
  • bash auto.sh -d 9 -v 64 -a -p 密码[/ol]复制代码

    · 轻量
    [ol]
  • bash 复制代码

    以上内容来自这条帖子

    · 带 WebUI 可查看进度的
    [ol]
  • https://raw.githubusercontent.com/flyqie/dd-shell/master/Core_Install.sh[/ol]复制代码
    国内机可使用
    [ol]
  • https://ghproxy.com/https://raw.githubusercontent.com/flyqie/dd-shell/master/Core_Install.sh[/ol]复制代码
    感谢 @flyqie 大佬 原帖地址

    最近在使用 @insightfy 大佬的(不知道为啥萌咖大佬的我DD到11 貌似没成功过这个大佬的可以)  帖子地址

    [ol]
  • bash 复制代码

    目前我所知道的一些参数(可能有的不准确,欢迎大佬指出)

    [ol]
  • -firmware  额外的驱动支持
  • -d             后面是系统版本号
  • -v             后面写64位 32位
  • -a             (不清楚这个干啥的但是每个脚本都带)
  • --mirror     后面是镜像源地址[/ol]复制代码
    -p             后面写自定义密码
    [ol]
  • 镜像站地址
  • 官方给出的地址列表:https://www.debian.org/mirror/list
  • 一些国内的
  • ftp.cn.debian.org
  • mirror.bjtu.edu.cn
  • mirror.lzu.edu.cn        
  • mirror.nju.edu.cn        
  • mirrors.163.com        
  • mirrors.bfsu.edu.cn        
  • mirrors.hit.edu.cn        
  • mirrors.huaweicloud.com        
  • mirror.sjtu.edu.cn        
  • mirrors.tuna.tsinghua.edu.cn        
  • mirrors.ustc.edu.cn        
  • 使用方法:(大致都是一样的)
  • 清华源
  • --mirror 'https://mirrors.ustc.edu.cn/debian/'
  • 腾讯源
  • --mirror 'https://mirrors.aliyun.com/debian/'
  • 阿里源
  • --mirror 'https://mirrors.aliyun.com/debian/'
  • 华为源
  • --mirror 'https://mirrors.huaweicloud.com/debian/'
  • [/ol]复制代码

    宝塔面板&AApanel

    Debian系统
    [ol]
  • # 宝塔
  • wget -O install.sh http://download.bt.cn/install/install-ubuntu_6.0.sh && bash install.sh
  • # aapanel
  • wget -O install.sh http://www.aapanel.com/script/install-ubuntu_6.0_en.sh && bash install.sh
  • [/ol]复制代码

    有次无聊看了看文件发现aapanel就是宝塔的换皮,语言换成了英语,所以破解方法一样。
    [ol]
  • # 宝塔去实名认证
  • rm -rf /www/server/panel/data/bind.pl
  • # 宝塔&aapanel破解
  • 编辑 /www/server/panel/class/panelplugin.py
  • 找到 softList['list'] = tmpList 这行代码
  • 在下面添加以下代码,注意缩进
  • softList['pro'] = 1
  • for soft in softList['list']:
  • soft['endtime'] = 0
  • 编辑完毕后保存重启面板即可[/ol]复制代码

    常用脚本

    一键开启BBR
    [ol]
  • 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[/ol]复制代码

    superbench
    [ol]
  • wget -qO- git.io/superbench.sh | bash
  • [/ol]复制代码

    Bench.sh
    [ol]
  • wget -qO- bench.sh | bash
  • [/ol]复制代码

    三网测速
    [ol]
  • bash 复制代码

    流媒体
    [ol]
  • #第一个
  • bash 复制代码

    回程
    [ol]
  • # 第一个
  • wget https://raw.githubusercontent.com/nanqinlang-script/testrace/master/testrace.sh
  • bash testrace.sh
  • # 第二个
  • wget -qO- git.io/besttrace | bash
  • [/ol]复制代码

    国内机一件安装docker
    [ol]
  • curl -sSL https://get.daocloud.io/docker | sh
  • [/ol]复制代码
    卸载docker
    [ol]
  • sudo apt-get remove docker docker-engine
  • rm -fr /var/lib/docker/
  • [/ol]复制代码
    国内机安装docker-compose
    [ol]
  • curl -L https://get.daocloud.io/docker/compose/releases/download/v2.1.1/docker-compose-`uname -s`-`uname -m` > /usr/local/bin/docker-compose
  • chmod +x /usr/local/bin/docker-compose
  • [/ol]复制代码
  • 回复

    使用道具 举报

    89

    主题

    180

    回帖

    1459

    积分

    金牌会员

    积分
    1459
    发表于 2021-11-22 11:28:54 | 显示全部楼层
    支持一下了!
    回复

    使用道具 举报

    224

    主题

    5145

    回帖

    1万

    积分

    论坛元老

    积分
    11620
    发表于 2021-11-22 11:32:42 | 显示全部楼层
    不错  里面也有我常用的
    回复

    使用道具 举报

    237

    主题

    1643

    回帖

    6142

    积分

    论坛元老

    积分
    6142
    发表于 2021-11-22 11:33:21 | 显示全部楼层
    不错 收藏了

    回复

    使用道具 举报

    1

    主题

    16

    回帖

    65

    积分

    注册会员

    积分
    65
    发表于 2021-11-22 11:37:20 | 显示全部楼层
    不错 收藏一下脚本
    回复

    使用道具 举报

    48

    主题

    395

    回帖

    1558

    积分

    金牌会员

    积分
    1558
    发表于 2021-11-22 11:38:48 | 显示全部楼层
    谢谢,已收藏
    回复

    使用道具 举报

    51

    主题

    1792

    回帖

    4715

    积分

    论坛元老

    积分
    4715
    发表于 2021-11-22 11:39:36 | 显示全部楼层
    很有用,已收藏
    回复

    使用道具 举报

    30

    主题

    711

    回帖

    2032

    积分

    金牌会员

    积分
    2032
    发表于 2021-11-22 11:40:39 | 显示全部楼层

    很有用,马上手动采集
    回复

    使用道具 举报

    34

    主题

    136

    回帖

    626

    积分

    高级会员

    积分
    626
    发表于 2021-11-22 11:41:18 | 显示全部楼层
    谢谢分享,已收藏
    回复

    使用道具 举报

    49

    主题

    329

    回帖

    1539

    积分

    金牌会员

    积分
    1539
    发表于 2021-11-22 11:42:17 | 显示全部楼层
    收藏
    回复

    使用道具 举报

    您需要登录后才可以回帖 登录 | 立即注册

    本版积分规则

    Archiver|手机版|小黑屋|HS2V主机综合交流论坛

    GMT+8, 2024-11-18 17:24 , Processed in 0.067276 second(s), 3 queries , Gzip On, Redis On.

    Powered by Discuz! X3.5

    © 2001-2024 Discuz! Team.

    快速回复 返回顶部 返回列表