- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
Root is 97% full
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Solved! Go to Solution.
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I was trying to avoid the cost of netgear support, but I don’t even know what ssh is, so unfortunately will go down the support route. Thank you. John.
All Replies
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Re: Root is 97% full
Welcome to the Community!
This is not a normal occurrence and this type of issue is usually escalated to Support so they can properly assist you on clearing your root OS volume and also to fix any possible cause why it was filled (App installed or saving on the said volume or logs filling up)
If you are comfortable on using SSH then there are posts available that advises on what to do if you want to do it yourself.
Otherwise, contacting NETGEAR Support is the best option. You can create a case online thru my.netgear.com. If your ReadyNAS is out of support then purchasing a contract like Pay-per-Incident Support is advised ($75).
HTH
Regards
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I was trying to avoid the cost of netgear support, but I don’t even know what ssh is, so unfortunately will go down the support route. Thank you. John.
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Re: Root is 97% full
WARNING ! It is NOT FOR UNEXPERIENCED USERS!
1. Enable SSH for your account in Readynas GUI (But then you will maybe loose guarantee)
2login into ssh
3. In shell check if u are root
4. look for
/tmp
dir and try to delete everything in there (best make backup of that on your nas disks)
5. If U get some space try to install tool
"ncdu" by apt-get install ncdu
and start it on console by
ncdu -x -r /
and look where the most used space is (NCDU scans all folders looking for usage). If you are sure what to delete, then use ncdu again but with
ncdu -x /
Without -r you can delete files!!!
But AGAIN THIS IS NOT FOR UNEXPERIENCED USERS!!!
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Re: Root is 97% full
@8ohmh wrote:
WARNING ! It is NOT FOR UNEXPERIENCED USERS!
I've never used ncdu, so no recommendations either way on that.
One thing you missed was the need to mount the OS partition to a temporary mount point. That is a really important step.
That is done with
# mount --bind / /mnt
Then search /mnt for the extraneous files.
When done, you can unmount /mnt using
# cd / # umount /mnt
The hardest part is figuring out what to delete. I suggest asking here, then people can post what is in their folders, so you have a reference to compare against.