美文网首页
解决在校园网中Manjaro上无法使用pacman的问题

解决在校园网中Manjaro上无法使用pacman的问题

作者: laiiihz | 来源:发表于2019-04-04 16:35 被阅读0次

    使用方法

    在resolv.conf中添加

    echo “options single-request” >> /etc/resolv.conf
    

    使用此方法可暂时解决此问题
    若要长期使用请在/etc/NetworkManager中:

    cd dispatcher.d/
    touch 15-resolv
    

    在/etc/NetworkManager/dispatcher.d/15-resolv文件中添加

    #!/bin/bash
    # Description : script to override default resolv.conf file
    # with customized file.
    cp -f /etc/resolv.conf.custom /etc/resolv.conf
    
    

    在/etc/ 中添加resolv.conf.custom并修改

    cp /etc/resolv.conf /etc/resolv.conf.custom
    echo “options single-request”
    

    重启NetworkManager

    sudo sytemctl restart NetworkManager
    

    成功

    相关文章

      网友评论

          本文标题:解决在校园网中Manjaro上无法使用pacman的问题

          本文链接:https://www.haomeiwen.com/subject/strqiqtx.html