Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124
Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124
When migrating your Cloud Server to a VPS, you need at least 100 MB of free space in both the root (/) and boot (/boot) directories. Without enough free space, the migration may fail.
This guide will show you how to check available storage, remove unnecessary files, clear old logs, and uninstall unused programs to optimize your Linux Cloud Server.
Before making changes, check how much space is currently available using:
df -h
This command displays storage usage in a human-readable format (MB, GB).
To check how much space individual directories are using, run:
du -sh /
Log files grow over time and can consume significant storage. You can clear them if they are no longer needed.
To list log files by size, run:
ls -l -S -h /var/log
To empty a log file while keeping the file structure intact, use:
> /var/log/LOGFILENAME.log
For example:
> /var/log/dnf.log.1
⚠️ Warning: Always review log files before clearing them, as they may contain important system data.
If you use Plesk to manage your server, it might have multiple old backups that take up space.
We recommend reviewing and deleting outdated backups to free up additional storage.
Follow Plesk’s backup removal instructions to safely delete unnecessary backups.
To locate large files, use the following command:
du --block-size=MiB --max-depth=1 | sort -n
Example output:
1MiB ./crash
1MiB ./local
3MiB ./backups
120MiB ./www
672MiB ./tmp
4157MiB ./log
7321MiB .
To delete a single file, use:
rm FILENAME
To delete multiple files, run:
rm FILENAME1 FILENAME2
To delete read-only files, use:
rm -i FILENAME
To delete all files within a directory, run:
rm -r DIRECTORYNAME/*
Unused applications take up space and should be removed.
sudo yum remove PACKAGENAME
sudo dnf remove PACKAGENAME
sudo apt purge PACKAGENAME
Over time, old Linux kernels accumulate, using valuable space. To check your current kernel version, run:
uname -r
For Debian / Ubuntu:
dpkg --list 'linux-image-*'
For CentOS, Rocky Linux, AlmaLinux:
rpm -qa kernel
⚠️ Make sure at least one stable kernel remains installed to prevent system instability.
For Debian / Ubuntu:
apt-get remove linux-image-x.x.x
For CentOS, Rocky Linux, AlmaLinux:
yum remove kernel-x.x.x
Once cleanup is complete, confirm that enough space has been freed up by running:
df -h
If additional space is needed, repeat the above steps to find and remove more unnecessary files.
Regularly cleaning up your Linux Cloud Server improves performance, ensures smooth migrations, and prevents storage-related issues. By following these steps, you can free up space and keep your system running efficiently.
🚀 Try these steps today to optimize your storage!
💬 Have questions? Drop them in the comments below!