Linux specific - norkator/open-intelligence GitHub Wiki

Listing here some notes about linux specific use. All of these are tested on Ubuntu desktop/server version 20.04.x

Ubuntu server - right timezone setting

Make sure timezone setting is set right if you use linux without desktop like Ubuntu Server (I do).

Check current:

timedatectl

List available ones:

timedatectl list-timezones

Take in use:

sudo timedatectl set-timezone Europe/Helsinki
  • Europe/Helsinki replace with your actual timezone.

after this.. check current again to verify change.

Ubuntu desktop ftp server

This lists steps to install ftp server for Ubuntu desktop to store images for processing.

Install:

sudo apt update
sudo apt install vsftpd
sudo systemctl status vsftpd

Confgure: refer to https://linuxize.com/post/how-to-setup-ftp-server-with-vsftpd-on-ubuntu-20-04/

After configurations:

sudo systemctl restart vsftpd
sudo systemctl status vsftpd

Ubuntu desktop - Docker installation

Install:

sudo snap refresh
sudo snap install docker