29 Ocak 2020 Çarşamba

lsb_release komutu

Giriş
Açıklaması şöyle.
/usr/bin/lsb_release is a Python script.
-a seçeneği - all
Açıklaması şöyle.
The /etc/lsb-release file defines environmental variables with the same information provided by the lsb_release -a command:
Bu dosya şöyledir
$ cat /etc/lsb-release
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=16.04
DISTRIB_CODENAME=xenial
DISTRIB_DESCRIPTION="Ubuntu 16.04.6 LTS"
Örnek
Şöyle yaparız.
# lsb_release -a
LSB Version:    core-9.20170808ubuntu1-noarch:security-9.20170808ubuntu1-noarch
Distributor ID: Ubuntu
Description:    Ubuntu 18.04.3 LTS
Release:        18.04
Codename:       bionic
-c seçeneği - Codenane
Codename'i döndürür.
Örnek
Şöyle yaparız.
lsb_release -c
Çıktı olarak şunu alırız
Codename:   xenial
-r seçeneği
Release değerini döndürür.
Örnek
Şöyle yaparız.
Var=$(lsb_release -r)
echo "$Var"
Örnek
Release ve Codename değerlerini almak için şöyle yaparız.
$ lsb_release -rc
Release:    16.04
Codename:   xenial
-s seçeneği
Açıklaması şöyle.
-s   show requested information in short format
-r   show release number of this distribution
-d   show description of this distribution
Örnek
Şöyle yaparız.
lsb_release -sr
-s seçeneği kullanıldığı için çıktı olarak şunu alırız.
18.04


Hiç yorum yok:

Yorum Gönder