I experimented with sysutils/usbtop and saw units of: kb/s That left me wondering kbits/s vs. KiBytes/sec so I went looking around. (There is no man page upstream.) I also looked because it was unclear what the intended way(s) to stop usbtop were or if there were other interactive commands.
Relative to the units . . . https://github.com/aguinet/usbtop/commits/master reports that the 2019-Jun-29 commit b4a550a fixed the units code to have: KiB/s It also reports that the 2022-Apr-19 commit b9a26bd adjusted the output to "fix formatting for machines with larger number of devices". That included adding a tab character to the line with the "KiB/s". (Other changes between were for linux documetation of installation via apt and dnf .) But it appears that no new Release on github was made after the 2019-Feb-26 one. Yuri last synchronized to the 2019-Feb-26 on-github release, the most recent available there as a Release: QUOTE author Yuri Victorovich <y...@freebsd.org> 2019-02-26 16:10:52 +0000 committer Yuri Victorovich <y...@freebsd.org> 2019-02-26 16:10:52 +0000 . . . sysutils/usbtop: Update 0.2 -> 1.0 Notes Notes: svn path=/head/; revision=493972 Diffstat (limited to 'sysutils/usbtop/distinfo') -rw-r--r-- sysutils/usbtop/distinfo 6 1 files changed, 3 insertions, 3 deletions diff --git a/sysutils/usbtop/distinfo b/sysutils/usbtop/distinfo index eb1dedaf1fe6..f0d1b2abc86a 100644 --- a/sysutils/usbtop/distinfo +++ b/sysutils/usbtop/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1513559500 -SHA256 (aguinet-usbtop-release-0.2_GH0.tar.gz) = 6283454ccbfecab44276344b6bc1bf74e86808fb9f539ca63eb0447d7741487e -SIZE (aguinet-usbtop-release-0.2_GH0.tar.gz) = 10828 +TIMESTAMP = 1551197211 +SHA256 (aguinet-usbtop-release-1.0_GH0.tar.gz) = eea7f2fbdcaacbf1097f62f9e4fb50ffd238cec3085b67d384ab0a419274e1da +SIZE (aguinet-usbtop-release-1.0_GH0.tar.gz) = 626770 END QUOTE Turned out that SIGINT, SIGQUIT, and SIGKILL are the intended way to invoke the "quit_handler" and there are no other interactive commands. === Mark Millard marklmi at yahoo.com