Skip to content

Ubuntu Server

Is an Operating System which is a Linux variant, based on Debian.

Setup

Fixed IP / No DHCP

  1. sudo nano /etc/netplan/*.yaml
  2. Below adapter, change dhcp4: no and add ``` addresses: - 192.168.1.100/24 gateway4: 192.168.1.1 nameservers: addresses: [1.1.1.1, 1.0.0.1] ````
  3. sudo netplan apply
  4. Check with ip addr show

Livepatch service

  1. sudo snap install canonical-livepatch
  2. Generate a token
  3. sudo canonical-livepatch enable UNIQUE_TOKEN
  4. canonical-livepatch status --verbose to check status

Snap