### Launch Installer Source: https://docs.fvv.kmrepo.eu/fvv/3.2.1/en/getting-started/platform-installation.html Execute the 'termix' installer script to begin the platform installation process. Follow the on-screen prompts to complete the setup. ```bash ./termix ``` -------------------------------- ### RuntimeError Example Source: https://docs.fvv.kmrepo.eu/fvv/3.2.1/en/troubleshooting/platform/failed-to-deploy-model-error.html This error occurs when starting a deployment and the platform cannot load the model. ```text RuntimeError: Failed to deploy model: ('Cannot obtain path to model %s, ') ``` -------------------------------- ### Make Installer Executable Source: https://docs.fvv.kmrepo.eu/fvv/3.2.1/en/getting-started/platform-installation.html Grant execute permissions to the downloaded 'termix' installer script, allowing you to run it. ```bash chmod +x termix ``` -------------------------------- ### Download Forxai Installer Source: https://docs.fvv.kmrepo.eu/fvv/3.2.1/en/getting-started/platform-installation.html Download the Forxai installer script using CURL. This command fetches the 'termix' executable from the specified URL. ```bash curl -o termix "https://nexus.kmrepo.eu:8443/termix" ``` -------------------------------- ### Start and Enable SSH Service Source: https://docs.fvv.kmrepo.eu/fvv/3.2.1/en/troubleshooting/hardware/unreachable-server-ssh.html Commands to start the SSH service if it is inactive and enable it to start automatically on boot. Always verify the status after making changes. ```shell sudo systemctl start sshd.service ``` ```shell sudo systemctl status sshd.service ``` ```shell sudo systemctl enable sshd.service ``` -------------------------------- ### Date and Time Widget Locale Examples Source: https://docs.fvv.kmrepo.eu/fvv/3.2.1/en/references/dashboard-builder.html Examples demonstrating different locale settings for the Date & Time widget. These settings affect how dates are displayed. ```plaintext - default - Displays the date as Month/Day/Year (US format). - cs-CZ - Displays the date as Day/Month/Year. ``` -------------------------------- ### Flash Ubuntu ISO using balenaEtcher Source: https://docs.fvv.kmrepo.eu/fvv/3.2.1/en/getting-started/server-setup.html Use this URL to flash the Ubuntu 22.04.4 LTS server ISO image to a USB drive using balenaEtcher. Ensure the USB drive has at least 4GB capacity and any important data is backed up. ```bash https://releases.ubuntu.com/22.04.4/ubuntu-22.04.4-live-server-amd64.iso ``` -------------------------------- ### Apply Netplan Configuration Source: https://docs.fvv.kmrepo.eu/fvv/3.2.1/en/how-to-guides/configure-static-server-ip.html Use 'netplan try' to apply the configuration temporarily. You have two minutes to confirm the changes before they revert. ```bash sudo netplan try ``` -------------------------------- ### Install CURL Source: https://docs.fvv.kmrepo.eu/fvv/3.2.1/en/getting-started/platform-installation.html Update your package list and install the CURL utility, which is necessary for downloading files from the internet. The '-y' flag automatically confirms the installation. ```bash apt update && apt install curl -y ``` -------------------------------- ### Navigate to Configuration Directory Source: https://docs.fvv.kmrepo.eu/fvv/3.2.1/en/references/devices/basler-gige-camera.html Change the current directory to the Shinano application's configuration folder. ```bash cd /srv/compose/shinano ``` -------------------------------- ### Create Netplan Configuration File Source: https://docs.fvv.kmrepo.eu/fvv/3.2.1/en/how-to-guides/configure-static-server-ip.html Create a new Netplan configuration file using nano or your preferred text editor. The filename should end with .yaml. ```bash sudo nano 99-static-config-vas.yaml ``` -------------------------------- ### Navigate to Netplan Directory Source: https://docs.fvv.kmrepo.eu/fvv/3.2.1/en/how-to-guides/configure-static-server-ip.html Change to the Netplan configuration directory to create or edit configuration files. ```bash cd /etc/netplan ``` -------------------------------- ### Date and Time Widget Week Format Examples Source: https://docs.fvv.kmrepo.eu/fvv/3.2.1/en/references/dashboard-builder.html Examples illustrating the 'Long' and 'Short' formats for displaying the week in the Date & Time widget. ```plaintext - Example: Long - April 29th, 2019 Short - 29/04/2019 ``` -------------------------------- ### Install OpenSSH Server Source: https://docs.fvv.kmrepo.eu/fvv/3.2.1/en/troubleshooting/hardware/unreachable-server-ssh.html If the SSH service is not found, update package lists and install the OpenSSH server. This ensures SSH connectivity is available. ```shell sudo apt update ``` ```shell sudo apt install openssh-server ``` -------------------------------- ### Check SSH Service Status Source: https://docs.fvv.kmrepo.eu/fvv/3.2.1/en/troubleshooting/hardware/unreachable-server-ssh.html Use this command to check if the SSH daemon (sshd) is installed and running. If not found, installation instructions follow. ```shell sudo systemctl status sshd.service ```