linux vps没有wget命令解决
linux vps没有wget命令会提示:
-bash: wget: command not found
linux vps解决没有wget命令的方法:
阿里云限量代金券 | 此广告位出租25元/月 |
debian系统
apt-get -y update apt-get install wget -y
CentOS系统
yum -y install wget
另外,好多脚本都喜欢用curl命令,但是有些VPS模板里没有curl命令,因此分享下解决办法:
yum -y install curl #ContOS 安装 curl apt-get install curl #Debian Ubuntu 安装 crul
如果提示软件源失效,可以手动安装阿里或网易源:https://23vps.com/post/22.html
如果手动太麻烦,推荐使用一键脚本换源:https://23vps.com/post/21.html
但是比较打脸的是这个一键脚本默认也是使用curl运行的,所以可以尝试使用wget命令替换curl命令即可,这就是我不明白为啥好多脚本作者喜欢用curl命令而不直接用wget命令的奇怪之处了。