๐ป Terminal Basics
The terminal is the primary tool for working with Linux servers.
๐ง Essential Commands
| pwd # show current directory
ls # list files
ls -la # list all files with details
cd <dir> # change directory
clear # clear screen
|
๐ Navigation
| cd / # root directory
cd ~ # home directory
cd .. # go up one level
|
๐ Viewing Files
| cat file.txt
less file.txt
head file.txt
tail -f file.txt # live log view
|
๐ ๏ธ Editing Files
Nano is beginnerโfriendly and safe.
๐จ Tips for Beginners
- Linux is caseโsensitive
- Use TAB to autoโcomplete
- Use โ to repeat previous commands