https://github.com/wizardofoz669/kali-auto-updater
A simple script to update, upgrade, and clean a Kali Linux system with a single command.
https://github.com/wizardofoz669/kali-auto-updater
bash bash-script
Last synced: 2 months ago
JSON representation
A simple script to update, upgrade, and clean a Kali Linux system with a single command.
- Host: GitHub
- URL: https://github.com/wizardofoz669/kali-auto-updater
- Owner: wizardOfOz669
- License: mit
- Created: 2025-06-18T02:00:20.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-06-19T02:11:42.000Z (about 1 year ago)
- Last Synced: 2025-07-02T05:04:28.880Z (about 1 year ago)
- Topics: bash, bash-script
- Language: Shell
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# š Kali Linux Auto-Updater Script



A simple yet powerful Bash script to automate Kali Linux system updates, upgrades, and cleanup.
## ⨠Features
- **One-command automation**: Handles all update operations in sequence
- **Root verification**: Automatically checks for sudo privileges
- **Verbose output**: Clear progress indicators with emoji visuals
- **System cleanup**: Removes obsolete packages and cleans cache
- **Lightweight**: Single script with no dependencies
## š ļø Script Contents (updatesys.sh)
```bash
#!/bin/bash
# =============================================
# Kali Linux Auto-Updater
# Version 2.0 - Optimized
# =============================================
# Verify root privileges
if [ "$(id -u)" -ne 0 ]; then
echo "ā Please run with sudo"
echo "Example: sudo ./updatesys.sh"
exit 1
fi
echo -e "\nš¹ Starting system update..."
sleep 1
# Update package lists
echo -e "\nšø Updating package lists..."
apt update
# Upgrade system
echo -e "\nšø Upgrading packages..."
apt upgrade -y
apt full-upgrade -y
# Cleanup
echo -e "\nšø Cleaning system..."
apt autoremove -y
apt clean -y
echo -e "\nā
System update completed successfully!"
š¦ Requirements
Kali Linux system
sudo/root privileges
Internet connection
ā” Quick Start
1- Download the script:
git clone https://github.com/wizardOfOz669/kali-auto-updater.git
cd kali-auto-updater
2- Make executable:
chmod +x updatesys.sh
3- Run with sudo:
sudo ./updatesys.sh
ā ļø Important Notes
Always back up important data before system upgrades
Recommended to run in a terminal (not through GUI)
Monitor the process if running on critical systems
š License
This project is licensed under the MIT License - see the LICENSE file for details.
Made with ā¤ļø by WizardOfOz669