linux commands :: how to show linux version?
본문 바로가기
computer&Electronics

linux commands :: how to show linux version?

by racingtesk 2017. 12. 28.
반응형

how to display linux kernel version and other information? how do I check linux kernel version? You need to use the following two commands.

 

1. uname : print kernel and system infomation.

    2. cat /etc/*release : print distribution information.

 

 

see current linux kernel version.

 

uname -r  or uname -mrs

 

sample outputs :

 

find linux version

 

 

 

print all information

 

 

 

uname -a

 

 

sample outputs :

 

find linux version

 

 


how to check linux version information?

 

type the following command.

 

 

cat /proc/version

 

 

sample output:

 

find linux version

 

 

 

how to linux distribution version?

 

type the following command.

 

 cat /etc/*release

 

 

 

sample output:

 

 

find linux version

 

반응형