diff --git a/README.md b/README.md index 1ffec13..b626b32 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ - 修改Cloudflare->SSL/TLS->Overview->Full - Cloudflare ---> A记录解析的云朵必须为灰色 - Windows系统不可以使用FinalShell,会导致ssh断开,建议使用xshell或者原版ssh等其他工具代替 -- wget: command not found [这里需要自己手动安装下wget] +- wget: command not found [这里需要自己手动安装下wget],如未使用过Linux,[点击查看]安装教程(https://raw.githubusercontent.com/mack-a/v2ray-agent/master/shell/install/install_tools.md) - 脚本安装路径[/etc/v2ray-agent] ## 安装脚本 diff --git a/shell/install/install_tools.md b/shell/install/install_tools.md new file mode 100644 index 0000000..57accbc --- /dev/null +++ b/shell/install/install_tools.md @@ -0,0 +1,15 @@ +# 安装wget +- centos +``` +yum update && yum install -y wget +``` + +- Debian& +``` +apt update && apt install wget -y +``` + +- Ubuntu +``` +apt-get update && apt-get install wget -y +``` \ No newline at end of file