DEV Community

Büşra
Büşra

Posted on

2

Ubuntu 22.04 NMAP Kurulum Yolları

NMAP Derleyerek Nasıl Kurulur?

wget https://nmap.org/dist/nmap-7.91.tar.bz2
tar -xvf nmap-7.91.tar.bz2
cd nmap-7.91

./configure
make
sudo make install
nmap --version

Enter fullscreen mode Exit fullscreen mode

NMAP .deb Paketiyle Nasıl Kurulur?

apt install  --download-only nmap
find / -iname nmap*.deb
cp /var/cache/apt/archives/nmap_7.91+dfsg1+really7.80+dfsg1-2ubuntu0.1_amd64.deb
dpkg -i nmap_7.91+dfsg1+really7.80+dfsg1-2ubuntu0.1_amd64.deb
dpkg -l nmap

Enter fullscreen mode Exit fullscreen mode

NMAP apt Paket Yöneticisi İle Nasıl Kurulur?

sudo apt update
sudo apt install nmap
nmap --version

Enter fullscreen mode Exit fullscreen mode

Top comments (0)

A Workflow Copilot. Tailored to You.

Pieces.app image

Our desktop app, with its intelligent copilot, streamlines coding by generating snippets, extracting code from screenshots, and accelerating problem-solving.

Read the docs

👋 Kindness is contagious

Dive into an ocean of knowledge with this thought-provoking post, revered deeply within the supportive DEV Community. Developers of all levels are welcome to join and enhance our collective intelligence.

Saying a simple "thank you" can brighten someone's day. Share your gratitude in the comments below!

On DEV, sharing ideas eases our path and fortifies our community connections. Found this helpful? Sending a quick thanks to the author can be profoundly valued.

Okay