via_regs_dump command not found

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

Introduction

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

via_regs_dump: command not found

or when using sudo you get the following error message

sudo: via_regs_dump: command not found

Solutions to via_regs_dump: command not found

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

In Ubuntu via_regs_dump is provided by openchrome-tool package.

openchrome-tool is:

via_regs_dump is a registers dumper tool for debugging the OpenChrome driver. This tool can read and write registers and display some others information useful for debugging the driver.

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

sudo apt-get -y install openchrome-tool

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

You can also use apt command to install openchrome-tool.

sudo apt -y install openchrome-tool

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

sudo aptitude install openchrome-tool

Summary

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