Difference between revisions of "Checking disk usage"

From Pulsed Media Wiki
(Using the Shell – Advanced Disk Check)
 
Line 1: Line 1:
You can check disk usage in 4 places, welcome page, ruTorrent, info page, shell.
+
== How to Check Disk Usage on Your Seedbox ==
  
 +
Monitoring your disk usage is essential to ensure your seedbox operates smoothly and avoids disruptions. There are **four main places** where you can check your disk quota and usage on a Pulsed Media seedbox:
  
== ruTorrent – Quick Quota View ==
+
* ruTorrent Web UI
 +
* Info Page
 +
* Welcome Page
 +
* Shell (Command Line)
  
'''What is ruTorrent?'''
+
This guide explains each method in detail and how to interpret what you see.
ruTorrent is the main web interface for managing your torrents. It's where you upload .torrent files, manage downloads, and control settings.
 
  
'''Where to find quota info:'''
+
=== 1. ruTorrent – Quick Quota Bar ===
In ruTorrent, look at the bottom-left corner of the screen. You’ll see a percentage bar showing how much of your disk space is currently used.
 
  
'''Tip:'''
+
'''What is ruTorrent?'''
Hover your mouse over this percentage bar – most web browsers will display a tooltip (small popup) showing: '''The exact amount of space used. Your total disk quota. Your burst limit, if available (see below)'''
 
  
+
[[ruTorrent]] is the primary web interface used for managing torrents on your seedbox. It allows you to upload torrents, track download progress, and control settings.
== Info Page – Detailed Usage ==
 
  
'''What is the Info page?'''
+
'''Where to find disk usage:'''
The Info page is a system-level status page that gives a detailed view of your seedbox resources.
 
  
'''What you’ll see there:'''
+
Look at the **bottom-left corner** of the ruTorrent interface. You’ll see a disk usage bar showing a **percentage** of your current usage.
You’ll find:
 
  
'''Total disk quota''' (how much space you’re allowed to use)
+
'''Tips:'''
 +
* Hover your mouse over the quota bar to reveal more details:
 +
  * **Exact space used**
 +
  * **Total disk quota**
 +
  * **Burst limit**, if applicable
  
'''Used space''' (how much you’ve currently used)
+
'''Note:''' The bar may turn red or orange when you approach or exceed your quota.
  
'''Burst limit''' (an extra buffer you may temporarily use)
+
=== 2. Info Page – Detailed Disk Quota Overview ===
  
This page is great when you want precise numbers, not just a visual bar.
+
'''What is the Info page?'''
  
== Welcome Page – Overview Snapshot ==
+
The Info page is a system diagnostics panel provided by Pulsed Media. It gives a **detailed and precise** breakdown of your seedbox’s resources.
  
When you first log in to your seedbox web interface, you land on the Welcome page.
+
'''What you’ll see:'''
 +
* **Total disk quota** – Your allocated storage
 +
* **Used space** – Amount currently consumed
 +
* **Burst limit** – Temporary extra space granted beyond your quota
  
Look at the top right corner – the rightmost bar shows your disk usage percentage. This is a quick way to check how full your seedbox is right after logging in.
+
'''Why use it?''' 
 +
Perfect for getting **exact numbers** instead of relying on visual bars.
  
== 4. “It’s Empty!” When Your Files Disappear ==
+
=== 3. Welcome Page Snapshot View ===
  
If you suddenly don’t see files or torrents anymore, or downloads stop working, don’t panic. One common reason is:
+
Upon logging into your seedbox’s web dashboard, you land on the **Welcome page**.
  
❌ '''You’ve gone over your quota.
+
* Look in the **top-right corner**.
'''
+
* The rightmost usage bar shows your **current disk usage percentage**.
When this happens, some interfaces (like ruTorrent) may appear “empty” or broken. You can verify this by checking your usage through the shell (see below).
 
  
This is a known issue and will be resolved in a future PMSS (Pulsed Media Seedbox System) update.
+
'''Use case:''' This is a convenient **quick check** immediately after login to see if you’re nearing your quota.
  
 +
=== 4. “Everything's Empty?” – Over Quota Warning ===
  
== Using the Shell – Advanced Disk Check ==
+
If you notice:
 +
* ruTorrent appears empty
 +
* Your torrents aren’t showing
 +
* Downloads are not working
  
If you’re comfortable with the command line, you can log into your seedbox via SSH (Shell access) and run commands to check your actual usage.
+
Then check your disk quota — you may have exceeded your limit.
  
'''Step-by-step:'''
+
'''⚠️ Over quota behavior:'''
 +
* Interfaces may look “broken” or blank.
 +
* This is a **known behavior** when over quota and will be improved in future PMSS (Pulsed Media Seedbox System) updates.
  
Log into your seedbox via '''SSH'''
+
'''What to do:'''
 +
* Check your usage in the Info page or shell to confirm.
 +
* Consider deleting unused files or upgrading your plan if consistently over quota.
  
Run the following commands:
+
=== 5. Shell (SSH) – Advanced Disk Usage Check ===
  
'''cd ~'''
+
If you are comfortable using the command line, you can log into your seedbox via [[SSH]] to view detailed disk usage.
  
'''du -hsc'''
+
'''Step-by-step:'''
  
'''cd ~''' moves you to your home directory (where your files are)
+
<syntaxhighlight lang="bash">
 +
ssh yourusername@your.seedbox.hostname
 +
cd ~
 +
du -hsc
 +
</syntaxhighlight>
  
'''du -hsc''' shows a summary of your disk usage in human-readable format (like GB/MB)
+
* `cd ~` – Navigates to your home directory.
 +
