Dear developers! Could you change the following in your code:
in file /www/server/panel/class/panelBackup.py line
/www/server/panel/class/panelBackup.py:101: temp = public.ExecShell("df -T -P|grep '/'|grep -v tmpfs|grep -v 'snap/core'|grep -v udev")[0]
/www/server/panel/class/panelBackup.py:102: tempInodes = public.ExecShell("df -i -P|grep '/'|grep -v tmpfs|grep -v 'snap/core'|grep -v udev")[0]
replaced by
/www/server/panel/class/panelBackup.py:101: temp = public.ExecShell("df -T -P|grep '/'|grep -v tmpfs|grep -v 'snap/core'|grep -v udev|grep -v overlay")[0]
/www/server/panel/class/panelBackup.py:102: tempInodes = public.ExecShell("df -i -P|grep '/'|grep -v tmpfs|grep -v 'snap/core'|grep -v udev|grep -v overlay")[0]
and also in the file /www/server/panel/class/system.py
Or make it possible to select drives to display in the widget.
Thanks !