setbrlkeys command not found

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

Introduction

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

setbrlkeys: command not found

or when using sudo you get the following error message

sudo: setbrlkeys: command not found

Solutions to setbrlkeys: command not found

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

In Ubuntu setbrlkeys is provided by console-braille package.

console-braille is:

This package includes

  • fonts with various sizes to render braille on the Linux console
  • keymaps to type braille as unicode characters on the Linux console.

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

sudo apt-get -y install console-braille

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

You can also use apt command to install console-braille.

sudo apt -y install console-braille

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

sudo aptitude install console-braille

Summary

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