On 11/13/22 06:13, pe...@easthope.ca wrote:
root@joule:/home/root# /bin/ping -c 3 192.168.0.12
PING 192.168.0.12 (192.168.0.12) 56(84) bytes of data.
64 bytes from 192.168.0.12: icmp_seq=1 ttl=64 time=0.079 ms
64 bytes from 192.168.0.12: icmp_seq=2 ttl=64 time=0.114 ms
64 bytes from 192.168.0.12: icmp_seq=3 ttl=64 time=0.113 ms
--- 192.168.0.12 ping statistics ---
3 packets transmitted, 3 received, 0% packet loss, time 2041ms
rtt min/avg/max/mdev = 0.079/0.102/0.114/0.016 ms
root@joule:/home/root# echo $PATH
/usr/local/bin:/usr/local/sbin:/usr/bin:/usr/sbin:/bin:/sbin:.
root@joule:/home/root# which ping
/bin/ping
root@joule:/home/root# ping -c 3 192.168.0.12
No response.
Ideas?
Thanks, ... Peter E.
mobile: +1 778 951 5147
VoIP: +1 604 670 0140
https://en.wikibooks.org/wiki/User:PeterEasthope
If you run Bash, RTFM bash(1), "SHELL BUILTIN COMMANDS",
"command [-pVv] command [arg ...]":
2022-11-13 08:12:17 dpchrist@laalaa ~
$ command -V test ll ping
test is a shell builtin
ll is aliased to `ls -al --time-style="+%Y-%m-%d %H:%M:%S"'
ping is /usr/bin/ping
David