hping 可在 Alpine 上使用。
https://pkgs.alpinelinux.org/contents?branch=edge&name=hping3&arch=x86&repo=testing
但是,当我尝试安装它时,我收到以下错误消息。
localhost:~$ apk search -v hping
localhost:~$ sudo apk search -v hping
localhost:~$
localhost:~$ sudo apk add hping
ERROR: unsatisfiable constraints:
hping (missing):
required by: world[hping]
localhost:~$
localhost:~$ sudo apk add hping2
ERROR: unsatisfiable constraints:
hping2 (missing):
required by: world[hping2]
localhost:~$
localhost:~$ sudo apk add hping3
ERROR: unsatisfiable constraints:
hping3 (missing):
required by: world[hping3]
localhost:~$
我在其他软件包(例如 tcpdump)上没有这个问题。
答案1
hping3
位于测试存储库中。
# apk 添加 hping3 --update-cache --repository http://dl-cdn.alpinelinux.org/alpine/edge/testing
您还可以将此存储库添加到/etc/apk/repositories
.
答案2
我遇到了这个线程,并且我在 Alpine Linux 中为 hping3 启用了 tcl:
https://git.alpinelinux.org/cgit/aports/commit/?id=e2234712acb3c0e00d14ccada2f576b2c746393c
只需添加新包:
apk add -X http://dl-dn.alpinelinux.org/alpine/edge/testing hping3
hping3-20051105-r4
是启用了 tcl 的那个。
弗朗西斯科