Home Course Advance Excel Ethical Hacking Anonphisher TBomb Virus-Builder Seeker Linux Basic Tools Download Links CiLocks Fun Commond Cyber Security Advance Excel CMD Commond Excel Shortcut Excel Formating Shortcut Keys MS-Office Free Activation Commond Windows Free Activation Commond Windows Shortcut keys

🐧 Kali Linux - Basic & Useful Commands

Kali Linux is a powerful penetration testing and ethical hacking OS. Below are some commonly used terminal commands:

🔹 System Update & Upgrade
sudo apt update && sudo apt upgrade
🔹 List Directory Contents
ls -la
🔹 Change Directory
cd /path/to/folder
🔹 Install a Package
sudo apt install package-name
🔹 Show Your IP Address
ip a
🔹 Run Python Script
python3 script.py
🔹 Create a New File
touch filename.txt
🔹 Edit File with Nano Editor
nano filename.txt
🔹 Give Execute Permission
chmod +x file.sh
🔹 Run Bash Script
./file.sh
🔹 Clear Terminal
clear
🔹 Search Package
apt search nmap
🔹 Whoami (Current User)
whoami
🔹 View All Users
cat /etc/passwd
🔹 Shutdown / Reboot
sudo shutdown now
sudo reboot