当我尝试通过 wget 下载时,我必须使用--inet4-only
选项。
否则我会得到这个:
mobin@mobinuntu:~/Desktop/bbb/bb-kernel$wget https://releases.linaro.org/components/toolchain/binaries/6.3-2017.05/arm-linux-gnueabihf/gcc-linaro-6.3.1-2017.05-x86_64_arm-linux-gnueabihf.tar.xz
--2017-08-10 05:09:47-- https://releases.linaro.org/components/toolchain/binaries/6.3-2017.05/arm-linux-gnueabihf/gcc-linaro-6.3.1-2017.05-x86_64_arm-linux-gnueabihf.tar.xz
Resolving releases.linaro.org (releases.linaro.org)... failed: No such file or directory.
wget: unable to resolve host address ‘releases.linaro.org’
有什么办法可以解决这个问题吗?(使用不 --inet4-only
带选项的 wget)
答案1
根据这些手册页:
- https://www.gnu.org/software/wget/manual/html_node/Wgetrc-Commands.html
- https://ftp.gnu.org/old-gnu/Manuals/wget-1.8.1/html_chapter/wget_6.html
我刚刚添加inet4_only = on
到/etc/wgetrc
配置文件中,并且此选项已全局设置为所有 wget 命令。