feat(readme): 添加安装wget教程
parent
76109162fa
commit
02d38f489b
|
@ -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]
|
||||
|
||||
## 安装脚本
|
||||
|
|
|
@ -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
|
||||
```
|
Loading…
Reference in New Issue