outl command not found

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

Introduction

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

outl: command not found

or when using sudo you get the following error message

sudo: outl: command not found

Solutions to outl: command not found

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

In Ubuntu outl is provided by ioport package.

ioport is:

This package provides tools to read and wrote to the I/O ports of PC hardware directly from a script or a command line: inb, inw, inl, outb, outw and outl.

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

sudo apt-get -y install ioport

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

You can also use apt command to install ioport.

sudo apt -y install ioport

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

sudo aptitude install ioport

Summary

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