🦜Parrot OS Tutorials for Beginners
🧩 What is Parrot OS?
Parrot OS is a Debian-based Linux distribution designed for security, development, and privacy. It comes with a wide range of tools pre-installed for:
- Penetration testing
- Digital forensics
- Reverse engineering
- Software development
- Anonymity and privacy
Available versions:
- Parrot Security: Full tools for ethical hacking
- Parrot Home: Lightweight and privacy-focused
- Parrot ARM: For devices like Raspberry Pi
More information:
💻 Installation (Virtual Machine or Dual Boot)
Option A: Virtual Machine (Recommended for beginners)
- Download the ISO from Parrot OS Official Website
- Install VirtualBox/ VMWare
- Create a new virtual machine:
- Type: Linux
- Version: Debian (64-bit)
- Memory: 2GB+ (4GB recommended)
- Disk: 20GB+
- Mount the ISO and start the VM
- Select “Install with GTK GUI” and follow the installation prompts
Option B: Dual Boot with Windows/Linux
- Backup your data
- Create a bootable USB using Rufus
- Boot into USB and install Parrot OS alongside existing OS
🧠 Basic Parrot Linux Commands
Some basic commands to know are as follows:
Command | Description |
---|---|
ls |
List files and directories |
cd |
Change directory |
pwd |
Show current directory path |
mkdir |
Create a new directory |
rm |
Remove files or directories |
sudo |
Run a command as superuser (root) |
apt update |
Update package list from repositories |
apt upgrade |
Upgrade all installed packages |
🛠️ First Things to Do After Installing
- Update your system
$ sudo apt update && sudo apt full-upgrade
- Change default password
$ passwd
- Install additional tools
$ sudo apt install toolname
- Enable/Disable Anonsurf
$ sudo anonsurf start # Start Tor-based traffic routing $ sudo anonsurf stop
🎨 Customize Your Environment
- Use
mate-tweak
to change desktop layout - Edit
.bashrc
for terminal aliases - Install themes and icons for personalization
Parrot Desktop Environment
🐍 Simple Ethical Hacking Tools
Categories of tools available in Parrot OS:
- Information Gathering: Nmap, WhatWeb
- Vulnerability Analysis: Nikto, OpenVAS
- Exploitation Tools: Metasploit
- Password Attacks: Hydra, John the Ripper
- Wireless Testing: Aircrack-ng
- Web Application Testing: Burp Suite, OWASP ZAP
Example: Scan a network with Nmap:
$ nmap -sP 192.168.1.0/24
Disclaimer:
The information provided on this website regarding Parrot OS is for educational and informational purposes only. Parrot OS is a security-focused operating system intended for ethical hacking, penetration testing, digital forensics, and privacy protection. Always ensure you have proper authorization before conducting any security testing. Use Parrot OS responsibly and ethically. We are not affiliated with the official Parrot OS team. All trademarks belong to their respective owners.