Procinfo command in linux explained

procinfo Command in Linux Explained

Proc file system is a virtual file system created at the time of system boot and dismissed after the system gets shut down. It is such a system that stores the information of the system such as processes. For the kernel, it acts as an information and control center. From the proc file system, various programs can get a handful of information used for various reasons.

From the /proc directory, the procinfo command can get useful information regarding the system. With that system information, the procinfo command provides the output in a better way for the user to read.

In this article, we are going to discuss the use of the procinfo command by installing it on Ubuntu 20.04 LTS server.

Installation
Sponsored
of Procinfo command

To install the procinfo command on Ubuntu 20.04 LTS server, we are going to run the command as shown below.

$ sudo apt install procinfo -y

Use cases of procinfo command

You can run the procinfo command to see all the system status. You can see below screenshot for further details.

$ procinfo

Procinfo command in linux explained 1

To display the result between the information of the system per second, rather than the total value, we can run the command as shown below.

$ procinfo -d

Procinfo command in linux explained 2

To display the memory stats in a human readable form, you can run the following command.

$ procinfo -H

Procinfo command in linux explained 3

You can see all stats are on kiloByte(KiB), MegaByte(MiB) and GigaByte(GiB) which is more human-friendly and readable.

Sponsored

To display the result between the information of the system as total, rather than per second, we can run the command as shown below.

$ procinfo -D

Procinfo command in linux explained 4

By default, to show the output with the information such as memory stats, IRP and DMA information system, disk space, you can run the command as below.

See also  Four Ways to Install Software on Ubuntu Linux
$ procinfo -s

To display the updates of the stats continuously by pausing with n number of seconds by using the “-n” flag. Here we are using n = 3 for this session. You can run the command as follows and press “q” to break the session.

$ procinfo -n3 -H

To display the real free memory, you can run the command as follows with the “-r” flag.

$ procinfo -r

Procinfo command in linux explained 5

To display the version of the procinfo , you can run the following command.

$ procinfo -v

Procinfo command in linux explained 6

Conclusion

You can get information about the system such as processes and many more with the procinfo command utility. For more information, you can run the “man procinfo” command. Thank you!


Discover more from Ubuntu-Server.com

Subscribe to get the latest posts sent to your email.

Comments

No comments yet. Why don’t you start the discussion?

    Leave a Reply