Skip to main content

Ubuntu

Major distributions on which UCS is supported. Ubuntu 22.04 version of Jammy (amd64) is required. To install, follow these steps:

  • Download server version and start the installation. Install only OpenSSH server, in the Featured Server Snaps section do not select any option.

  • Download the INSOFT UCS installation package and install it:

#!/bin/bash

timedatectl set-timezone Europe/Prague
apt install postfix

wget http://repo.insoft.cz/apt/pool/stable/i/insoft-repo-jammy/insoft-repo-jammy_1.0.1-0_all.deb
dpkg -i insoft-repo-jammy_1.0.1-0_all.deb
apt update
apt install insoft-ucs
warning

unattended-upgrades are enabled in the default installation of Ubuntu. During the update, there is a service outage, according to the updated components.

How to turn off automatic updates:

#!/bin/bash

apt purge unattended-upgrades
# To be sure, when reinstalling it will be necessary to confirm the overwriting of the config
echo "// NO AUTO UPGRADES" > /etc/apt/apt.conf.d/50unattended-upgrades