Software-Installation

Alpine Linux 無法安裝 hping;錯誤:不可滿足的約束

  • July 13, 2017

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 等其他軟體包上沒有這個問題。

hping3在測試儲存庫中。

# apk 添加 hping3 --update-cache --repository http://dl-cdn.alpinelinux.org/alpine/edge/testing

您還可以將此儲存庫添加到/etc/apk/repositories.

我遇到了這個執行緒,我在 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 的那個。

弗朗西斯

引用自:https://unix.stackexchange.com/questions/371762