Using Ununtu 12.04, and recently got a message that disk space is running out. Ran the Disk Usage Analyzer, which froze. After some research, I see a directory in ~
called "9fybsyiikg" which is 1065357312 bytes.
I tried opening that folder in the file manager, and nothing happens. I tried ls
ing in, and nothing happens.
And then I tried rm -rf 9fybsyiikg
, and nothing happens.
Any ideas what this directory may be, and how to get rid of it?
rm
to operate. If that is above the limit, thenrm
will display error. BTW, try whetherls -l | more
lists it?? – AzkerM Mar 17 '14 at 16:22rm
didn't display an error. Simply, nothing happened. @Rmano, maybe. @WildMan, that is a possibility. What do you suggest? – Joe Z Mar 17 '14 at 16:28rm -r
will not follow symlinks (and you shouldn't have hardlink to directories), so in principle it will delete only the thing under the strange dir. BTW, better omit the-f
generally... – Rmano Mar 17 '14 at 16:29ARG_MAX
(see here) and it shouldn't apply here unless the OP is tryingrm ~/9fybsyiikg/*
– terdon Mar 17 '14 at 16:30rm
/patience thing and let you know. First backing up the important stuff. – Joe Z Mar 17 '14 at 16:43rm -r
the directory, everything in it (including symlinks, but not their targets) will be deleted. – terdon Mar 17 '14 at 16:44find -delete
, or-exec rm {} +
. If you really want to usexargs
do it like this:find -print0 | xargs -0 -I {} rm -rf
. – terdon Mar 17 '14 at 17:26rm
with plenty of time. – Joe Z Mar 17 '14 at 20:38