当前位置: 首页>>技术教程>>正文


如何检查Ubuntu版本

, ,
您可以在下面找到有关如何检查当前正在运行的Ubuntu版本的一些提示。

查找Ubuntu版本的第一个地方是查看内部/etc/issue文件。从终端运行命令:

$ cat /etc/issue
Ubuntu Xenial Xerus \n \l

要获取Ubuntu版本号,请检查以下内容/etc/lsb-release文件:

$ cat /etc/lsb-release 
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=16.04
DISTRIB_CODENAME=xenial
DISTRIB_DESCRIPTION="Ubuntu Xenial Xerus

有关Ubuntu版本的其他信息,请参见/etc/os-release

$ cat /etc/os-release 
NAME="Ubuntu"
VERSION="16.04 (Xenial Xerus)"
ID=ubuntu
ID_LIKE=debian
PRETTY_NAME="Ubuntu 16.04"
VERSION_ID="16.04"
HOME_URL="http://www.ubuntu.com/"
SUPPORT_URL="http://help.ubuntu.com/"
BUG_REPORT_URL="http://bugs.launchpad.net/ubuntu/"
UBUNTU_CODENAME=xenial



此外,以下linux命令将为您提供当前Ubuntu版本的简洁输出:

$ lsb_release -crid
Distributor ID:	Ubuntu
Description:	Ubuntu Xenial Xerus (development branch)
Release:	16.04
Codename:	xenial

最后,systemd命令hostnamectl揭示了Ubuntu版本以及一些其他相关信息,例如内核版本等:

$ hostnamectl
   Static hostname: linuxconfig
         Icon name: computer-desktop
           Chassis: desktop
        Machine ID: 3b348a19c578436796b717d614b868b1
           Boot ID: 1ad07ee4476a466392fc8dfa423e3b11
  Operating System: Ubuntu 16.04
            Kernel: Linux 4.4.0-18-generic
      Architecture: x86-64

参考资料

本文由Ubuntu问答整理, 博文地址: https://ubuntuqa.com/article/8747.html,未经允许,请勿转载。