From cfa9829d45a5250593093d538e28f2a24e7ecf1b Mon Sep 17 00:00:00 2001 From: Debian Date: Thu, 28 Aug 2025 12:16:27 +0000 Subject: [PATCH] add install --- install.sh | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 install.sh diff --git a/install.sh b/install.sh new file mode 100644 index 0000000..ac5b400 --- /dev/null +++ b/install.sh @@ -0,0 +1,41 @@ +#!/bin/bash + +# Mettre à jour la liste des paquets +sudo apt update + +# Installer les outils de base +sudo apt install -y \ + git \ + bash \ + zsh \ + vim \ + net-tools \ # contient netstat, ifconfig... + iproute2 \ # commandes ip, ss + procps \ # commandes ps, top + lsof \ # fichiers ouverts + psmisc \ # fuser, killall + tree \ # affichage arborescent + htop \ # top amélioré + dstat \ # stats système + iotop \ # IO disque + strace \ # traçage des appels système + ltrace \ # traçage des appels de bibliothèque + tcpdump \ # capture réseau + nmap \ # scanner réseau + curl \ # requêtes HTTP + wget \ # téléchargement + jq \ # traitement JSON + sed \ # traitement de flux + gawk \ # awk GNU + grep \ # recherche + coreutils \ # cat, tee, etc. + dnsutils \ # dig, nslookup + traceroute \ # traceroute réseau + whois \ # requêtes whois + sysstat \ # iostat, mpstat, sar + iputils-ping \ # ping + iputils-tracepath # tracepath + +./update_repos.sh + +echo "Installation terminée." \ No newline at end of file