3

Very complex situation.

My main server is in a 5TB raid.

I'm currently on holiday so I use Teamviewer and ssh to remote into my server.

2 Days ago I ran a backup which was configured to be stored to my external hard drive. (10TB)

Backup started successfully and I left it to backup.

However later at night I had errors everywhere, here is what I noticed.

External drives aren't mounted. No connection to network. (though I can ssh) Teamviewer stopped working. All critical applications stopped working. (VirtualBox for example) Package Manager stopped working. I ran df and all kinds of disk utilities in ssh to see what was taking up the drive.

But the confusing part is that the drive isn't even full. The Trash is empty. All partitions aren't even past 50% full.

Now back to when I ran that backup. I thought maybe I accidentally routed the backup to store on the main drive, but there is no signs of the backup at all.

I've scanned and rebooted multiple times, however it shows that the disk isn't full, but Linux still says it's full.

I have attached some images to give a better understanding.

1

2

I was wondering if the /dev/loopx partitions in the image could be the issue but I'm not sure what to do with those.

karel
  • 122,292
  • 133
  • 301
  • 332

1 Answers1

0

According to doneal24 you need to run lsof to find files that are deleted but still opened by a process. In my case I deleted /var/log/syslog* but it didn't free any space on my ssd

But if I do echo>/var/log/syslog it frees up a lot

In my case this information helped me - finally after a reboot the space is freed because the process that's using this file's shut down

Maybe something used your hd space and removed the files afterwards but they were still used or it didn't free it because of some bug

france1
  • 174