您的位置:首页 > 运维架构 > Linux

Ubuntu查看系统的各种版本信息

2017-12-02 20:30 465 查看
下面是一些查看当前Linux系统的版本的方法:

注:proc目录下记录的当前系统运行的各种数据,version记录的版本信息可以通过cat查看到。

1. 使用命令:cat /proc/version



proc目录下记录的当前系统运行的各种数据,version记录的版本信息可以直接通过cat查看到,还可以看到gcc版本信息。

2. 使用命令:uname -a



如上图显示自己的内核版本,并且可以查看系统是32位(i386);

$ uname -m
i386


3. 使用命令:lsb_release -a



# lsb_release --help
Usage: lsb_release [options]

Options:
-h, --help         show this help message and exit
-v, --version      show LSB modules this system supports
-i, --id           show distributor ID
-d, --description  show description of this distribution
-r, --release      show release number of this distribution
-c, --codename     show code name of this distribution
-a, --all          show all of the above information
-s, --short        show requested information in short format


4. 使用命令:cat /etc/issue

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  ubuntu uname version linux