1

I hope that the title is clear. I have this problem: With Disk Usage Analyzer I have this situation

enter image description here

As we can see the /home/linofex directory uses about 6 GB. Well, I wrote these lines in a conky script:

 Root ${fs_used /} $color/ ${fs_size /}
 home ${fs_used /home/linofex} $color/ ${fs_size /home/linofex}
 data ${fs_used /media/ntfs} $color/ ${fs_size /media/ntfs}

But conky shows:

enter image description here

where data is an other partition and Root is ${fs_used /} $color/ ${fs_size /}

Why the numbers of GB doesn't match?

linofex
  • 554
  • 9
  • 28

1 Answers1

1

I solved my problem reading this discussion. Running Disk Usage Disk with superuser privileges I saw that there was .Trash-0 directory with a lot of junk (the 14 - 6 GB) that I couldn't delete without be root. With sudo rm -r .Trash-0/ I solved and now all work good.

linofex
  • 554
  • 9
  • 28