79

Usually I use ping to check my internet connection. In windows, if I use:

ping google.com

I get only 4 information ping, but on Ubuntu, if I use that command, the ping can' stop until I stop it with Ctrl+C. Can I ping only for 4 times then stopped? If I can, can I use it as default?

muru
  • 207,228
lambda23
  • 3,362

3 Answers3

109

As Olive Twist already answered, ping -c 4 google.com will do it.

If you want to make this as a default, one way is to create an alias for ping with:

alias ping='ping -c 4'

Save it to your ~/.bashrc file to make it permanent or it will last only for the current terminal session.

laurent
  • 6,899
39

Yes, you can. You need to use -c option to tell the ping to do this, like

ping -c 4 google.com

The -c option tells ping program to stop after sending (or receiving ) specified number of ECHO_RESPONSE packets.

See the ping manual page for details.

Anwar
  • 77,855
-2

When you want to ping with IP, type:

ping -c 4 192.168.1.100 

(remember to put a space between your number -c 4 and the IP address!

Some will think:

 ping 192.168.1.100 -c 4 (WRONG)
terdon
  • 104,119