Disk usage issues can stop updates, backups, logs, databases, and game saves from writing correctly. Check both total disk usage and which folders are taking the most space.

Show mounted disk usage:

df -h

Check the largest folders in the current directory:

du -h --max-depth=1 | sort -h

Useful places to check are:

PathWhy check it
/var/logLarge or repeated logs.
/homeUser uploads, game server folders, and backups.
/tmpTemporary files that were not cleaned up.
/var/lib/dockerDocker images, containers, and volumes.

Do not delete files unless you know what they are. If the VPS is low on space and you are not sure what is safe to remove, submit a support ticket with the output of df -h.

  • 0 brukere syntes dette svaret var til hjelp
Var dette svaret til hjelp?

Relaterte artikler

How to connect to a Linux VPS with SSH

SSH is the normal way to manage a Linux VPS. It gives you a terminal on the server so you can...

How to update packages on a Linux VPS

Keeping packages updated helps patch security issues and keeps server tools compatible. Run...

How to create a sudo user on a Linux VPS

A sudo user lets you manage a Linux VPS without logging in as root for every task. This is safer...

How to secure SSH on a Linux VPS

SSH is the main way to manage a Linux VPS, so it should be secured before the server is used for...

How to check CPU and RAM usage on a Linux VPS

High CPU or RAM usage can cause lag, slow command responses, failed updates, or game servers...