From 02d38f489bec5b560b2e2047fd7a2c112162d46f Mon Sep 17 00:00:00 2001 From: mack-a <57424792+mack-a@users.noreply.github.com> Date: Fri, 16 Oct 2020 17:17:03 +0800 Subject: [PATCH] =?UTF-8?q?feat(readme):=20=E6=B7=BB=E5=8A=A0=E5=AE=89?= =?UTF-8?q?=E8=A3=85wget=E6=95=99=E7=A8=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 2 +- shell/install/install_tools.md | 15 +++++++++++++++ 2 files changed, 16 insertions(+), 1 deletion(-) create mode 100644 shell/install/install_tools.md 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