Commands

Copy, Paste, Execute

One-click copy commands. Interactive terminal preview. Get started in seconds.

Get Started in 3 Steps

1

Clone Repository

Download the script from GitHub to your local machine.

bash
git clone https://github.com/issu321/Linux-Installation-Tools.git
2

Enter Directory

Navigate into the cloned repository folder.

bash
cd Linux-Installation-Tools
3

Run Script

Execute the installation script with root privileges.

bash
sudo bash installation.sh

One-Liner Installation

Advanced users can run everything in a single command:

One-Liner
git clone https://github.com/issu321/Linux-Installation-Tools.git && cd Linux-Installation-Tools && sudo bash installation.sh

Interactive Terminal View

Experience the script output before you even run it. Click any command to copy.

issu321@kali:~/Linux-Installation-Tools — installation.sh
issu321@kali:~$
[sudo] password for issu321: ********
██╗███████╗███████╗██╗ ██╗██████╗ ██╗██████╗ ██╗ ██║██╔════╝██╔════╝██║ ██║╚════██╗███║╚════██╗███║ ██║███████╗███████╗██║ ██║ █████╔╝╚██║ █████╔╝╚██║ ██║╚════██║╚════██║██║ ██║ ╚═══██╗ ██║ ╚═══██╗ ██║ ██║███████║███████║╚██████╔╝██████╔╝ ██║██████╔╝ ██║ ╚═╝╚══════╝╚══════╝ ╚═════╝ ╚═════╝ ╚═╝╚═════╝ ╚═╝
Linux Installation Tools v1.0.0 | By issu321
GitHub: https://github.com/issu321/Linux-Installation-Tools
══════════════════════════════════════════════════════════════════════════════
▶ SYSTEM VALIDATION
══════════════════════════════════════════════════════════════════════════════
Checking root privileges...
[✓] Root privileges confirmed
Detecting operating system...
[✓] Kali Linux detected: Kali GNU/Linux Rolling
Testing internet connectivity...
[✓] Internet connection is active
Setting up working directories...
[✓] Directories ready at /var/log/issu321-installer
Backing up APT sources...
[✓] APT sources backed up
Welcome to ISSU321 Linux Installation Tools!
Your complete Kali Linux automation companion.
╔══════════════════════════════════════════════════════════════════════════════╗
║ SELECT INSTALLATION MODE ║
╠══════════════════════════════════════════════════════════════════════════════╣
║ ║
[1] COMPLETE SETUP
║ → Install ALL tools (Dev, Hacking, Media, Office) ║
║ → Full system upgrade with drivers & firmware ║
║ → Recommended for newly installed Kali Linux ║
║ ║
[2] FULL SYSTEM UPGRADE ONLY
║ → Upgrade ALL packages, apps, and pip modules ║
║ → Complete Kali Linux distribution upgrade ║
║ → Update drivers, firmware, and kernel ║
║ ║
[3] INSTALL DEVELOPMENT TOOLS ONLY
║ → VS Code, Docker, Python, Node.js, Git, etc. ║
║ ║
[4] INSTALL HACKING TOOLS ONLY
║ → Metasploit, Burp Suite, Nmap, Wireshark, etc. ║
║ ║
[5] INSTALL KALI-LINUX-EVERYTHING
║ → ALL Kali tools (~15+ GB download) ║
║ ║
[0] EXIT
║ ║
╚══════════════════════════════════════════════════════════════════════════════╝
➤ Enter your choice [0-5]: _

Command Reference

All the commands you might need before, during, or after installation.

Installation

Clone the repository
git clone https://github.com/issu321/Linux-Installation-Tools.git
Navigate to directory
cd Linux-Installation-Tools
Make script executable
chmod +x installation.sh
Run the script
sudo bash installation.sh

Troubleshooting

Fix broken packages
sudo apt --fix-broken install
Update package lists
sudo apt update
Clean up disk space
sudo apt clean && sudo apt autoremove
Check disk space
df -h

Post-Install

Reboot system
sudo reboot
Check installed tools
which nmap && which code && which docker
View installation logs
ls /var/log/issu321-installer/
Update the script
git pull origin main

System Info

Check OS version
cat /etc/os-release
Check kernel version
uname -r
Check memory usage
free -h
Check installed packages
dpkg -l | wc -l

Ready to Install?

Copy the commands above and run them in your terminal. Your Kali Linux will be fully equipped in minutes.

Copied to clipboard!