Clavister EasyAccess: Unterschied zwischen den Versionen

Aus Meine Wiki
Zur Navigation springen Zur Suche springen
Zeile 51: Zeile 51:
  
 
Mehr info unter: [https://linuxconfig.org/how-to-configure-static-ip-address-on-ubuntu-18-04-bionic-beaver-linux https://linuxconfig.org/how-to-configure-static-ip-address-on-ubuntu-18-04-bionic-beaver-linux]
 
Mehr info unter: [https://linuxconfig.org/how-to-configure-static-ip-address-on-ubuntu-18-04-bionic-beaver-linux https://linuxconfig.org/how-to-configure-static-ip-address-on-ubuntu-18-04-bionic-beaver-linux]
 +
 +
===Postfix===
 +
 +
Mehr info unter: [https://wiki.ubuntuusers.de/Postfix/Erweiterte_Konfiguration/ https://wiki.ubuntuusers.de/Postfix/Erweiterte_Konfiguration/]

Version vom 29. April 2020, 11:41 Uhr

Ubuntu Server für EasyAccess. Date: 21.04.2020

Downolad

Ubuntu Server 18.04.4 LTS

ubuntu-18.04.4-live-server-amd64.iso 870 MB

VM

1 CPU, Arbeitspeicher 8 RAM, HDD 50 GB

Netzwerk

Netzwerk Konfiguration mit netplan, aktuelle Konfig befindet sich unter

  /etc/netplan
  cd  /etc/netplan/
  sudo vim 50-cloud-init.yaml
  ----
  network:
   ethernets:
       ens160:
           dhcp4: true
   version: 2
  ----
  ----
  network:
       version: 2
       renderer: networkd
       ethernets:
               ens160:
                       addresses: [192.168.222.22/24]
                       dhcp4: no
                       gateway4: 192.168.222.1
                       nameservers:
                               addresses: [192.168.222.40, 192.168.222.60]
  ----

Was man hier beachten muss sind alle Zeichesetzung -> Abstände und TABs!!!

Änderungen abspeichern mit:

     sudo netplan apply

Kontrollieren on Konfig korrekt ist mit:

     sudo netplan --debug apply


Mehr info unter: https://linuxconfig.org/how-to-configure-static-ip-address-on-ubuntu-18-04-bionic-beaver-linux

Postfix

Mehr info unter: https://wiki.ubuntuusers.de/Postfix/Erweiterte_Konfiguration/