Page 1 of 1

Is it normal?

Posted: 23 Mar 2026, 01:54
by akaserge
Good day. Is it normal that system partition "/" occupies 94%? TOS 6 on F2-221 model. Thanks in advance.

Re: Is it normal?

Posted: 23 Mar 2026, 07:29
by Gremlin
94% of what, would be the question. If your os partition is not 8GB (7.6GB approx actual) you should not really be running TOS6.

Re: Is it normal?

Posted: 23 Mar 2026, 18:57
by Phil
akaserge wrote: 23 Mar 2026, 01:54 Good day. Is it normal that system partition "/" occupies 94%? TOS 6 on F2-221 model. Thanks in advance.
On the F2-221 model running TOS 6, a 94% system partition ("/") usage is abnormal, indicating the system may crash due to running out of space or enter read-only mode.

You need to log in to the TOS web interface, go to Storage Management > Snapshots, and delete all unnecessary old snapshots. If Docker is installed, clean up unused images and containers. Please clean up the occupied space as soon as possible (especially logs and snapshots).

Re: Is it normal?

Posted: 24 Mar 2026, 00:05
by akaserge
Phil wrote: 23 Mar 2026, 18:57
akaserge wrote: 23 Mar 2026, 01:54 Good day. Is it normal that system partition "/" occupies 94%? TOS 6 on F2-221 model. Thanks in advance.
You need to log in to the TOS web interface, go to Storage Management > Snapshots, and delete all unnecessary old snapshots. If Docker is installed, clean up unused images and containers. Please clean up the occupied space as soon as possible (especially logs and snapshots).
I don't use system snapshots. Only 2 containers are used (transmission and jackett). What can i clean up more and how? Thanks.

Re: Is it normal?

Posted: 24 Mar 2026, 08:55
by TMnight
akaserge wrote: 24 Mar 2026, 00:05
You can open the Terminal from the TOS desktop and run the following commands to check the disk usage of directories under the root path, in order to identify any abnormal space consumption:

Code: Select all

cd /
du -sh ./*
For example, check whether there is a directory named volume1 (lowercase) (do not confuse it with Volume1).

If you confirm that this directory contains abnormal or unintended data, you can first copy its contents to a valid volume for backup:

Code: Select all

cp -r ./volume1 /Volume1/public
After verifying that the data has been copied correctly, you can delete the original directory under the root path to free up space.

Re: Is it normal?

Posted: 24 Mar 2026, 14:24
by akaserge
TMnight wrote: 24 Mar 2026, 08:55
akaserge wrote: 24 Mar 2026, 00:05
You can open the Terminal from the TOS desktop and run the following commands to check the disk usage of directories under the root path, in order to identify any abnormal space consumption:

Code: Select all

cd /
du -sh ./*
As I can see, only 2 directories have a huge size - path (5.1G) and usr (1.7G)

Image

Should I delete them completely? What commands should I use for this? Thanks.

Re: Is it normal?

Posted: 24 Mar 2026, 16:06
by Phil
akaserge wrote: 24 Mar 2026, 14:24
TMnight wrote: 24 Mar 2026, 08:55
akaserge wrote: 24 Mar 2026, 00:05
You can open the Terminal from the TOS desktop and run the following commands to check the disk usage of directories under the root path, in order to identify any abnormal space consumption:

Code: Select all

cd /
du -sh ./*
As I can see, only 2 directories have a huge size - path (5.1G) and usr (1.7G)

Image

Should I delete them completely? What commands should I use for this? Thanks.
Based on the screenshot you provided, the /usr directory must be retained, and its size is normal.
You should review the /path directory yourself and confirm that its contents are unnecessary before deleting it. If you are unsure of its origin, the safest approach is to keep it temporarily or move it to another location for observation, rather than deleting it directly.
If you still have questions about the directory’s contents, we recommend backing them up first.

Deletion command (for the /path directory; use with caution)
If, after verification, you decide to delete all contents within the /path directory (please ensure there is no important data in /path beforehand), you can use the following command:

Code: Select all

rm -rf /path/*

Re: Is it normal?

Posted: 24 Mar 2026, 23:46
by akaserge
Thanks all for the help. This was a directory with folders from transmission. When installing in docker, I incorrectly specified the paths for saving data. The "/" partition is now only 26% full.