首页
关于
Search
1
X-ui可视化面板安装及使用教程
1,925 阅读
2
azure100刀换IP教程
1,333 阅读
3
Emby/Jellyfin 的一个日本电影刮削器插件
1,090 阅读
4
使用Python批量发送视频、图片到TG频道
1,052 阅读
5
docker下部署青龙面板京东自动签到
1,008 阅读
随记
Python
流水
登录
/
注册
Search
标签搜索
宝塔
脚本
Wordpress
docker
centos7
腾讯云
宝塔面板
Python
甲骨文
Rclone
WIN7
Python3
virmach
破解
BBr
反向代理
Onemanager
onedrive
Euserv
火车头
Phon
累计撰写
142
篇文章
累计收到
3
条评论
首页
栏目
随记
Python
流水
页面
关于
搜索到
11
篇与
的结果
2022-02-15
独服硬盘通电时间检测脚本
wget -q https://github.com/Aniverse/A/raw/i/a && bash a
2022年02月15日
200 阅读
0 评论
0 点赞
2021-12-04
virmach python筛选脚本
黑五直接下单地址: https://billing.virmach.com/cart.php?a=add&pid=175import requests import json import re import time import sys import winsound settings = { 'price': 15, 'virt': 'KVM', 'ram': 2048, 'cpu': 2, 'hdd': 30, 'bw': 1500, 'ips': 1, } url = 'https://billing.virmach.com/modules/addons/blackfriday/new_plan.json' def run(): response = json.loads(requests.get(url).text) price = response['price'] if 'yr' in price: price = float(re.findall('\$(.+?) <span>/yr</span>', price)[0]) virt = response['virt'] ram = int(response['ram']) cpu = int(response['cpu']) hdd = int(response['hdd']) bw = int(response['bw']) ips = int(response['ips']) pid = response['pid'] location = response['location'] # BUFFALO if price <= settings['price'] and virt == settings['virt'] and ram >= settings['ram'] and cpu >= settings[ 'cpu'] and hdd >= settings['hdd'] and bw >= settings['bw'] and ips >= settings['ips']: winsound.Beep(500, 1000) print('$', price) print(cpu, 'H', ram, 'M', bw, 'G') print('hdd:', hdd, 'G') if ips > 1: print(ips) print(location) print('https://billing.virmach.com/cart.php?a=add&pid=' + str(pid)) else: item = '无符合机器 ' + time.strftime("%H:%M:%S %Y-%m-%d", time.localtime()) sys.stdout.write('\r' + str(item) + '\033[K') sys.stdout.flush() while 1: run() time.sleep(5)
2021年12月04日
72 阅读
0 评论
0 点赞
2021-11-24
VPS常用脚本
一、DD系统脚本1、甲骨文DD系统bash <(wget --no-check-certificate -qO- 'https://moeclub.org/attachment/LinuxShell/InstallNET.sh') -d 9 -v 64 -a -firmware2、三毛DD系统wget -N --no-check-certificate https://raw.githubusercontent.com/veip007/dd/master/dd-gd.sh && chmod +x dd-gd.sh && ./dd-gd.sh3、gcore伯力DD系统wget git.io/auto.sh bash auto.sh -d 9 -v 64 -a -p 密码4、通用DD Windows脚本wget --no-check-certificate -qO InstallNET.sh 'https://moeclub.org/attachment/LinuxShell/InstallNET.sh' && bash InstallNET.sh -dd 'http://d.nat.ee/win/lite/win7-ent-sp1-x64-cn/win7-ent-sp1-x64-cn.vhd.gz'5、腾讯轻量DD系统bash <(wget --no-check-certificate -qO- 'https://moeclub.org/attachment/LinuxShell/InstallNET.sh') -d 10 -v 64 -a二、其他脚本1、带 WebUI 可查看进度的https://raw.githubusercontent.com/flyqie/dd-shell/master/Core_Install.sh2、国内机可使用https://ghproxy.com/https://raw.githubusercontent.com/flyqie/dd-shell/master/Core_Install.sh3、bash <(wget --no-check-certificate -qO- 'https://file.geekn.net/CNODnjau/InstallNET.sh') -d 11 -v 64 -a -firmware三、镜像源镜像站地址 官方给出的地址列表: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 'http://mirrors.tencent.com/debian/' --mirror 'http://mirrors.cloud.tencent.com/debian/' 腾讯源内网(dd完毕后可以修改 走内网不费额外流量) http://mirrors.tencentyun.com/ 阿里源 --mirror 'https://mirrors.aliyun.com/debian/' 华为源 --mirror 'https://mirrors.huaweicloud.com/debian/' 四、宝塔bt面板&国际版宝塔AApanel1、安装Debian系统# 宝塔 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.sh2、破解# 宝塔去实名认证 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 编辑完毕后保存重启面板即可五、其他脚本1、一键开启BBRecho "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 bbr2、superbenchwget -qO- git.io/superbench.sh | bash3、Bench.shwget -qO- bench.sh | bash4、三网测速bash <(curl -Lso- http://yun.789888.xyz/speedtest.sh)5、流媒体检测第一个bash <(curl -L -s https://raw.githubusercontent.com/lmc999/RegionRestrictionCheck/main/check.sh)第二个bash <(curl -sSL "https://github.com/CoiaPrant/MediaUnlock_Test/raw/main/check.sh")6、测试回程第一个wget https://raw.githubusercontent.com/nanqinlang-script/testrace/master/testrace.sh bash testrace.sh第二个wget -qO- git.io/besttrace | bash7、国内机一件安装dockercurl -sSL https://get.daocloud.io/docker | sh8、卸载dockersudo apt-get remove docker docker-engine rm -fr /var/lib/docker/9、国内机安装docker-composecurl -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
2021年11月24日
36 阅读
0 评论
0 点赞
2021-04-05
hostlocT楼脚本
项目地址: https://github.com/popppp1/AutoScript 1.Centossudo yum -y install epel-release sudo yum -y install python-pip sudo yum clean all sudo pip install lxml sudo pip install selenium2.运行脚本wget --no-check-certificate https://raw.githubusercontent.com/popppp1/AutoScript/master/hostloc/hostloc.py python hostloc.py 踢楼地址 踢楼楼层 踢楼口号 账户 密码
2021年04月05日
65 阅读
0 评论
0 点赞
2021-03-29
回程和去程脚本
非自定义wget -qO- git.io/autobesttrace | bash自定义wget https://github.com/zhucaidan/BestTrace-Linux/raw/master/besttrace && chmod +x besttrace ./besttrace 测试的IP/域名
2021年03月29日
160 阅读
0 评论
0 点赞
1
2
3