Lesson 1: Linux Foundations

Linux is the foundation of ethical hacking. Most security tools run on Linux, and understanding it is mandatory before learning hacking techniques.

Basic Linux Commands

pwd
ls
ls -la
cd Documents
mkdir lab
touch test.txt

File Permissions

ls -l
chmod 755 script.sh
Practice only on your own system or a virtual machine.