Find Linux RAM Information Command

In Linux, you can use the free command to view information about the system’s memory usage. The free command displays the amount of physical memory, swap memory, and memory buffers available on the system, as well as the amount of memory that is currently being used. To use the free command, simply open a terminal … Read more

How to install sensors (lm-sensors) on Ubuntu / Debian Linux

To install the lm-sensors package on Ubuntu or Debian, you can use the following steps: Open a terminal window. Update the package list by running the following command: sudo apt-get update Install the lm-sensors package by running the following command: sudo apt-get install lm-sensors Once the installation is complete, run the following command to detect … Read more

How To – Linux List Disk Partitions Command

In Linux, you can use the lsblk command to list the disk partitions. The lsblk command displays information about all available block devices in the system, including disk partitions. Here’s how to use it: Open a terminal window. Type the following command and press Enter: lsblk This will list all available block devices, including disks … Read more

cat command in Linux / Unix with Examples

The cat command in Linux/Unix is a command-line utility that is used to concatenate and display the contents of one or more files. It stands for “concatenate.” Some common uses of cat include: Displaying the contents of a file: cat file.txt Concatenating the contents of multiple files into a single file: cat file1.txt file2.txt > … Read more

Linux Network Statistics Tools / Commands

There are several tools and commands in Linux that can be used to monitor and gather network statistics: ifconfig – This is a basic command that provides information about the network interfaces on a system, including IP addresses, netmasks, and the status of each interface. ip – This is a more advanced version of the … Read more

Error While Loading Shared Libraries: libgobject-2.0.so.0 Error and Solution [ Debian / Ubuntu ]

The “Error While Loading Shared Libraries: libgobject-2.0.so.0” error occurs when a program is unable to find the libgobject-2.0.so.0 library, which is a part of the GLib library. To resolve this error, you need to install the GLib library on your system. On Debian and Ubuntu, you can do this by using the following command: sudo … Read more