feat(readme): 添加安装wget教程

pull/534/merge
mack-a 2020-10-16 17:17:03 +08:00
parent 76109162fa
commit 02d38f489b
2 changed files with 16 additions and 1 deletions

View File

@ -48,7 +48,7 @@
- 修改Cloudflare->SSL/TLS->Overview->Full - 修改Cloudflare->SSL/TLS->Overview->Full
- Cloudflare ---> A记录解析的云朵必须为灰色 - Cloudflare ---> A记录解析的云朵必须为灰色
- Windows系统不可以使用FinalShell会导致ssh断开建议使用xshell或者原版ssh等其他工具代替 - 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] - 脚本安装路径[/etc/v2ray-agent]
## 安装脚本 ## 安装脚本

View File

@ -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
```