This repository contains my study notes about Linux fundamentals, terminal commands, and file system navigation.
The goal is to document commands and concepts learned during my studies in Linux and cybersecurity.
- Linux terminal basics
- File system navigation
- User privileges
- Basic system commands
ip a
pwd
ls
cd
cd ..
cd /
date
clear
ls | more Ir apertando o enter, vai mostrando o diretoório aos poucos - Shift + c, para
ls primeira letra + * Exemplo: ls a*
ls primeira letra + ?+ * Exemplo: ls g?o*
touch arquivo.txt
ls arquivo[1-3]*
Linux terminals are case sensitive, meaning uppercase and lowercase letters are treated differently.
Example: Arquivo.txt ≠ arquivo.txt
Luan Savarese