stubby for DNS privacy

www.linuxbabe.com/ubuntu/ubuntu-stubby-dns-over-tls
Aber: 127.0.1.1 im Networkmanager setzen, weil Networkmanager dnsmasq nutzt und dieser an der 127.0.1.1 auf Anfragen wartet.
Prüfen mit
$ ps auxw | grep dnsmasq nobody 7781 0.0 0.0 60192 3720 ? S Sep11 0:00 /usr/sbin/dnsmasq –no-resolv –keep-in-foreground –no-hosts –bind-interfaces –pid-file=/run/NetworkManager/dnsmasq.pid –listen-address=127.0.1.1 –cache-size=0 –clear-on-reload –conf-file=/dev/null –proxy-dnssec –enable-dbus=org.freedesktop.NetworkManager.dnsmasq –conf-dir=/etc/NetworkManager/dnsmasq.d

Move directory tree

docs.python.org/2/library/shutil.html
shutil.move(src, dst)
Recursively move a file or directory (src) to another location (dst).
If the destination is an existing directory, then src is moved inside that directory. If the destination already exists but is not a directory, it may be overwritten depending on os.rename() semantics.
If the destination is on the current filesystem, then os.rename() is used. Otherwise, src is copied (using shutil.copy2()) to dst and then removed.
New in version 2.3.