How to get complete machine information in LINUX Command Line

Linux is great and command line is marvelous, you can get any information you like to know about your system just in milliseconds. You just need to remember a command and issue it on command line. Few very basic yet powerful commands are share as under to get complete information about your LINUX operating system, hardware, machine name and many more;

$ cat /proc/version

The above command Will give you a full string of information

uname -m

The above command Will give you the machine number ( like i686 )

uname -r

The above command Will show the kernel version

uname -n

The above command will give you the local domain name

uname -s

The above command will give you the system name

uname -p

The above command will give you the processor

uname -a

The above command will give you the all information for the above commands with date and time.

uname command

Leave a Comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.