Category: Bash

0

Chapter 31: Bash Memory Usage (free)

What does free actually do? (super simple first) free = shows you memory usage statistics (RAM + swap) in a very quick, readable way. It tells you: How much total RAM your computer has...

0

Chapter 32: Bash Terminate kill

What does kill actually do? (super simple first) kill sends a signal (a special message) to one or more running processes (programs/tasks) by their PID (Process ID). The default signal is SIGTERM (terminate nicely)...

0

Chapter 33: Bash uptime

What does uptime actually do? (super simple first) uptime is one of the quickest and most useful commands in Linux. It shows you three very important pieces of information in one short line: Current...

0

Chapter 34: Networking

What is Networking? (super simple first) Networking = connecting computers/devices so they can talk to each other, share things, and work together. Imagine: You and your friend want to share a photo → you...

0

Chapter 35: Bash ping

What does ping actually do? (super simple first) ping = checks if another computer/device/server is reachable over the network and measures how long it takes for a message to go there and come back....

0

Chapter 36: Bash URL Transfer (curl)

Bash URL Transfer (curl)! 😄 curl (written in lowercase) is one of the most powerful and most used tools in the entire Bash/Linux world — especially for developers, DevOps people, API testers, and anyone...

0

Chapter 37: Bash Downloader (wqet)

Bash Downloader (wqet)! 😄 First things first — I think you meant wget (pronounced “double-u get”), not “wqet”. It’s a very common typo because the keys are close on the keyboard (q next to...

0

Chapter 38: Bash Remote Connect (ssh)

Bash Remote Connect (ssh) — the ssh command, which stands for Secure SHell. This is probably the most powerful and most used remote access tool in the entire world of Linux, servers, cloud, DevOps,...

0

Chapter 39: Bash Secure Copy (scp)

Bash Secure Copy (scp)! 😄 scp stands for Secure CoPy — it’s the secure version of the old cp command, but instead of copying files between folders on your own computer, scp copies files/folders...

0

Chapter 40: Bash File Sync (rsync)

Bash File Sync (rsync) day! ☕ This is the real upgrade after we learned cp, mv, and scp. Many people call rsync the king of file copying/syncing in Linux/Bash world — especially in 2026...