Can netFIELD Extension Linux be installed on Ubuntu 22.04 also?

Q

Can netFIELD Extension Linux be installed on Ubuntu 22.04 also?

A

Yes this is possible.

It requires executing the following things:

  • Installation of "libssl1.1" prio the installation
    • call the following on your machine
      echo "deb http://security.ubuntu.com/ubuntu impish-security main" | sudo tee /etc/apt/sources.list.d/impish-security.list
      
      sudo apt-get update
      sudo apt-get install libssl1.1
  • Edit the netfield-extension-linux-installer.sh script file
    • In the section
      case "$ID-$VERSION_ID" in
      ubuntu-18.04|ubuntu-20.04|debian-10|debian-11|raspbian-10|raspbian-11)
      print_verbose "Detected deb/apt based system"
      OLDPATH="$PATH"
      export PATH="$PATH:/usr/sbin:/sbin"
    • change it to

      case "$ID-$VERSION_ID" in
      utbuntu-22.04|ubuntu-18.04|ubuntu-20.04|debian-10|debian-11|raspbian-10|raspbian-11)
      print_verbose "Detected deb/apt based system"
      VERSION_ID="20.04"
      OLDPATH="$PATH"
      export PATH="$PATH:/usr/sbin:/sbin"
  • Change the file and directioy permission manually to iotedge user
    • login and call
      chown -R iotedge /etc/aziot