How do I list the directories/file on my local drive?

the gdu / and df -hT after unmounting are here. #23

As of now (remounted) they are:

df -hT /

Code:
Filesystem Type Size Used Avail Use% Mounted on

/dev/mapper/pve-root ext4 65G 18G 44G 29% /

gdu -x /

1789300071387.png
 
Last edited:
To find data accidentally stored in mount points,
Mount temporarily / to /mnt/tmp
mkdir /mnt/tmp
chattr +i /mnt/tmp
mount --bind / /mnt/tmp
gdu /mnt/tmp
Do you think it's a good idea if /mnt/tmp exists on most PVE installs so that there is a quick way to do a check for mis-stored data? Seems to me thiis could come in handy in the future. Thoughts?