# remove ssh messages touch ~/.hushlogin echo "alias ll='ls -la'" >> /etc/profile echo "alias sr='ssh-keygen -R'" >> /etc/profile snap install network-manager snap set network-manager defaultrenderer=true # do from local console !!! apt install network-manager # long wait systemd-networkd-wait-online #/usr/lib/systemd/system/systemd-networkd-wait-online.service mv /usr/lib/systemd/systemd-networkd-wait-online /usr/lib/systemd/systemd-networkd-wait-online.bak echo "exit 0" > /usr/lib/systemd/systemd-networkd-wait-online apt install iputils-ping vim traceroute unzip mc telnet bind9-dnsutils sysstat net-tools apt install smartmontools nfs-common samba apt install virtualbox apt install virtualbox-ext-pack #----------------- /etc/network/interfaces #iface enp0s3 inet dhcp iface enp0s3 inet static address 192.168.1.46 netmask 255.255.255.0 gateway 192.168.1.1 dns 8.8.8.8 dns 192.168.1.1 #----------------- #mkdir -p /etc/systemd/network touch /etc/systemd/network/70-static.network ln -s /etc/systemd/network/70-static.network /etc/network.conf vi /etc/network.conf [Match] Name=enp0s3 [Network] Address=192.168.1.46/24 Gateway=192.168.1.1 DNS=8.8.8.8 DNS=192.168.1.1 systemctl enable systemd-networkd systemctl restart systemd-networkd