usbview command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
usbview: command not found
or when using sudo you get the following error message
sudo: usbview: command not found
Solutions to usbview: command not found
How To Fix usbview: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu usbview is provided by usbview package.
usbview is:
USBView is a small GTK+ application to show what the device tree of the USB bus looks like. It shows a graphical representation of the devices that are currently plugged in, showing the topology of the USB bus. It also displays information on each individual device on the bus.
To fix this problem, we can install more using the command below.
sudo apt-get -y install usbview
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install usbview.
sudo apt -y install usbview
Or if you have aptitude installed you can use the following command.
sudo aptitude install usbview
Summary
In this tutorial we learn how to fix usbview command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.