diff --git a/Linux/Commandes.html b/Linux/Commandes.html index e951444..efd13e4 100644 --- a/Linux/Commandes.html +++ b/Linux/Commandes.html @@ -2,13 +2,13 @@ title: Commandes utiles description: published: true -date: 2021-05-08T07:53:56.471Z +date: 2021-05-08T08:15:30.312Z tags: editor: ckeditor dateCreated: 2021-04-28T18:24:13.228Z --> -
-
Ancienne commande : | +Nouvelle commande : | +
---|---|
ifconfig -a |
+ ip a |
+
ifconfig enp6s0 down |
+ ip link set enp6s0 down |
+
ifconfig enp6s0 up |
+ ip link set enp6s0 up |
+
ifconfig enp6s0 192.168.2.24 |
+ ip addr add 192.168.2.24/24 dev enp6s0 |
+
ifconfig enp6s0 netmask 255.255.255.0 |
+ ip addr add 192.168.1.1/24 dev enp6s0 |
+
ifconfig enp6s0 mtu 9000 |
+ ip link set enp6s0 mtu 9000 |
+
ifconfig enp6s0:0 192.168.2.25 |
+ ip addr add 192.168.2.25/24 dev enp6s0 |
+
netstat |
+ ss |
+
netstat -tulpn |
+ ss -tulpn |
+
netstat -neopa |
+ ss -neopa |
+
netstat -g |
+ ip maddr |
+
route |
+ ip r |
+
route add -net 192.168.2.0 netmask 255.255.255.0 dev enp6s0 |
+ ip route add 192.168.2.0/24 dev enp6s0 |
+
route add default gw 192.168.2.254 |
+ ip route add default via 192.168.2.254 |
+
arp -a |
+ ip neigh |
+
arp -v |
+ ip -s neigh |
+
arp -s 192.168.2.33 1:2:3:4:5:6 |
+ ip neigh add 192.168.3.33 lladdr 1:2:3:4:5:6 dev enp6s0 |
+
arp -i enp6s0 -d 192.168.2.254 |
+ ip neigh del 192.168.2.254 dev wlp7s0 |
+
Permet de lister le contenu d'un répertoire
@@ -307,6 +392,59 @@ dateCreated: 2021-04-28T18:24:13.228Z ++
Permet de compresser ou décompresser en fonction des options
+tar -[options] <nom_fichier_destination> <fichier_ou_dossier_source>
++
Option | +Commentaire | +
---|---|
-c |
+ Création d'une archive | +
-v |
+ Verbose | +
-f |
+ Indique un nom de fichier de destination | +
-z |
+ Compression gzip | +
-j |
+ Compression bzip | +
-x |
+ Extraction d'une archive | +
-t |
+ Lire le contenu d'une archive | +
-r |
+ Ajouter un fichier à une archive existante | +
Exemple : Archiver un dossier.
+tar -cvf test.tar /chemin/dossier/a/compresser
+Exemple : Désarchiver un dossier.
+tar -xvf test.tar /chemin/dossier/destination
Permet d'afficher dans quels groupes se trouve l'utilisateur
@@ -353,7 +491,7 @@ dateCreated: 2021-04-28T18:24:13.228Z-