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
[encryptr] Encryptr auf Ubuntu 18
Es fehlt eine Library. Lösung:
sudo apt install libgconf-2-4
Trigger Tutorial
[thunderbird] svg-icons
AW: windows: install requests module
stackoverflow.com/questions/4750806/how-do-i-install-pip-on-windows
pypi.org/project/setuptools/#files
________________________________ Von: Markus <m.spring@gmx.de> Gesendet: Samstag, 23. Juni 2018 20:30 An: notizbuch; Markus Spring; Markus Spring Betreff: [python] windows: install requests module
stackoverflow.com/questions/18345763/installing-requests-module-in-python-2-7-windows
windows: install requests module
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.