Skip to content

Latest commit

 

History

History
65 lines (41 loc) · 1.67 KB

File metadata and controls

65 lines (41 loc) · 1.67 KB

🚀 Step 2: Setting Up TCPDUMP on Your Machine 💻

Ready to get TCPDUMP up and running? Let’s do it! 🛠️ Depending on which flavor of Linux you’re using, the steps vary slightly. No worries though, I’ve got you covered!

🌱 Installing TCPDUMP (It's Easy, Promise!)

For Ubuntu/Debian Users 🐧:

It’s as easy as 1-2-3! Just update your system and install TCPDUMP with these commands:

# Update your package lists
sudo apt update

# Install TCPDUMP
sudo apt install tcpdump -y

Boom! You’re all set on Ubuntu or Debian. 🎉

For CentOS/RHEL Heroes 🦸‍♂️:

Here’s your trusty command to install TCPDUMP on CentOS/RHEL. Go ahead, give it a whirl!

# Install TCPDUMP using yum package manager
sudo yum install tcpdump -y

You’re now in the TCPDUMP club! 🏅

For Arch Linux Enthusiasts 🏔️:

Arch users, you’re always ahead of the curve! 😎 Use this command to get TCPDUMP:

# Install TCPDUMP using pacman
sudo pacman -S tcpdump

Look at you, being all cutting-edge! 🧠

For Fedora Fans 🐾:

Fedora makes it simple too! Just type this and you’ll be catching packets in no time:

# Install TCPDUMP using dnf package manager
sudo dnf install tcpdump -y

Now you’re ready to roll! 🏎️

✅ Verify Your Installation:

Want to make sure everything installed correctly? Just run this command:

# Check the installed version of TCPDUMP
tcpdump --version

If you see the version number pop up, congrats – you’re all set! 🎉 Now get ready to dive into the world of packet sniffing like a pro! 🌍🔍

Previous | Next