st-util command not found

In this troubleshooting guide we learn how to fix st-util command not found error message

Introduction

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

st-util: command not found

or when using sudo you get the following error message

sudo: st-util: command not found

Solutions to st-util: command not found

How To Fix st-util: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu st-util is provided by stlink-tools package.

stlink-tools is:

Flashing tools for STMicroelectronics STM32VL and STM32L. The transport layers STLINKv1 and STLINKv2 are supported.

This package contains commandline utilities for stlink, and modprobe and udev rules.

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

sudo apt-get -y install stlink-tools

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

You can also use apt command to install stlink-tools.

sudo apt -y install stlink-tools

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

sudo aptitude install stlink-tools

Summary

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