Skip to content

Network

CommandDescriptionExample
pingTest connectivity to an addressping google.com
curlPerform an HTTP requestcurl https://example.com
wgetDownload a filewget https://example.com/file.zip
sshConnect to a remote serverssh user@server.com

Fenêtre de terminal
ping -c 4 google.com
curl -I https://openai.com

  • Use ping -c <count> to limit the number of attempts.
  • Check HTTP headers with curl -I.
  • Use ssh-keygen to set up key-based authentication for passwordless login.