Ubuntu ist eine weit verbreitete und relativ einfach handhabbare Version von Linux.
dns-nameservers <ip1> <ip2> [...]
Seit Ubuntu 18.4 wird systemd-resolved verwendet:
systemd-resolve --set-dns=<DNS> --interface=<IF>
Hinweis: IF ist das Interface, oft eth0, abrufbar mit "ip a"
Siehe: https://wiki.ubuntuusers.de/DNS-Konfiguration/, https://wiki.archlinux.org/index.php/Systemd-resolved
systemctl disable systemd-resolved.service systemctl stop systemd-resolved rm /etc/resolv.conf
Hinweis: resolv.conf ist unter systemd-resolve ein symbolischer Link. Nach dem Löschen kann er durch eine richtige Datei ersetzt werden.
Unter /etc/NetworkManager/NetworkManager.conf nach Main dns=none eintragen und systemctl restart NetworkManager.
Die Zahl der aktuellen Filehandles kann man abfragen:
lsof | wc -l ulimit -n
Datei /etc/security/limits.conf:
* soft nofile 1000000 * hard nofile 1000000 root soft nofile 1000000 root hard nofile 1000000 * soft nproc 1000000 * hard nproc 1048576 root soft nproc 1000000 root hard nproc 1048576 * soft stack 1000000 * hard stack 1000000 root soft stack 1000000 root hard stack 1000000 * soft memlock 100000000 * hard memlock 100000000 root soft memlock 100000000 root hard memlock 100000000
Permanente Systemvariablen in /etc/sysctl.conf:
fs.file-max = 200000
Systemvariablen neu laden: sysctl -p
apt install gparted
installieren und dann einfach starten.
apt install openssh-server
Danach die Konfiguration anpassen:
nano /etc/ssh/sshd_config
Folgende Eintragungen vornehmen:
PermitRootLogin yes StrictModes yes HostbasedAuthentication no PermitEmptyPasswords no ChallengeResponseAuthentication no UsePAM yes AllowUsers root
Konfiguration neu einlesen:
service sshd restart
Mit "passwd" ein Unix-Passwort anlegen.