Files
testgitea/easytierinstall.sh
2026-06-07 11:02:08 +08:00

11 lines
428 B
Bash

#!/bin/bash
# 这是一条注释,说明脚本用途
# 没有运行权限,需先执行下面的命令:
# chmod +x my_commands.sh
echo "==>starting install unzip"
apt update
apt install unzip
echo "==>starting install easytier"
wget -O /tmp/easytier.sh "https://raw.githubusercontent.com/EasyTier/EasyTier/main/script/install.sh" && sudo bash /tmp/easytier.sh install --gh-proxy https://ghfast.top/
echo "==>easytier doned"