Outils pour utilisateurs

Outils du site


tech:shell_commandes_gnu_linux_equivalente

Différences

Ci-dessous, les différences entre deux révisions de la page.

Lien vers cette vue comparative

Prochaine révision
Révision précédente
tech:shell_commandes_gnu_linux_equivalente [2025/03/24 15:06] – créée - modification externe 127.0.0.1tech:shell_commandes_gnu_linux_equivalente [2026/06/26 17:54] (Version actuelle) Jean-Baptiste
Ligne 1: Ligne 1:
 +<!DOCTYPE markdown>
 +{{tag>Brouillon}}
 +
 +# Shell commandes GNU/Linux équivalente
 +
 +Voir :
 +* https://help.ubuntu.com/community/SwitchingToUbuntu/FromLinux/RedHatEnterpriseLinuxAndFedora
 +
 +
 +| Commande                            | Commande équivalente                 
 +| ----------------------------------- | ------------------------------------ |
 +| ifconfig                            | hostname -I                          |
 +| ifconfig                            | netstat -ie                          |
 +| ifconfig                            | ip a                                 |
 +| ifconfig -a                         | ip link                              |
 +| traceroute                          | mtr                                  |
 +| traceroute                          | tracepath                            |
 +| which ls                            | type -P ls                           |
 +| which ls                            | command -v ls                        |
 +| fdisk -l /dev/sda                   | gdisk -l /dev/sda                    |
 +| fdisk -l                            | lsblk                                |
 +| fdisk -l                            | blkid                                |
 +| fdisk -l                            | dmsetup ls                           |
 +| fdisk -l                            | findmnt --real                       |
 +| mount (show)                        | findmnt                              |
 +| mount                               | udisksctl mount -b /dev/sdx          |
 +| mount                               | udisks --mount /dev/sdx              |
 +| hostname                            | uname -n                             |
 +| hostname                            | hostnamectl                          |
 +| hostname                            | cat /proc/sys/kernel/hostname        |
 +| namei /bin/sh                       | readlink -f /bin/sh                  |
 +| host node2                          | getent hosts node2                   |
 +| netstat -taupen                     | lsof -Pni                            |
 +| netstat -taupen                     | lsof -i tcp:8081                     |
 +| netstat -taupen                     | ss -lnt sport = :8081                |
 +| netstat -i                          | ip -s link                           |
 +| netstat                             | ss -l, nstat                         |
 +| netstat -tn                         | ss -ltn                              |
 +| tcpkill                             | ss --kill                            |
 +| tcpkill                             | iptables -j REJECT --reject-with tcp-reset |
 +| iw                                  | iwconfig                             |
 +| arp -a                              | ip neighbor                          |
 +| ifconfig eth0 up                    | ip link set up eth0                  |
 +| route add default gw 192.168.1.1    | ip route add default via 192.168.1.1 |
 +| route -n                            | ip route                             |
 +| route -n                            | routel                               |
 +| lsusb                               | usb-devices                          |
 +| brctl show                          | bridge link                          |
 +| wc -l                               | grep -c                              |
 +| wc -l                               | nl                                   |
 +| du --bytes ~/plop.png               | wc --bytes ~/plop.png                | 
 +| resolvconf                          | getent hosts                         |
 +| ps, top                             | systemd-cgtop                        |
 +| ls                                  | echo *                               |
 +| ls                                  | vdir                                 |
 +| ls                                  | exa                                  |
 +| cat                                 | bat / batcat                         |
 +| docker images                       | crictl images                        |
 +| df                                  | ncdu                                 |
 +| find                                | fd, fdfind                           |
 +| loadkeys                            | setkmap                              |
 +| uptime                              | who -r                               |
 +| uptime                              | ps -p 1 -o stime                     |
 +| ip netns exec                       | nsenter                              |
 +| srm                                 | shred -u                             |
 +| rm                                  | unlink                               |
 +| lsof                                | lsfd                                 |
 +| dpkg -l                             | apt list --installed                 |
 +
 +
 +
 +
 +
 +
 +
  

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki