CSS Styles

Tuesday, May 11, 2021

Linux - Kernel Version

Source

# Extract
 gzip -dc ../initrd.gz | cpio -idmv --no-absolute-filenames

# Rebuild
 find . | cpio -o -H newc | gzip -9 > ../initrd.gz

XZ Base (Redhat)

# Extract
 xz -dc ../initrd.img | cpio -idmv --no-absolute-filenames

# Rebuild
 find . | cpio -o -H newc | xz -9 > ../initrd.img

Other Distros

Kernel 目錄下 Makefile 的前幾行, 記錄著版本資訊。
以下面的內容為例, 其版本號碼為 2.6.36.2。

 VERSION = 2
 PATCHLEVEL = 6
 SUBLEVEL = 36
 EXTRAVERSION = .2

No comments:

Post a Comment