Skip to content

🦜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:

 

Parrot OS Tutorials

 

💻 Installation (Virtual Machine or Dual Boot)

Option A: Virtual Machine (Recommended for beginners)

  1. Download the ISO from Parrot OS Official Website
  2. Install VirtualBox/ VMWare
  3. Create a new virtual machine:
    • Type: Linux
    • Version: Debian (64-bit)
    • Memory: 2GB+ (4GB recommended)
    • Disk: 20GB+
  4. Mount the ISO and start the VM
  5. Select “Install with GTK GUI” and follow the installation prompts

Option B: Dual Boot with Windows/Linux

  1. Backup your data
  2. Create a bootable USB using Rufus
  3. 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

  1. Update your system
    $ sudo apt update && sudo apt full-upgrade
  2. Change default password
    $ passwd
  3. Install additional tools
    $ sudo apt install toolname
  4. 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.