Skip to content

EMBA update

Michael Messner edited this page Dec 17, 2024 · 7 revisions

The dependency checker of EMBA shows which components should be updated:

image

Updating the different EMBA components is usually quite easy:

  • Updating the main EMBA repository:
cd emba_installation_dir
git pull
  • Updating the EMBA docker base image:
└─$ docker pull embeddedanalyzer/emba
  • Updating the NVD CVE JSON feed

After a default installation the update process needs to be performed as root user:

cd emba_installation_dir/external/nvd-json-data-feeds
sudo git pull

It is possible to update the permissions to your own user to update in the future without sudo:

sudo chown <USER>:<GROUP> emba_installation_dir/external/nvd-json-data-feeds -R
cd emba_installation_dir/external/nvd-json-data-feeds
git pull