Okay, this has me totally stumped.
Background: I'm working on a cryptanalysis homework, trying to break a vigenere cipher with a 26 character key (a shuffled alphabet). Even though there are some 403 septillion possible keys, I tried a naive brute force approach... I mean, I could get lucky, I guess.
Problem/Question: I left a script running, generating 8 - 10 GB of data an hour, overnight. I figured the worst that could happen would be that it would fill my HDD. But something really weird happened instead: the directory my script was in (and writing data to) simply vanished. I checked it first thing in the morning and it was gone.
Everything was running in a subfolder of my, otherwise empty, home directory. My home directory remained, and the rest of the file system seems intact. Top showed my scripts still running. Fsck didn't produce anything useful.
I've been at computers for a long time and I've never seen anything like this (aside from a hardware failure, which I'm mostly sure this is not). Ext4 should support files up to 16TB in size, which far exceeds the capacity of the disk (500ish GB).
So, like I said, I'm stumped. Anyone have an idea as to what happened?
If I'm missing some other way to list directory contents, let me know.
Oh, and 'otherwise empty' is a misnomer... I do have a hand full of dot files that are all intact... including my .ssh directory with my public keys (otherwise I couldn't access the machine for the most part).
– Harrison Pickett May 04 '15 at 18:44ls
command. Tryls -a
. Usingdu
on the containing directory may show your file as well. – BillThor May 05 '15 at 02:23