On 25/02/2019 14.34, Stefan Vater wrote:
Here you are:
linux:/home/user # ping 192.168.0.1 PING 192.168.0.1 (192.168.0.1) 56(84) bytes of data. 64 bytes from 192.168.0.1: icmp_seq=1 ttl=64 time=4.02 ms 64 bytes from 192.168.0.1: icmp_seq=2 ttl=64 time=54.4 ms 64 bytes from 192.168.0.1: icmp_seq=3 ttl=64 time=121 ms 64 bytes from 192.168.0.1: icmp_seq=4 ttl=64 time=1.95 ms --- 192.168.0.1 ping statistics --- 4 packets transmitted, 4 received, 0% packet loss, time 6ms rtt min/avg/max/mdev = 1.953/45.329/120.924/48.437 ms
linux:/home/user # ping 8.8.8.8 PING 8.8.8.8 (8.8.8.8) 56(84) bytes of data. 64 bytes from 8.8.8.8: icmp_seq=1 ttl=122 time=36.7 ms 64 bytes from 8.8.8.8: icmp_seq=2 ttl=122 time=34.9 ms 64 bytes from 8.8.8.8: icmp_seq=3 ttl=122 time=35.2 ms 64 bytes from 8.8.8.8: icmp_seq=4 ttl=122 time=36.8 ms --- 8.8.8.8 ping statistics --- 5 packets transmitted, 5 received, 0% packet loss, time 11ms rtt min/avg/max/mdev = 34.880/35.703/36.778/0.864 ms
linux:/home/user # ping google.com ping: google.com: Der Name oder der Dienst ist nicht bekannt
I think there was a discussion about /etc/resolv.conf being a symlink to /var/ run/netconfig/resolv.conf in recent versions of Opensuse.
I suppose the thing is that /etc is considered a directory for configuration, not for variables. Ok, so name resolution fails. The next thing is: cat /etc/resolv.conf | egrep -v "^[[:space:]]*$|^#" cat /etc/host.conf | egrep -v "^[[:space:]]*$|^#" Ah, side note. I have /usr/local/bin/english: #!/bin/sh LANG=en_US.UTF-8 \ LC_ALL=en_US.UTF-8 \ DICTIONARY=english \ KDE_LANG=en_US.UTF-8 \ exec "$@" And then I do: ingles ping google.com to get the error messages in English so that we can all read them ;-) -- Cheers / Saludos, Carlos E. R. (from 15.0 x86_64 at Telcontar)