Skip to content

AUBO Sim Virtual Installation Guide

This document describes how to use ARCS software in a virtual machine. There are two ways:

  • Download and install aubo_sim virtual machine. ARCS software has been installed in aubo_sim virtual machine.
  • Install ARCS software in Ubuntu system.

1. AUBO_Sim virtual machine download and installation instructions

1.1 File download

1.2 Install VMware virtual machine

Note: VMware Workstation version needs to run on 16 Pro and above.

VMwareWorkstation installation tutorial

1.3 Install ARCS virtual machine image

  1. Unzip the downloaded ARCS virtual machine image file.

  2. Open VMware Workstation, click "file > open" in the upper left corner, select the file "aubo_sim_0.1.ovf", and click open.

  3. Set the storage path of the new virtual machine and click [Import].

    Note: If the pop-up prompts "Import failed", click [Retry].

  4. After aubo_sim virtual machine is successfully imported, click [Open Virtual Machine].

  5. After successfully starting aubo_sim_0.1, enter the ARCS software and click [Connect] to start using ARCS.

    Note:

    1. The password of system administrator (root) is aubo.
    2. The security password, operation mode password and administrator password in ARCS software are q by default.

2. Install ARCS software in Ubuntu

Note: Install ARCS software under the root user of Ubuntu.

  1. Download arcs software installation package. The download link is https://download.aubo-robotics.cn/arcs/

    As shown in the figure below, point to the .run installation package, right-click it, click Save Link As, and the installation package will be downloaded automatically.

    image-20231215162618601
  2. Log in to root user of Ubuntu.

  3. Copy the .run installation package file to ubuntu, and right-click to open in terminal.

    image-20231215163455830
  4. Execute the installation command.

    bash
    ./arcs_update-0.28.1-rc.27+b22a2f0-x86_64.run install

    After successful installation, as shown in the figure below.

    image-20231215164023592

    .desktop icon file is generated on the desktop.

    image-20231215164717772
  5. Under the directory of /root/arcs_ws/config/, modify the configuration file of aubo_control.conf, as shown in the following figure.

    image-20231215165226241
  6. In the /etc/default/ directory, open and modify the arcs file, as shown in the following figure.

image-20231218142258411
  1. Open the terminal and enter the command to start aubo scope and aubo control.
bash
systemctl restart aubo_scope  
systemctl restart aubo_control
  1. Click [Connect].
image-20231215165858476
  1. Check [Auto Connect] and click [Connect].
image-20231215170016679
  1. Set the password for the operation mode, and click [Apply].
image-20231215170322774
  1. After successful setting, a pop-up window will prompt [Password set successfully], and the operation mode in the interface will change to [Manual].

    image-20231215170525968
  2. Click [Start], set the load, and then click [Continue]. At this point, a pop-up window will prompt whether to enter the serial number, and click [No]. Then, click [Start] to complete the power-on of the robot.

    image-20231218142548413
  3. When the virtual machine network is connected normally, but the software upgrade interface cannot refresh the page, as shown in the following figure.

    image-20231218145222739

    Install the corresponding version of OpenSSL. The operation steps are as follows:

    • Open link: GitHub - openssl/openssl at OpenSSL_1_1_1-stable

    • Download the compressed package.

      image-20231218151059336
    • Copy the compressed package to the virtual machine, decompress it, and go to its directory.

      # Install
      ./config
      make
      sudo make install
      # Replace new version link
      ln -s /usr/local/bin/openssl /usr/bin/openssl
      ln -s /usr/local/lib/libcrypto.so.1.1 /usr/lib/libcrypto.so.1.1
      ln -s /usr/local/lib/libssl.so.1.1 /usr/lib/libssl.so.1.1
    • Check the upgrade results after the installation is completed.

      # Check the upgrade results
      openssl version -a
      image-20231218151517862