NETGEAR is aware of a growing number of phone and online scams. To learn how to stay safe click here.
Forum Discussion
ReadyJoe
Aug 20, 2015Tutor
System volume 'root' usage is 100 %
I have been getting the 'System volume 'root' usage is 100 %' messages every 10 minutes for the last month now.
I tried working with NetGear ticket support but when they escalated my ticket to support level 2 they want me to purchase a new support package. I've had problems with this ReadyNAS102 since the day it was bought this past February. This issue is different than the earlier issues but this one is more annoying than the others which were fixed.
I have 3TB drives in the NAS with 2.1TB free space.
I thought that this thread identified my problem (the application 'Transmission' installed in the root folder):
I deleted Transmission and the messages keep coming.
How can I identify what is filling my root folder? How can I view that root folder?
I've deleted the log files thinking they were filling it. The level one support examined my log files prior to deletion and did not find anything that gave them a clue.
They had me do all the various system maintenance items on the NAS including, scrub, defrag, balance, etc. None of these rectified the issue.
I am not a command line person but I do have access to the Terminal app in my Mac Yosemite computer.
Any help would be sincerely appreciated.
Yes, it needed to be deleted via SSH
# rm -rf /btsync
Seeing you no longer have that app installed I have deleted the folder.
It is important that any app you install is configured to store data on the data volume somewhere. The 'root' volume is 4GB so if you configure an app incorrectly you can fill it fast.
10 Replies
Replies have been turned off for this discussion
- vandermerweMaster
EDIT: By all means read my post, but then read mdgm's PM and follow his advice.
Do you have a backup?
Do you have other apps installed?
What firmware is on the nas?
Do you have ssh enabled on the nas, you will need this to look at the OS partition?
Login via terminal using the username root@ipaddressofnas and your admin password.
So
ssh root@ipaddressofnas
If you have ssh enabled, start by
df -h df -i
If the rootfs partition is indeed full then you can look around for large files (usually log files) using the du command.
Fiddling around with ssh can be hazardous if you don't know what you are doing, so start by just examining the space with the commands above and posting the outcome.
- vandermerweMaster
How did you delete it?
Did you verify that it is not there using terminal?Can you run the df command as above and post the result .
if there is space on the OS partition it may be worth doing an OS reinstall now, but you must first verify that you have cleared some space. Doing an OS reinstall if the OS partition is still full will likely make the problem worse.
Do you have a backup?
- ReadyJoeTutor
I deleted the folder via the web GUI.
I ran the terminal command you listed above. Here are the results:
This was from the df -h command:
Last login: Thu Aug 20 23:58:10 2015 from 127.0.0.1
root@readynas102:~# df -h
Filesystem Size Used Avail Use% Mounted on
rootfs 4.0G 3.9G 0 100% /
tmpfs 10M 4.0K 10M 1% /dev
/dev/md0 4.0G 3.9G 0 100% /
tmpfs 248M 0 248M 0% /dev/shm
tmpfs 248M 624K 248M 1% /run
tmpfs 248M 0 248M 0% /sys/fs/cgroup
tmpfs 248M 0 248M 0% /media
/dev/md127 2.8T 640G 2.1T 23% /data
/dev/md127 2.8T 640G 2.1T 23% /home
/dev/md127 2.8T 640G 2.1T 23% /apps
/dev/md127 2.8T 640G 2.1T 23% /var/ftp/Documents
/dev/md127 2.8T 640G 2.1T 23% /var/ftp/Joes-MacBook-Pro-001_TO_DO_Craw
/dev/md127 2.8T 640G 2.1T 23% /var/ftp/Joes-MacBook-Pro-001_TO_DO_Mond
/dev/md127 2.8T 640G 2.1T 23% /var/ftp/Joes-MacBook-Pro-Pictures
/dev/md127 2.8T 640G 2.1T 23% /var/ftp/Movies
/dev/md127 2.8T 640G 2.1T 23% /var/ftp/Music
/dev/md127 2.8T 640G 2.1T 23% /var/ftp/Music_Videos
/dev/md127 2.8T 640G 2.1T 23% /var/ftp/Pictures
/dev/md127 2.8T 640G 2.1T 23% /var/ftp/Transmission
/dev/md127 2.8T 640G 2.1T 23% /var/ftp/TV
/dev/md127 2.8T 640G 2.1T 23% /var/ftp/Videos
/dev/md127 2.8T 640G 2.1T 23% /run/nfs4/home
root@readynas102:~#This was from the df -i command:
Filesystem Inodes IUsed IFree IUse% Mounted on
rootfs 65536 38869 26667 60% /
tmpfs 63410 272 63138 1% /dev
/dev/md0 65536 38869 26667 60% /
tmpfs 63410 1 63409 1% /dev/shm
tmpfs 63410 405 63005 1% /run
tmpfs 63410 4 63406 1% /sys/fs/cgroup
tmpfs 63410 1 63409 1% /media
/dev/md127 0 0 0 - /data
/dev/md127 0 0 0 - /home
/dev/md127 0 0 0 - /apps
/dev/md127 0 0 0 - /var/ftp/Documents
/dev/md127 0 0 0 - /var/ftp/Joes-MacBook-Pro-001_TO_DO_Craw
/dev/md127 0 0 0 - /var/ftp/Joes-MacBook-Pro-001_TO_DO_Mond
/dev/md127 0 0 0 - /var/ftp/Joes-MacBook-Pro-Pictures
/dev/md127 0 0 0 - /var/ftp/Movies
/dev/md127 0 0 0 - /var/ftp/Music
/dev/md127 0 0 0 - /var/ftp/Music_Videos
/dev/md127 0 0 0 - /var/ftp/Pictures
/dev/md127 0 0 0 - /var/ftp/Transmission
/dev/md127 0 0 0 - /var/ftp/TV
/dev/md127 0 0 0 - /var/ftp/Videos
/dev/md127 0 0 0 - /run/nfs4/home
root@readynas102:~#rootfs 4.0G 3.9G 0 100% / <-- is this telling me there is still 3.9GB of data in rootfs?
All the files and folders on this NAS are not totally backed up. Some are. I'll have to back that data up before doing an OS install.
Thanks again for your help.
Joe
- vandermerweMaster
That indicates that the OS partition is still full.
The file that mdgm indicated is very large, how did you delete this from the gui?
You probably need to delete it using the terminal window.
DO NOT do an OS reinstall now. It will almost certainly fail and create a bigger problem.
A factory default is one option here but this wipes the disks and seems excessive when you can just delet e the btsync folder.
If you type in the terminal window
cd / ls -a
What is the output?
you can also run commands like:
# du -csh /var/* # du -csh /var/log/* # du -csh /var/log/frontview/*
These may identify where the offending folder/ file is located. You will get an output with folder sizes
Alternatively wait for mdgm and he can perhaps remotely delete it for you - I'm assuming he diagnosed this by accessing your nas. I think he may just want confirmation from you that you are happy for that folder and/or it's contents can be relocated or deleted.
Related Content
NETGEAR Academy

Boost your skills with the Netgear Academy - Get trained, certified and stay ahead with the latest Netgear technology!
Join Us!