[color=blue] // [/color] 更新列表
2023-0525 检测是否可以访问ChatGPT脚本
markdown</s><i> </i>bash <(curl -Ls https://raw.githubusercontent.com/missuo/OpenAI-Checker/main/openai.sh)<i> </i><e>
**2023-4-29 修改检测是否可以访问ChatGPT脚本**
```markdown
1. bash <(curl -Ls https://ourl.co/oaic)
2. bash <(curl -Ls https://cdn.jsdelivr.net/gh/missuo/OpenAI-Checker/openai.sh)
```
**综合工具箱(强烈推荐,集成了很多脚本)**
```markdown
wget -O box.sh https://raw.githubusercontent.com/BlueSkyXN/SKY-BOX/main/box.sh && chmod +x box.sh && clear && ./box.sh
```
**杜甫测试**
```markdown
wget -q https://github.com/Aniverse/A/raw/i/a && bash a
```
----
[color=blue] **//** [/color] **DD相关**
**1、甲骨文DD脚本**
**DD成Debian 10**
```markdown
bash <(wget --no-check-certificate -qO- 'https://raw.githubusercontent.com/MoeClub/Note/master/InstallNET.sh') -d 10 -v 64 -p "自定义root密码" -port "自定义ssh端口"
```
**DD成Ubuntu 20.04**
```markdown
bash <(wget --no-check-certificate -qO- 'https://raw.githubusercontent.com/MoeClub/Note/master/InstallNET.sh') -u 20.04 -v 64 -p "自定义root密码" -port "自定义ssh端口"
```
**2、GCP DD脚本**
```markdown
bash <(wget --no-check-certificate -qO- 'https://raw.githubusercontent.com/MoeClub/Note/master/InstallNET.sh') --ip-addr 10.128.0.8 --ip-gate 10.138.0.1 --ip-mask 255.255.255.0 -d 11 -v 64 -p 123456 -port 22
```
----
[color=blue] **//** [/color] 测试相关
**单线程测试**
```markdown
bash <(curl -Lso- https://bench.im/hyperspeed)
```
**速度测试**
**显示延迟、抖动**
```markdown
bash <(wget -qO- https://bench.im/hyperspeed)
```
**三网测速**
```markdown
bash <(curl -Lso- https://git.io/superspeed_uxh)
```
**测试25端口是否开放**
```markdown
telnet smtp.aol.com 25
```
**开机改密码脚本:**
```markdown
#!/bin/bash
echo root:Vicer |sudo chpasswd root
sudo sed -i 's/^#\?PermitRootLogin.*/PermitRootLogin yes/g' /etc/ssh/sshd_config;
sudo sed -i 's/^#\?PasswordAuthentication.*/PasswordAuthentication yes/g' /etc/ssh/sshd_config;
sudo reboot
```
另一位大佬的脚本
```markdown
wget --no-check-certificate -O AutoReinstall.sh https://git.io/AutoReinstall.sh && bash AutoReinstall.sh
```
CentOS默认密码Pwd@CentOS 其它系统Pwd@Linux
OpenVZ / LXC 架构系统不适用
**IP质量体检脚本**
```markdown
https://github.com/xykt/IPQuality
```