Sles

如何檢測 SLES 版本?

  • December 8, 2016

這台 SLES 機器有什麼更新檔級別?10.2 還是 10.4?

SERVER:~ # cat /etc/issue
SUSE LINUX Enterprise Server 10.2
Kernel \r (\m), \l
SERVER:~ # 

SERVER:~ # cat /etc/SuSE-release 
SUSE Linux Enterprise Server 10 (x86_64)
VERSION = 10
PATCHLEVEL = 4
SERVER:~ # 

更新:

SERVER:/etc # rpm -V sles-release
S.5....T  c /etc/issue
S.5....T  c /etc/issue.net
S.5....T  c /etc/motd

SERVER:/etc # zypper sl
# | Enabled | Refresh | Type | Name                                                | URI                                                                   
--+---------+---------+------+-----------------------------------------------------+-----------------------------------------------------------------------
1 | No      | No      | YaST | SUSE Linux Enterprise Server 10 SP2                 | cd:///?devices=/dev/hda                                               
2 | Yes     | Yes     | YaST | SUSE Linux Enterprise Server 10 SP2-20110317-171027 | nfs://123.123.123.123/usr/sys/inst.images/Linux/SuSE/SLES10_x86_64/10.2

SERVER:/etc # uname -r
2.6.16.60-0.91.1-smp

更新#2:

SERVER:/etc # cat /etc/issue.rpmnew

Welcome to SUSE Linux Enterprise Server 10 SP4  (x86_64) - Kernel \r (\l).

更新#3

SERVER:/etc # 

SERVER:~ # rpm -qi glibc
Name        : glibc                        Relocations: (not relocatable)
Version     : 2.4                               Vendor: SUSE LINUX Products GmbH, Nuernberg, Germany
Release     : 31.95.1                       Build Date: Mon Sep 19 16:43:25 2011
Install Date: Sun Mar 18 08:01:27 2012      Build Host: macintyre
Group       : System/Libraries              Source RPM: glibc-2.4-31.95.1.src.rpm
Size        : 5141247                          License: BSD 3-Clause; GPL v2 or later; LGPL v2.1 or later
Signature   : DSA/SHA1, Mon Sep 19 16:45:00 2011, Key ID a84edae89c800aca
Packager    : http://bugs.opensuse.org
URL         : http://www.gnu.org/software/libc/libc.html
Summary     : Standard Shared Libraries (from the GNU C Library)
Description :
The GNU C Library provides the most important standard libraries used
by nearly all programs: the standard C library, the standard math
library, and the POSIX thread library.  A system is not functional
without these libraries.
Distribution: SUSE Linux Enterprise 10
SERVER:~ # 

您很可能擁有 SLES10 SP4。

執行rpm -V sles-release- 如果 /etc/SuSE-relase 沒有顯示“5”(即更改了 md5-checksum),則文件內容是原始的。

如果您使用確切的核心版本 ( uname -r) 更新您的問題,我什至可以告訴您更多資訊。

您還可以檢查該系統上哪些儲存庫處於活動狀態:zypper sl

更新 uname/zypper 結果:

是 SLES 核心及其發布日期的列表。這表明您的核心是 2011 年 10 月 28 日發布的 SLES10 SP4。2012-01-23 有一個更新的 SP4 核心。

zypper sl 的輸出讓我感到困惑。我看不到您的系統如何進入 SLES10 SP4 - 僅顯示 SLES10 SP2 儲存庫。

我認為值得深入研究一下……(請參閱我目前對您的問題的評論)

嘗試(對於較新版本) cat /etc/os-release

如果這不起作用,請嘗試(對於舊版本) cat /etc/SuSE-release

引用自:https://unix.stackexchange.com/questions/37336