Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

Upgrade

Currently you will need to uninstall and reinstall our .deb software packages in order to upgrade.

Follow the instructions for Uninstalling and Installing in order to successfully upgrade.

Uninstalling

Always backup your configuration data by generating an export before you upgrade. All data is lost and you will need to reconfigure after upgrading.

Data migrations when upgrading are currently in development.

Our latest software package contains a handy uninstall script that allows you to quickly remove Edge ACM and all of AUTOSOL’s software utilities from your device.

You will need to gain SSH access to your device in order to run the uninstall program. SSH access is out of the scope of this guide, so we will not go into much detail here.

Once you have access to a terminal connected to the device, you can run the uninstall.sh script from any location as long as you give the full path to it.

ZumIQ Uninstall

On the ZumIQ, run the following command:

sudo /home/devuser/apps/API/uninstall.sh

Generic Uninstall

On any generic install, run the following command:

sudo /usr/apps/API/uninstall.sh

Installing

In order to install, you have to make sure your board has an internet connection as most of AUTOSOL’s software dependencies are downloaded from Debian servers.

Transferring the package

You will need to move AUTOSOL’s .deb package over to your board.

There’s many ways of doing it, but a very popular one is using an SFTP client program like WinSCP to transfer the file from your computer.

You can also install SCP programs for Windows, Linux, or other operating systems.

Installing the package

Once you have transferred the package, you can run a simple linux command to begin the installation

sudo apt install /path/to/autosol_1.0.0-zumiq_armhf.deb

You will need to give the full or relative path to the AUTOSOL .deb package

Once the installation has completed, you should be able to visit the IP of your box on port 8080 to see the AUTOSOL App Manager web configuration page where you can configure all AUTOSOL software applications like Edge ACM.

Uninstalling old packages

It is possible that you have an older package installed. Newer packages are named autosol, this includes the underlying service running on Linux as well as the filename.

Older packages were named appmanager. These packages do not have an uninstall program available and you will need to uninstall and disable it manually.

You will need SSH access to the board. Once you are connected. Run the following commands as per your platform.

ZumIQ

The ZumIQ has some small differences from the generic install

sudo rm /home/devuser/service/API
sudo kill `cat /var/run/appmanager.pid`
sudo apt remove appmanager -y
sudo rm -r /home/devuser/apps/API

Generic

sudo systemctl disable appmanager
sudo systemctl stop appmanager
sudo apt remove appmanager -y
sudo rm -r /usr/apps/API

  • No labels