Saving your $HOME space
Posted Jan 8, 2009 11:29 UTC (Thu) by
rwmj (subscriber, #5474)
In reply to:
Saving your $HOME space by eru
Parent article:
BleachBit: Does GNU/Linux need the equivalent of a Windows registry cleaner?
Coming from an application developer's point of view, the reason is that it's very easy to
stash stuff in
the home directory. It's usually nothing more than getenv ("HOME") followed by
creating a
dot-file or subdirectory. You know the data will still be there next time the application is
launched (even
across reboots or long delays), and you know there won't be any security issues or conflicts as
can arise
when you use /var/tmp.
What to do about it? I think you've identified a new class of storage: Per-user. Temporary in
that it can
be deleted at any time. But persistent in that the OS should keep it around as long as possible.
With a new class of storage should come a new location. Something like
$HOME/.tmp/,
where applications can store this cached data, but if space is tight the OS may remove it (eg. at
boot)
without repercussions.
Rich.
(
Log in to post comments)