removed space from dir names

This commit is contained in:
2026-04-10 23:52:56 +03:30
parent 9c419f72c4
commit ded4f55fb8
43 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
## 🖥️ Viewing Memory Usage with `free`
The `free` command shows your systems memory usage.
```bash
free
```
For **human-readable** output (MB, GB, etc.):
```bash
free -h
```
**📊 Explanation of columns:**
| Column | Description |
| ---------------- | ------------------------------------------------------------------ |
| **💾 total** | Total physical memory (RAM) available in the system. |
| **📂 used** | Memory currently used by processes and the system. |
| **🆓 free** | Completely unused RAM (not allocated to anything). |
| **🔄 shared** | Memory shared between multiple processes. |
| **⚡ buff/cache** | Memory used for file buffers and cache to improve performance. |
| **✅ available** | Estimated memory available for starting new apps without swapping. |
💡 **Pro Tip:**
* `✅ available` is more useful than `🆓 free` for knowing how much memory you can actually use, since Linux keeps unused memory in cache for speed.