Re: FTP commands, the computer locks
- Posted by jimcbrown (admin) Mar 04, 2015
- 1614 views
sergelli said...
I make this test in command line
linux-a49v:/home/sergio # wine ping -n 4 www.google.com fixme:ping:main this command currently just sleeps based on -n parameter linux-a49v:/home/sergio # wine ping -n 4 www.google.com fixme:ping:main this command currently just sleeps based on -n parameter
The answer was the same: There was a 4 seg waiting on both lines
The first line was executed with the internet connected
The second line had no internet
Could send more information on using the ping response?
Since you're using linux/GNU, don't use wine's version of ping. Use the native /bin/ping or /sbin/ping like this
linux-a49v:/home/sergio # ping -c 4 www.google.com

