From 0995287fd0a70f23b2415bbfb561ee9b9c9646a2 Mon Sep 17 00:00:00 2001 From: Konano Date: Thu, 23 Jan 2025 18:19:25 +0800 Subject: [PATCH] fix: replace tcptraceroute with mtr and add hping3 --- configure_priv.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/configure_priv.sh b/configure_priv.sh index e445c3e..3d7e297 100755 --- a/configure_priv.sh +++ b/configure_priv.sh @@ -64,7 +64,9 @@ configure_install_useful() { brew install hexyl bat tree p7zip-full else [ "$1" != "noupdate" ] && sudo apt-get update - sudo apt-get install hexyl bat tree fd-find fzf tcptraceroute -y + sudo apt-get install hexyl bat tree fd-find fzf -y + # 原来有 tcptraceroute 的,用 mtr 替代 + sudo apt-get install hping3 mtr -y fi }