Some additional info at the end. It seems to be under a nameless directory /
4.0K /bin.usr-is-merged
4.0K /cdrom
4.0K /lib.usr-is-merged
4.0K /media
4.0K /mnt
4.0K /raid
4.0K /root
4.0K /sbin.usr-is-merged
4.0K /srv
16K /lost+found
52K /snap
80K /tmp
30M /etc
214M /boot
2.5G /opt
4.8G /var
14G /usr
558G /home
2.8T /
permission denied while trying to connect to the Docker daemon socket at unix:///var/run/docker.sock: Get "http://%2Fvar%2Frun%2Fdocker.sock/v1.51/system/df": dial unix /var/run/docker.sock: connect: permission denied
Thank you for the detailed information.
Based on the df and du results, we do not see evidence of hidden factory images or leftover provisioning data consuming disk space. The disk usage appears consistent with actual data on the root filesystem.
In particular. /home uses ~558 GB, which aligns with your reported ComfyUI folder size (~466 GB) plus LM Studio and downloaded models. Other directories such as /usr. /opt. and /var are within expected ranges for the EdgeXpert OS. The 2.8T / entry shown by du represents total filesystem usage, not an unnamed or hidden directory.
One area still worth checking is Docker/container storage. The permission error suggests Docker is present but not accessible by the current user.
If any images or containers exist, they may consume space under /var/lib/docker. You may check this with:
sudo docker system df
Additionally, to rule out deleted files still held open by running processes, you may run:
sudo lsof +L1 | grep deleted
If large files are listed, restarting the related process or rebooting will release the space.
If you prefer a minimal environment and have not yet stored critical data, performing a clean OS reinstall is also a valid option.
Thanks.