?kali Linux Basics - Cheat Sheet For Beginners
?kali Linux Basics - Cheat Sheet For Beginners
Table of Contents
📝 File Operations
Command Description Example
find [path] -name Find files by name in a path find / -name file.txt
[filename]
sudo apt upgrade Install updates for all sudo apt upgrade
installed packages
sudo apt install Install a specific package sudo apt install vim
[package]
sudo apt remove Uninstall a specific package sudo apt remove vim
[package]
Each number in chmod represents permissions for Owner, Group, and Others:
Number Permissions Meaning
Examples
chmod 755 file.sh → Owner has full access (7 = rwx); group and others can
read and execute (5 = r-x).
chmod 644 file.sh → Owner can read and write (6 = rw-); group and others
can only read (4 = r--).
📊 System Monitoring
Command Description Example
🌐 Network Essentials
Command Description Example
ifconfig Show network interface ifconfig
configuration
ip a List IP addresses of ip a
interfaces
🔧 Process Management
Command Description Example
rsync -av [source] Sync files between local and rsync -av /local
[dest] remote systems user@host:/remote
Keep reading