Updated Install preparations (markdown)
parent
7f9e29ea07
commit
3c7ecf92b4
|
@ -1,40 +1,37 @@
|
|||
# 1. Ubuntu/Debian:
|
||||
|
||||
The default `netcat` tool doesn't support `-4` , `-6` and local address, So, please install `netcat-openbsd` to support all the options.
|
||||
|
||||
|
||||
```
|
||||
apt-get install openssl cron netcat-openbsd curl
|
||||
apt-get install openssl cron socat curl
|
||||
```
|
||||
|
||||
|
||||
# 2. CentOS
|
||||
|
||||
The default `nc` tool doesn't support `-4` , `-6` and local address, So, please install `netcat-openbsd` to support all the options.
|
||||
|
||||
```
|
||||
yum -q -y install openssl crontabs netcat-openbsd curl
|
||||
yum -q -y install openssl crontabs socat curl
|
||||
```
|
||||
For centos 5:
|
||||
|
||||
```
|
||||
yum -q -y install openssl vixie-cron netcat-openbsd curl
|
||||
yum -q -y install openssl vixie-cron socat curl
|
||||
```
|
||||
|
||||
|
||||
# 3. alpine
|
||||
|
||||
The default `nc` tool doesn't support `-4` , `-6` and local address, So, please install `netcat-openbsd` to support all the options.
|
||||
|
||||
```
|
||||
apk --no-cache add -f openssl curl netcat-openbsd
|
||||
apk --no-cache add -f openssl curl socat
|
||||
```
|
||||
|
||||
|
||||
# 4. kalilinux
|
||||
|
||||
The default `netcat` tool doesn't support `-4` , `-6` and local address, So, please install `netcat-openbsd` to support all the options.
|
||||
|
||||
```
|
||||
apt-get -qqy install openssl cron netcat-openbsd curl
|
||||
apt-get -qqy install openssl cron socat curl
|
||||
```
|
||||
|
||||
|
|
Loading…
Reference in New Issue