当前位置:   article > 正文

Linux 下更新 Host_linux刷新hosts

linux刷新hosts

文章目录


  • Linux 下更新 Host

Linux下下载github代码,经常超时,有时候可通过更新host来解决。以下梳理总结几种更新 host的方法。


更新Host

#方法一(openwrt,也利用于linux)
wget -q https://gitlab.com/ineo6/hosts/-/raw/master/next-hosts -O /tmp/new.txt --no-check-certificate
cat /tmp/new.txt /etc/hosts > /tmp/new1.txt
cp /tmp/new1.txt /etc/hosts
chmod 664 /etc/hosts
/etc/init.d/dnsmasq restart	#仅wrt需要

#方法二:
sudo sed -i '/github/d' /etc/hosts
sudo bash -c "curl https://gitlab.com/ineo6/hosts/-/raw/master/next-hosts | grep github >> /etc/hosts"

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11

The End.


声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/578707
推荐阅读
相关标签
  

闽ICP备14008679号