* `du -hsc` – Shows a **summary** of your directory's size in a human-readable format.
  
'''You can also run:'''
+
You can also check your quota limits with:
  
'''bash'''
+
<syntaxhighlight lang="bash">
 +
quota -s
 +
</syntaxhighlight>
  
'''Copy'''
+
This displays:
  
'''Edit'''
+
* **Used space**
 +
* **Quota limit**
 +
* **Burst limit** (if enabled)
  
'''quota''' -This shows your: '''Used space, Quota limit, Burst limit, if one is available.'''
+
'''What is a burst limit?'''
  
'''What is a burst limit?'''
+
A burst limit is a **temporary buffer zone** that lets you slightly exceed your disk quota for short periods. It's designed to avoid immediate service disruption, but it's not meant for long-term usage.
It’s a temporary space buffer that lets you go slightly over your quota for a short time. It helps prevent interruptions but isn't guaranteed long-term.
 
  
== Shell ==
+
== Summary Table ==
You can use du and quota to see your disk usage in shell.
 
  
'''cd ~
+
{| class="wikitable"
du -hsc'''
+
! Method !! Interface !! Info Displayed !! Best For
 +
|-
 +
| ruTorrent || Web UI || Visual percentage bar, hover details || Quick glance while managing torrents
 +
|-
 +
| Info Page || Web UI || Exact numbers (used, quota, burst) || Detailed monitoring
 +
|-
 +
| Welcome Page || Web UI || Overview bar || Quick check after login
 +
|-
 +
| Shell (SSH) || Terminal || Manual file size and quota tools || Advanced users, troubleshooting
 +
|}
  
will show total used and '''quota -s''' will show quota information in human readable format.
+
== Related Tools ==
 +
* [[ruTorrent]]
 +
* [[Quota]]
 +
* [[du command]]
 +
* [[SSH]]
  
[[Category:seedbox guides]]
+
[[Category:Seedbox Guides]]
 +
[[Category:Disk Management]]
 
[[Category:Guides]]
 
[[Category:Guides]]

Latest revision as of 13:35, 21 April 2025

How to Check Disk Usage on Your Seedbox

Monitoring your disk usage is essential to ensure your seedbox operates smoothly and avoids disruptions. There are **four main places** where you can check your disk quota and usage on a Pulsed Media seedbox:

  • ruTorrent Web UI
  • Info Page
  • Welcome Page
  • Shell (Command Line)

This guide explains each method in detail and how to interpret what you see.

1. ruTorrent – Quick Quota Bar

What is ruTorrent?

ruTorrent is the primary web interface used for managing torrents on your seedbox. It allows you to upload torrents, track download progress, and control settings.

Where to find disk usage:

Look at the **bottom-left corner** of the ruTorrent interface. You’ll see a disk usage bar showing a **percentage** of your current usage.

Tips:

  • Hover your mouse over the quota bar to reveal more details:
 * **Exact space used**
 * **Total disk quota**
 * **Burst limit**, if applicable

Note: The bar may turn red or orange when you approach or exceed your quota.

2. Info Page – Detailed Disk Quota Overview

What is the Info page?

The Info page is a system diagnostics panel provided by Pulsed Media. It gives a **detailed and precise** breakdown of your seedbox’s resources.

What you’ll see:

  • **Total disk quota** – Your allocated storage
  • **Used space** – Amount currently consumed
  • **Burst limit** – Temporary extra space granted beyond your quota

Why use it? Perfect for getting **exact numbers** instead of relying on visual bars.

3. Welcome Page – Snapshot View

Upon logging into your seedbox’s web dashboard, you land on the **Welcome page**.

  • Look in the **top-right corner**.
  • The rightmost usage bar shows your **current disk usage percentage**.

Use case: This is a convenient **quick check** immediately after login to see if you’re nearing your quota.

4. “Everything's Empty?” – Over Quota Warning

If you notice:

  • ruTorrent appears empty
  • Your torrents aren’t showing
  • Downloads are not working

Then check your disk quota — you may have exceeded your limit.

⚠️ Over quota behavior:

  • Interfaces may look “broken” or blank.
  • This is a **known behavior** when over quota and will be improved in future PMSS (Pulsed Media Seedbox System) updates.

What to do:

  • Check your usage in the Info page or shell to confirm.
  • Consider deleting unused files or upgrading your plan if consistently over quota.

5. Shell (SSH) – Advanced Disk Usage Check

If you are comfortable using the command line, you can log into your seedbox via SSH to view detailed disk usage.

Step-by-step:

<syntaxhighlight lang="bash"> ssh yourusername@your.seedbox.hostname cd ~ du -hsc </syntaxhighlight>

  • `cd ~` – Navigates to your home directory.
  • `du -hsc` – Shows a **summary** of your directory's size in a human-readable format.

You can also check your quota limits with:

<syntaxhighlight lang="bash"> quota -s </syntaxhighlight>

This displays:

  • **Used space**
  • **Quota limit**
  • **Burst limit** (if enabled)

What is a burst limit?

A burst limit is a **temporary buffer zone** that lets you slightly exceed your disk quota for short periods. It's designed to avoid immediate service disruption, but it's not meant for long-term usage.

Summary Table

Method Interface Info Displayed Best For
ruTorrent Web UI Visual percentage bar, hover details Quick glance while managing torrents
Info Page Web UI Exact numbers (used, quota, burst) Detailed monitoring
Welcome Page Web UI Overview bar Quick check after login
Shell (SSH) Terminal Manual file size and quota tools Advanced users, troubleshooting

Related Tools