Command

Bash Tac Command
tac command in Linux is used to concatenate and print files in reverse. This command will write each FILE to standard output, the last line first. Whe...
SSH Command
The ssh command provides a secure encrypted connection between two hosts over an insecure network. This connection can also be used for terminal acces...
How to Check your Computer Harware Configurations in Linux
16 Commands to Check Hardware Information on Linux lscpu. The lscpu command reports information about the cpu and processing units. ... lshw - List Ha...
Linux Free Command Tutorial
What does the free command do in Linux? What are the basic command in Linux? What is the fastest way to learn Linux commands? What is free command in ...
How to Use the Linux Top command
The top command allows users to monitor processes and system resource usage on Linux. ... You can press the following keys to sort the list 'M' to sor...
Bash run command in the background
How do I run a command in the background in bash? How do I run a command in the background? How do I run a Linux command in the background? How do I r...
Find Disk Space Used by Specific User Linux
Check Disk Usage in Linux Using the du Command du -sh /home/user/Desktop — the -s option will give us the total size of a specified folder (Desktop in...
Wall Command in Linux with Examples
What is Wall command in Linux? How do you use the wall command? Which command in Linux with examples? How do I broadcast a message in Linux? How do I ...
How to manage files from the Linux terminal
How do I manage files in Linux? How do I access a file in Linux terminal? How do I navigate to a folder in Linux terminal? How do I edit a file in Lin...
How to Get IP Address in Linux
The following commands will get you the private IP address of your interfaces ifconfig -a. ip addr (ip a) hostname -I | awk '{print $1}' ip route get ...
At Command in Linux
at is a command-line utility that allows you to schedule commands to be executed at a particular time. Jobs created with at are executed only once. In...
du Command on Linux
The du command is a standard Linux/Unix command that allows a user to gain disk usage information quickly. It is best applied to specific directories ...