3

For example, I can extract information about every files of installed packages. Thereafter, I can do find -ls with -mmin & -mtime somehow, I can draw a graph of absolutelly unused packages.

Is there ready solution?

Edit: I found popularity-contest Here: Is there a usage count for packages or programs?

I'm interesting in graphic interpretation, something like Gnome's Baobab or KDE's FileLight.

user2496
  • 141
  • 4

1 Answers1

0

mtime is for modified time. Maybe you want atime, but for performance reasons it is disabled by default.

Jayen
  • 395