amtterm command not found

In this troubleshooting guide we learn how to fix amtterm command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

amtterm: command not found

or when using sudo you get the following error message

sudo: amtterm: command not found

Solutions to amtterm: command not found

How To Fix amtterm: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu amtterm is provided by amtterm package.

amtterm is:

AMT (included in Intel vPro and Centrino Pro) provides out-of-band (OOB) management for Desktops and Laptops, using an agent integrated in the network adapter and in the motherboard.

Serial-over-lan provides a secure way to connect a remote computer, through a pseudo serial interface.

amtterm and gamt are two terminal tools to connect to that pseudo serial interface from a remote computer.

amttool is a script to gather information about and remotely control AMT managed computers.

Starting with AMT 9.0 Intel has removed support for the old SOAP protocol which is used by amttool. Only WS Management (added in AMT 3.0) is supported by recent machines. You can use wsmancli (see http://openwsman.sf.net) instead.

To fix this problem, we can install more using the command below.

sudo apt-get -y install amtterm

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install amtterm.

sudo apt -y install amtterm

Or if you have aptitude installed you can use the following command.

sudo aptitude install amtterm

Summary

In this tutorial we learn how to fix amtterm command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.