Disk space is a valuable resource on any Linux server, and it's crucial to manage it efficiently to ensure optimal performance and prevent system slowdowns or crashes. In this tutorial, we will explore how to detect and remove large files and folders when your disk space is full on Ubuntu-based Linux servers. By following these steps, you can regain valuable disk space and maintain a healthy server environment.
The first step in managing disk space is to identify the large files and folders that are consuming the most space. Ubuntu provides several command-line tools to accomplish this task effectively. Open a terminal and execute the following commands:
cd /
- This command changes the directory to the root directory.
sudo du -hsx * | sort -rh | head -n 20
- This command lists the top 20 largest files and folders in the current directory, sorted by size.
The output will display the sizes of the files and folders in human-readable format (e.g., 10G for 10 gigabytes). Analyze the output and identify the ones consuming excessive disk space.
Once you've identified large files or folders that are no longer needed, it's time to remove them. However, exercise caution while deleting files, as some may be critical to the system or other applications. To remove files and folders, use the rm command:
sudo rm -rf /path/to/file_or_folder
- Replace /path/to/file_or_folder
with the actual path of the file or folder you want to delete. The -r
flag is used to remove directories recursively, and -f
is used to force deletion without confirmation.
Double-check the paths before executing the command to avoid accidental deletion of important data.
System logs can accumulate over time and occupy a significant amount of disk space. It's recommended to periodically clear these logs to free up storage. Ubuntu uses the logrotate utility to manage logs. To clear logs manually, use the following command:
sudo rm /var/log/*/*.log
- This command removes log files from the /var/log directory. Note that this operation requires administrative privileges.
Ubuntu uses the Advanced Packaging Tool (APT) to manage software packages. APT stores downloaded package files in the cache directory, which can consume a considerable amount of disk space. To clean the package cache, run the following commands:
sudo apt-get clean
- This command clears the local repository of retrieved package files.
sudo apt-get autoclean
- This command removes only the obsolete package files from the cache directory.
On a server without a user interface, you can manually clear the trash and temporary files to free up disk space. These files can accumulate over time and consume valuable storage. Follow these steps to remove them:
cd ~
ls -A .local/share/Trash/
This command lists the files in the trash folder.rm -rf .local/share/Trash/*
This command recursively deletes all files in the trash folder.sudo rm -rf /tmp/*
Note that this action removes all files and directories in the temporary directory and may require administrator privileges.By clearing the trash and removing temporary files, you can reclaim significant disk space on your Ubuntu-based Linux server, ensuring efficient resource utilization.
Efficiently managing disk space is vital for the smooth operation of Ubuntu-based Linux servers. By following the steps outlined in this tutorial, you can easily detect and remove large files and folders that are occupying excessive disk space. Regular maintenance and periodic cleaning will help ensure optimal performance and prevent storage-related issues on your server.
ServerAuth provides a whole host of management tools, from controlling who can access your server, to managing your website deployments. And with an ever-growing suite of tools you'll always be one step ahead!
Start for free