13 August 201410 May 2023Linux CommandsBy Admin how to use netstat command and its examples Examples: 1. To display the kernel routing table $ netstat -r$ netstat –route 2. To display multicast group membership information $ netstat […]
13 August 201410 May 2023Linux CommandsBy Admin how to use mpstat command and its examples The mpstat command provides detailed information about the CPU usage and performance statistics of a system. Which is typically used to monitor […]
13 August 201410 May 2023Linux CommandsBy Admin how to use mountstat command and its examples Examples: 1. To get the NFS mount stats $ mountstat 2. To get only NFS mount stats $ mountstat –nfs 3. To […]
13 August 201411 May 2023Linux CommandsBy Admin how to use mount command with its examples Examples: 1. To mount a file system $ mount /dev/sda /support 2. To specify the file system type $ mount -t nfs […]
13 August 201423 May 2023Linux CommandsBy Admin how to use more command with its examples Examples: 1. To browse the file $ more file.txt 2. To display the prompt for continue $ more -d file.txt 3. To […]
13 August 201420 May 2023Linux CommandsBy Admin mkswap command line utility with its examples The mkswap command is used to create a swap area on a device or a file. It is a portion of a […]
13 August 201412 May 2023Linux CommandsBy Admin what is mkpasswd command with its examples It is a command which is used to generate encrypted passwords or password hashes. Which is commonly used for generating password hashes […]
13 August 201412 May 2023Linux CommandsBy Admin how to use mkfs command with its examples Examples: 1. To make the file system $ mkfs /dev/sda2 2. To produce the verbose output $ mkfs -V /dev/sda2 3. To […]
13 August 201412 May 2023Linux CommandsBy Admin mke2fs command line tool and its examples Examples: 1. To create a file system on a device $ mke2fs /dev/sda2 2. To specify the block size in bytes $ […]
13 August 201412 May 2023Linux CommandsBy Admin how to us mkdir command with its examples Examples: 1. To make the directory $ mkdir mike 2. To set file mode while making the directory $ mkdir -m$ mkdir […]