Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
May 18, 2022 11:37 am GMT

uname Command in CLI

Sign up to my newsletter for more tutorials!.

The uname command, abbreviated as Unix Name, gives information about your Linux system such as machine name, operating system, kernel, etc.

uname -a

All information that can be printed is printed on the screen.

Linux baransel.dev 3.10.0-1160.el7.x86_64 #1 SMP Mon Oct 19 16:18:59 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux

uname -s

It prints the kernel name in use to the screen.

Linux

uname -n

Shows the host name of your computer used in the network.

baransel.dev

uname -r

Shows the Kernel master deployment information I am using.

3.10.0-1160.el7.x86_64

uname -v

Displays the distribution-specific version information of the Kernel version in use, along with the release date.

#1 SMP Mon Oct 19 16:18:59 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux

uname -m

Shows the hardware name of the computer you are using.

x86_64

uname -p

Continue this post on my blog! uname Command in CLI.


Original Link: https://dev.to/baransel/uname-command-in-cli-470n

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To