ubuntu错误:Failed to connect to raw.githubusercontent.com port 443: Connection refused

在安装vim-plug插件时,执行下列指令

curl -fLo ~/.vim/autoload/plug.vim --create-dirs     https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim

遇到了如下错误:

Failed to connect to raw.githubusercontent.com port 443: Connection refused

发生这个错误的原因之一是github的域名解析被污染了,可以手动修改hosts解决此问题。

解决方法如下:

通过vim编辑器打开hosts

sudo vim /etc/hosts

在hosts里面添加下列内容:

199.232.28.133 raw.githubusercontent.com

现在重新执行下列命令继续vim-vimplug的安装便不会报错啦!

curl -fLo ~/.vim/autoload/plug.vim --create-dirs     https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim

 

你可能感兴趣的:(ubuntu错误:Failed to connect to raw.githubusercontent.com port 443: Connection refused)