Category Linux

4 ways to use Linux tar Command

The tar command in Linux is used to bundle up multiple files and/or directories. It’s similar to the zip command. However, zip files are compressed by definition; tar files can be compressed, but don’t have to be. How to Use…

How tar works in Linux

The tar command in Linux is used to bundle up multiple files and/or directories. It’s similar to the zip command. However, zip files are compressed by definition; tar files can be compressed, but don’t have to be. How tar Works…

Find Process Using Most CPU and Memory in Linux

We can use this command to find out which process uses the highest CPU or Memory in Linux. # ps -eo pid,ppid,cmd,%mem,%cpu –sort=-%mem |head # ps -eo pid,ppid,cmd,%mem,%cpu –sort=-%cpu |head How to Find the Process Which Uses Most CPU The…

Linux Find exec Command Cheat Sheet

find is a Linux/Unix command used to search for files and directories in a specified location based on certain criteria such as name, size, modified time, and ownership, among others. The exec option in find is used to execute a…

Remove users in Linux using userdel Command

The userdel command is a Linux utility that can be used to delete user accounts and their associated files. Open the terminal and type userdel username. It performs this function by removing the user’s entry from the /etc/passwd file, and…

10 useful Linux useradd command Examples

The Linux operating system offers a plethora of powerful commands, each designed to perform specific tasks efficiently. One such command is ‘useradd,’ which plays a crucial role in managing user accounts on a Linux system. Whether you are a system…