System |
릴리스 버전 |
-- |
커널 버전, 비트 번호 |
RedHat |
고양이 /etc/issue |
cat /etc/redhat-release |
lsb_release -a |
CentOS |
cat /etc/issue |
고양이 /etc /centos-release |
cat /proc/version |
Debian |
cat /etc/issue |
cat /etc/debian_version |
고양이 /proc /version |
Ubuntu |
cat /etc/issue |
cat /etc/lsb_release |
cat /proc/version |
오라클 |
cat /etc/issue |
cat /etc/oracle-release |
lsb_release -a |
[root@getlnx05 ~]# cat /etc/issue Red Hat Enterprise Linux Server release 5.7 (Tikanga) Kernel \r on an \m
cat /etc/redhat-release
를 통해서도 관련 정보를 확인하고 보실 수 있습니다. cat /etc/redhat-release
也查到看到相关的信息。
[root@getlnx05 ~]# lsb_release -a LSB Version: :core-4.0-amd64:core-4.0-ia32:core-4.0-noarch:graphics-4.0-amd64:graphics-4.0-ia32:graphics-4.0-noarch:printing-4.0-amd64:printing-4.0-ia32:printing-4.0-noarch Distributor ID: RedHatEnterpriseServer Description: Red Hat Enterprise Linux Server release 5.7 (Tikanga) Release: 5.7 Codename: Tikanga
LSB Version
项显示的是系统的内核版本,其中amd64
表示系统是64位的。
[chenyurong@localhost local]$ cat /etc/issue CentOS release 6.5 (Final) Kernel \r on an \m
通过cat /etc/centos-release
也可以查询到一样的信息。
[chenyurong@localhost local]$ cat /proc/version Linux version 2.6.32-431.el6.x86_64 (mockbuild@c6b8.bsys.dev.centos.org) (gcc version 4.4.7 20120313 (Red Hat 4.4.7-4) (GCC) ) #1 SMP Fri Nov 22 03:15:09 UTC 2013
Linux version 2.6.32-431.el6.x86_64
显示了Linux的版本,x86_64
显示了是64位的系统。通过uname -r
也可以查到相关信息。
[root@DB-Server ~]# cat /etc/issue Oracle Linux Server release 5.7 Kernel \r on an \m
通过cat /etc/oracle-release
也可以查询到相关信息。
[root@DB-Server ~]# lsb_release -a LSB Version: :core-4.0-amd64:core-4.0-ia32:core-4.0-noarch:graphics-4.0-amd64:graphics-4.0-ia32:graphics-4.0-noarch:printing-4.0-amd64:printing-4.0-ia32:printing-4.0-noarch Distributor ID: EnterpriseEnterpriseServer Description: Enterprise Linux Enterprise Linux Server release 5.7 (Carthage) Release: 5.7 Codename: Carthage
LSB Version
显示的是系统的内核版本,其中amd64
LSB 버전
항목 표시는 시스템의 커널 버전입니다. 여기서 amd64
는 시스템이 64비트임을 나타냅니다.
cat /etc/centos-release
를 통해서도 동일한 정보를 쿼리할 수 있습니다.
모든 명령어의 적용 범위 요약
|
|
명령어 |
적용 범위 |
lsb_release -a |
모든 Linux 배포판 |
cat /etc/redhat-release |
RedHat Linux |
|
|
Command |
적용 범위 |
uname -a, uname -r | 모든 Linux 배포판 |
위 내용은 Linux 버전 정보를 확인하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!