poke command not found

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

Introduction

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

poke: command not found

or when using sudo you get the following error message

sudo: poke: command not found

Solutions to poke: command not found

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

In Ubuntu poke is provided by poke package.

poke is:

GNU poke is an interactive, extensible editor for binary data. Not limited to editing basic entities such as bits and bytes, it provides a full-fledged procedural, interactive programming language designed to describe data structures and to operate on them.

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

sudo apt-get -y install poke

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

You can also use apt command to install poke.

sudo apt -y install poke

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

sudo aptitude install poke

Summary

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