美文网首页
apt-get install 的参数

apt-get install 的参数

作者: 已不再更新_转移到qiita | 来源:发表于2020-08-12 08:37 被阅读0次

    sudo apt-get install -y xx
    -y:yes,在命令行交互提示中,直接输入 yes

    sudo add-apt-repository ppa:ubuntu-elisp/ppa
    sudo apt-get update
    sudo apt-get install emacs-snapshot emacs-snapshot-el
    

    -f:解决包依赖的问题
    sudo apt-get -f install xx

    --no-install-recommends参数来避免安装非必须的文件,从而减小镜像的体积

    sudo apt-get -y install --no-install-recommends openresty


    参考:

    https://www.cnblogs.com/pswzone/archive/2012/04/09/2438885.html

    https://blog.csdn.net/lanchunhui/article/details/57086547

    相关文章

      网友评论

          本文标题:apt-get install 的参数

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