可能是最便宜的国外代理商
https://proxy6.net/
可能是最便宜的国外代理商
https://proxy6.net/
老王的vps脚本工具:
curl -fsSL https://raw.githubusercontent.com/eooce/ssh_tool/main/ssh_tool.sh -o ssh_tool.sh && chmod +x ssh_tool.sh && ./ssh_tool.sh
或
wget -qO ssh_tool.sh https://raw.githubusercontent.com/eooce/ssh_tool/main/ssh_tool.sh && chmod +x ssh_tool.sh && ./ssh_tool.sh
定期释放无用的缓存:
sync; echo 3 > /proc/sys/vm/drop_caches
加到 cron 任务中,每天定期执行:
echo “0 4 * * * root sync; echo 3 > /proc/sys/vm/drop_caches” >> /etc/crontab
定期清理日志文件:
journalctl –vacuum-size=100M # 清理日志至100MB
Hax的vps设置DNS连网:
echo -e “nameserver 2001:67c:2b0::4\nnameserver 2001:67c:2b0::6” > /etc/resolv.conf
一键获取甲骨文与谷歌云的最高root权限脚本:
bash <(curl -sSL https://raw.githubusercontent.com/panhuanghe/vpsroot/main/root.sh)
这也适用于其他默认密钥型VPS。
Hestia面板该有的都有,别的面板没有的它也有,其还可以搭建自己的NS服务器。
如果安装时没有设置密码,可以修改密码: v-change-user-password "admin" "NewPassword"
创建实例时点击:Add launch script
输入脚本代码:
echo root:password |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
其中password是密码