Difference between revisions of "Checking disk usage"

From Pulsed Media Wiki
(Using the Shell – Advanced Disk Check)
m (Guides: Linux: Information)
 
(One intermediate revision by the same user not shown)
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)
 +
 
 +
This guide explains each method in detail and how to interpret what you see.
 +
 
 +
=== 1. ruTorrent – Quick Quota Bar ===
  
 
'''What is ruTorrent?'''
 
'''What is ruTorrent?'''
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:'''
+
[[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.
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.
+
 
 +
'''Where to find disk usage:'''
  
'''Tip:'''
+
Look at the **bottom-left corner** of the ruTorrent interface. You’ll see a disk usage bar showing a **percentage** of your current usage.
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)'''
 
  
+
'''Tips:'''
== Info Page – Detailed Usage ==
+
* 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?'''
 
'''What is the Info page?'''
The Info page is a system-level status page that gives a detailed view of your seedbox resources.
 
  
'''What you’ll see there:'''
+
The Info page is a system diagnostics panel provided by Pulsed Media. It gives a **detailed and precise** breakdown of your seedbox’s resources.
You’ll find:
 
  
'''Total disk quota''' (how much space you’re allowed to use)
+
'''What you’ll see:'''
 +
* **Total disk quota** – Your allocated storage
 +
* **Used space** – Amount currently consumed
 +
* **Burst limit** – Temporary extra space granted beyond your quota
  
'''Used space''' (how much you’ve currently used)
+
'''Why use it?'''
 +
Perfect for getting **exact numbers** instead of relying on visual bars.
  
'''Burst limit''' (an extra buffer you may temporarily use)
+
=== 3. Welcome Page – Snapshot View ===
  
This page is great when you want precise numbers, not just a visual bar.
+
Upon logging into your seedbox’s web dashboard, you land on the **Welcome page**.
  
== Welcome Page – Overview Snapshot ==
+
* Look in the **top-right corner**.
 +
* The rightmost usage bar shows your **current disk usage percentage**.
  
When you first log in to your seedbox web interface, you land on the Welcome page.
+
'''Use case:''' This is a convenient **quick check** immediately after login to see if you’re nearing 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.
+
=== 4. “Everything's Empty?” Over Quota Warning ===
  
== 4. “It’s Empty!” – When Your Files Disappear ==
+
If you notice:
 +
* ruTorrent appears empty
 +
* Your torrents aren’t showing
 +
* Downloads are not working
  
If you suddenly don’t see files or torrents anymore, or downloads stop working, don’t panic. One common reason is:
+
Then check your disk quota — you may have exceeded your limit.
  
'''You’ve gone over your quota.
+
'''⚠️ Over quota behavior:'''
'''
+
* Interfaces may look “broken” or blank.
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 behavior** when over quota and will be improved in future PMSS (Pulsed Media Seedbox System) updates.
  
This is a known issue and will be resolved in a future PMSS (Pulsed Media Seedbox System) update.
+
'''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 ===
  
== Using the Shell – Advanced Disk Check ==
+
If you are comfortable using the command line, you can log into your seedbox via [[SSH]] to view detailed disk usage.
 
 
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.
 
  
 
'''Step-by-step:'''
 
'''Step-by-step:'''
  
Log into your seedbox via '''SSH'''
 
 
Run the following commands:
 
  
'''cd ~'''
+
  ssh yourusername@your.seedbox.hostname
 +
  cd ~
 +
  du -hsc
  
'''du -hsc'''
 
  
'''cd ~''' moves you to your home directory (where your files are)
+
* `cd ~` – Navigates to your home directory.
 +
* `du -hsc` – Shows a **summary** of your directory's size in a human-readable format.
  
'''du -hsc''' shows a summary of your disk usage in human-readable format (like GB/MB)
+
You can also check your quota limits with:
  
'''You can also run:'''
 
  
'''bash'''
+
  quota -s
  
'''Copy'''
 
  
'''Edit'''
+
This displays:
  
'''quota''' -This shows your: '''Used space, Quota limit, Burst limit, if one is available.'''
+
* **Used space**
 +
* **Quota limit**
 +
* **Burst limit** (if enabled)
  
 
'''What is a burst limit?'''
 
'''What is a burst limit?'''
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 ==
+
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.
You can use du and quota to see your disk usage in shell.
 
  
'''cd ~
+
== Related Tools ==
du -hsc'''
+
* [[ruTorrent]]
 +
* [[Quota]]
 +
* [[SSH]]
  
will show total used and '''quota -s''' will show quota information in human readable format.
 
  
[[Category:seedbox guides]]
 
 
[[Category:Guides]]
 
[[Category:Guides]]

Latest revision as of 16:26, 17 June 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:


 ssh yourusername@your.seedbox.hostname
 cd ~
 du -hsc


  • `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:


 quota -s


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.

Related Tools