Skip to content

Latest commit

 

History

History
65 lines (44 loc) · 762 Bytes

installation.md

File metadata and controls

65 lines (44 loc) · 762 Bytes

Installation

Windows

scoop install netcat

or you can download the .exe file from https://eternallybored.org/misc/netcat/

Debian/Ubuntu

# Traditional
sudo apt install netcat-traditional

sudo apt install netcat

# OpenBSD
sudo apt install netcat-openbsd

# Ncat
sudo apt install nmap

CentOS

yum install nc

MacOS

brew install netcat

Arch

sudo pacman -Syu netcat

Make from source

Traditional

visit the project homepage

./configure
make
sudo make install

GNU

visit the project homepage

cd netcat-0.7.1/
./configure
make
sudo make install