工做中須要查看一下操做系統版本,或者是源碼編譯安裝時,到網上下載對應的源碼包,須要提早獲取操做系統版本信息。然而,操做系統信息能簡單使用命令獲取,顯然是不安全的,這樣給咱們的系統帶來很大的隱患。這就須要咱們對操做系統信息進行必定的假裝,來迷惑想要***咱們系統的人。這樣會使咱們的系統更加安全。安全
查看操做系統版本信息的命令不少,下面列出一些經常使用的查看方式:bash
1.uname -adom
[root@localhost ~]# uname -a Linux localhost.localdomain 2.6.32-642.el6.x86_64 #1 SMP Tue May 10 17:27:01 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux [root@localhost ~]#
2.cat /etc/issueide
[root@localhost ~]# cat /etc/issue CentOS release 6.8 (Final) Kernel \r on an \m Mage Education Learning Services http://www.magedu.com [root@localhost ~]#
3.lsb_release -a 如命令不能使用,須要安裝redhat-lsb--->yum install -y redhat-lsb.x86_64spa
[root@localhost ~]# lsb_release -a LSB Version: :base-4.0-amd64:base-4.0-noarch:core-4.0-amd64:core-4.0-noarch:graphics-4.0-amd64:graphics-4.0-noarch:printing-4.0-amd64:printing-4.0-noarch Distributor ID: CentOS Description: CentOS release 6.8 (Final) Release: 6.8 Codename: Final [root@localhost ~]#
4.cat /etc/redhat-release操作系統
[root@localhost ~]# cat /etc/redhat-release CentOS release 6.8 (Final) [root@localhost ~]#
以上是幾種查看操做系統信息的方式,有些顯示信息詳細,有些僅僅簡略顯示操做系統信息,工做中根據須要使用不一樣的命令。ip
在使用上述命令查看操做系統信息的過程,實際上都是在讀取/etc/issue和/etc/redhat-release中的信息。因此咱們只要對這兩個文件中的操做系統相關的信息進行修改,就能達到咱們的目的。源碼