美文网首页
如何确认OS

如何确认OS

作者: 芒鞋儿 | 来源:发表于2020-11-27 19:00 被阅读0次

    pull container 安装,经常会遇到不知道下载的是哪个OS(debian, linux, centos, ubuntu)的情况,可以用以下方式确认

    # uname -a
    Linux bae3f6205782 4.19.76-linuxkit #1 SMP Tue May 26 11:42:35 UTC 2020 x86_64 GNU/Linux
    # more /etc/issue
    Debian GNU/Linux 10 \n \l
    
    # cat /etc/os-release
    PRETTY_NAME="Debian GNU/Linux 10 (buster)"
    NAME="Debian GNU/Linux"
    VERSION_ID="10"
    VERSION="10 (buster)"
    VERSION_CODENAME=buster
    ID=debian
    HOME_URL="https://www.debian.org/"
    SUPPORT_URL="https://www.debian.org/support"
    BUG_REPORT_URL="https://bugs.debian.org/"
    
    

    cat /etc/os-release 给出最完整的信息

    参考:
    https://serverfault.com/questions/805389/which-os-is-running-in-my-docker-container

    相关文章

      网友评论

          本文标题:如何确认OS

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