Is there a GUI linux application that shows per mounted disk i/o transfer rate in a graphic?
(Like gnome-system-monitor do for the swap mount but for each mounted drive)
I'm looking for an application that works specificaly only on drives mounted on boot or USB drives connected. Not on iso images and other simillar mounts, since those are readed on a disk containing it.
What should be shown:
- i/o transfer rates of fstab mounts at boot
- i/o transfer rates of hardware drives connected (like an USB stick)
I know about iotop-like software to show it into the therminal, but it's not what I'm looking for. The best solution to me, would be that gnome-system-monitor automaticaly add those views under the resource tab. (Post on https://extensions.gnome.org)
I would like to see something like this (edited of gnome-system-monitor screenshot with Gimp), but where every collor reports the activity of a drive mounted:
Since the gnome-system-monitor already shows the swap mount in a graphic with the RAM usage, I thought I could find a plugin or setting that does show this for the drives mounted. But I can't find any.
But if there's an application that does it this way and could replace it. why not?
I've tried Stacer, but it doesn't give per disk i/o. So it's not what I'm looking for either.
I'm also using webmin, that has the same problem as Stacer, it show only a general i/o graphic. It's not per disk mount.
I've found one that should do the trick, but when I look the results it shows all the mounts instead of only physicaly present volumes. It's an applet of Cinnamon Spicies: Disk Utilization (ioDisk@ctrlesc)
You can see it also shows the loop mounts what shouldn't be. I can presume it will also show iso mounts and it doesn't show it into a graphic. So it's no solution yet.
Here's my system information:
- Linux Mint 21 Vanessa (x86-64) (Ubuntu 22.04 server install)
- Cinnamon version: 5.4.12 (Mint PPA source)
- Linux kernel: 6.1.8-060108-generic (Last version from official Ubuntu repo)
raw_io.sh: 20: shopt: not found
raw_io.sh: 48: declare: not found
raw_io.sh: 61: Syntax error: redirection unexpected
– Jan 25 '23 at 15:24shopt
built-in was introduced in Bash 2.0, in 1996 (!) – Artem S. Tashkinov Jan 25 '23 at 18:38shopt --help
gave me :shopt: shopt [-pqsu] [-o] [optname ...] Set and unset shell options.
So I presume it's due to else. I'm on Ubuntu server 22.04 installed with Cinnamon from the mint PPA. @Artem S. Tashkinov – Jan 26 '23 at 04:08