Ubuntu 16.10을 새로 설치하고 kubuntu 16.04에서 새 설치로 이전 홈 디렉토리의 백업을 rsync했습니다. 상황이 잘 작동하지만 시행 착오에도 불구하고 로컬 주소를 확인할 수 없었습니다.
모든 네트워킹이 완벽하게 작동하는 것 같습니다. 인터넷 브라우징, 외부 주소의 DNS 조회, ssh 등이 훌륭합니다. 로컬에서는 ssh를 통해 이름을 사용하지 않고 주소를 사용하여 컴퓨터에 액세스 할 수 있습니다. 그것은 노틸러스 / 삼바에서 모두 잘 작동합니다. 즉 WINS가 작동합니다. 단일 문제는 로컬 네트워크 DNS입니다. 우분투와 함께 제공되는 avahi-daemon을 설치하고 실행했습니다.
중복되거나 올바르게 작동하는 부분을 단축하기 위해 << >>를 사용하여 몇 가지 문제 해결을 포함 시켰습니다.
$ nmcli g
STATE CONNECTIVITY WIFI-HW WIFI WWAN-HW WWAN
connected full enabled enabled enabled enabled
$ ping tendril8 << or tendril8.local >>
ping: tendril8: Name or service not known
$ ping gateway
PING gateway (192.168.1.1) 56(84) bytes of data.
64 bytes from gateway (192.168.1.1): icmp_seq=1 ttl=64 time=4.16 ms
$ ping askubuntu.com
PING askubuntu.com (151.101.129.69) 56(84) bytes of data.
64 bytes from 151.101.129.69 (151.101.129.69): icmp_seq=1 ttl=49 time=43.0 ms
$ nslookup askubuntu.com
Server: 127.0.1.1
Address: 127.0.0.1#53
<< followed by several IP addresses >>
$ nslookup tendril8 << or tendril8.local >>
Server: 127.0.1.1
Address: 127.0.0.1#53
** server can't find tendril8: NXDOMAIN
$ cat /etc/resolv.conf
# Dynamic resolv.conf(5) file for glibc resolver(3) generated by resolvconf(8)
# DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN
nameserver 127.0.1.1
$ ls -la /etc/resolv.conf
lrwxrwxrwx 1 root root 29 Oct 15 19:30 /etc/resolv.conf -> ../run/resolvconf/resolv.conf
$ cat /etc/nsswitch.conf
# /etc/nsswitch.conf
#
# Example configuration of GNU Name Service Switch functionality.
# If you have the `glibc-doc-reference' and `info' packages installed, try:
# `info libc "Name Service Switch"' for information about this file.
passwd: compat
group: compat
shadow: compat
gshadow: files
hosts: files resolve [!UNAVAIL=return] mdns4_minimal dns [NOTFOUND=return]
networks: files
protocols: db files
services: db files
ethers: db files
rpc: db files
netgroup: nis
참고 : 16.10에서 우분투가 systemd.resolved로 전환하기 전에 "오래된"솔루션을 살펴 보는 데 많은 시간을 보냈습니다. 그들은 나를 위해 일하지 않았으며 이것이 이전 우분투 구성을 가진 유사한 질문과 중복되는 질문이라고 생각하지 않습니다.