Installation

This chapter describes how to install and start ATOM in Ubuntu.

Preparation

  • Make sure that the IPC system is Ubuntu 18.04 or above (check the system version in Settings > About).

  • Contact Transfer technical support to obtain the dongle and insert it into the USB port of the IPC.

  • Download dongle driver. After downloading, execute the following command to install the driver:

    sudo dpkg -i codemeter_7.60.5598.500_amd64.deb
    bash

Add Transfer Software Repository

Perform the following steps to add the Transfer software repository.

  1. Open the system terminal and enter the following command to open sources.list.

    sudo gedit /etc/apt/sources.list
    BASH
  2. Add the following content to the end of sources.list.

    deb [arch=amd64 trusted=yes] http://apt.qianyi.ai/repo/ universal main
    bash
  3. Save and close the sources.list file.

  4. Execute the following command to update the apt cache.

    sudo apt update
    BASH

Install ATOM

Execute the following commands to install ATOM.

sudo apt update
sudo apt install atom-env=1.2.2        (GPU version)
sudo apt install atom-env-cpu=1.2.2    (CPU version)
sudo apt install atom=1.2.2
BASH

Run ATOM

Execute the following command to run ATOM.

systemctl --user start Atom.service
BASH

Execute the following command to stop ATOM.

systemctl --user stop Atom.service
BASH

Execute the following command to restart ATOM.

systemctl --user restart Atom.service
BASH

Uninstall ATOM

Execute the following commands to uninstall ATOM.

sudo apt purge atom-env=1.2.2        (GPU version)
sudo apt purge atom-env-cpu=1.2.2    (CPU version)
sudo apt purge atom=1.2.2
BASH