Skip to content

Latest commit

 

History

History
52 lines (36 loc) · 977 Bytes

INSTALL.md

File metadata and controls

52 lines (36 loc) · 977 Bytes

usbtop: installation instructions

Packages

Under some Debian-based system, you can directly install the usbtop package:

$ sudo apt install ubstop

From sources

Prerequisites:

  • libpcap
  • libboost >= 1.48.0

Under Debian, install these packages :

$ sudo apt install libboost-dev libpcap-dev

Compilation instructions:

Create a _build directory and then use CMake to create the required Makefile's

$ cd /path/to/usbtop
$ mkdir _build && cd _build
$ cmake -DCMAKE_BUILD_TYPE=Release ..

Then, compile usbtop:

$ make

And install it to /usr/local/bin (as root) and load kernel module (as root) :

# make install && modprobe usbmon

There are also more detailed instructions for Ubuntu on this stack overflow questionn : https://unix.stackexchange.com/questions/10671/usb-performance-traffic-monitor/489268#489268 (by https://github.com/ElectricRCAircraftGuy).