HomeLinuxHow to Clear Inodes in Linux and Increase Inode Space?

How to Clear Inodes in Linux and Increase Inode Space?

Are you getting low disk space warnings even though there’s plenty of free space? The problem might lie with your inodes. In this article, we will explore how to clear inodes in Linux and increase inode space to optimize your storage efficiency.

We will guide you through various methods to clear inodes in Linux, including identifying and deleting unused files, finding and removing orphaned inodes, and resizing the filesystem. By following these steps, you can reclaim valuable space on your Linux system and optimize its performance.

What is Inodes in Linux?

Inodes, short for index nodes, are fundamental components of the Linux filesystem. Each file or directory on your system corresponds to an inode, which stores metadata such as permissions, ownership, timestamps, and pointers to data blocks. Inodes play a crucial role in enabling the operating system to locate and manage files efficiently. When a file is created, an inode is allocated to store its attributes. Understanding inodes is essential for efficient filesystem management and optimization.

Inode management is critical for maintaining a healthy filesystem. Inodes have a fixed size and are allocated during filesystem creation. If the number of inodes is exhausted, even if disk space is available, you won’t be able to create new files. This situation can lead to unexpected errors and system instability. Therefore, regularly monitoring and managing inodes is necessary to prevent storage issues and ensure the smooth operation of your Linux system.

Why We Need to Increase Inodes?

Increasing the number of inodes on a filesystem is essential for maintaining efficient file management, accommodating growth, and ensuring that the filesystem can handle the expected workload without running into limitations on the number of files and directories that can be created. It’s a critical aspect of filesystem design and administration, particularly for systems that deal with a large number of files or require scalability and performance optimization.

Signs of low inode space may not always be as apparent as low disk space warnings. One common indicator is the inability to create new files or directories, even when there is sufficient space available. Other symptoms include sluggish performance, unexpected errors during file operations, and system crashes. If you encounter these signs, it’s crucial to investigate your inode usage and take appropriate actions to clear inodes and increase inode space.

How to Check Inode Usage on Your Linux?

Before you begin on clearing inodes in Linux, it’s essential to assess the current inode usage on your system. You can check the inode utilization using commands like df -i or df -Tih. These commands provide information about the inode usage, inode limits, and the percentage of inode utilization on each mounted filesystem. By analyzing this data, you can identify filesystems with high inode usage and prioritize them for inode cleanup.

df -i

OR

df -Tih

Example output for the command df -i:

Filesystem: Name of the filesystem.
Inodes: Total number of inodes available on the filesystem.
IUsed: Number of inodes currently in use.
IFree: Number of free inodes available for use.
IUse%: Percentage of used inodes out of the total available.

Listing files by size can be useful for quickly identify and manage small files that may no longer be needed.

To sort files in ascending order by size and list with the inode usage, use the command:

ls -laShr /

Listing directories by the number of files they contain is an effective method to identify which directories are using the most inodes.

To find directories with many files, use:

sudo find . -mount -type f -printf '%P\n' | cut -d "/" -f 1 | sort | uniq -c | sort -n

How to Clear Inodes on Linux?

Clearing inodes manually involves identifying and removing unused files and directories to free up inode space. Start by locating large files that are no longer needed and deleting them to recover inodes. Additionally, search for directories with unnecessary data or temporary files that can be safely removed. It’s crucial to exercise caution when deleting files or directories to avoid unintentional data loss. Regularly performing manual inode cleanup can help prevent inode exhaustion and optimize storage efficiency.

Replace the path in the following commands with the actual path of your file system.

1. Find files based on size:
find /path -type f -size +100M
2. Clear cache and temporary files:
rm -rf /path/to/temp/*
3. Manually clear log files older than last 30 days:
find /var/log -type f -name '*.log' -mtime +30 -exec rm -f {} \;
4. Find and Remove Empty Files and Directories:
find /path -type f -empty -delete

Removing unnecessary files and directories is a fundamental step in clearing inodes and increasing inode space on your Linux system. Begin by identifying files that are consuming a significant amount of inode space but are no longer required. Deleting these files will free up inodes and alleviate inode pressure on the filesystem. Similarly, removing redundant directories and clearing out temporary files can help optimize inode utilization and enhance filesystem performance.

How to Increase Inode Space through Filesystem Resizing?

If manual inode cleanup is not sufficient to address inode space constraints, you may consider resizing the filesystem to increase the available inode space. Filesystem resizing involves expanding the filesystem to accommodate more inodes, allowing for the creation of additional files and directories. This process requires careful planning and execution to prevent data loss or filesystem corruption. Before resizing the filesystem, ensure you have a backup of your data to safeguard against unexpected issues.

1. Creating a New Filesystem with Increased Inode Capacity

If you have the option to format a new partition, you can specify the number of inodes during the filesystem creation. Here’s how to do it for an ext4 filesystem:

Use lsblk or fdisk -l to list all disks and partitions. Once you have an idea about the current disks and partitions, you can goahead with creating new file system:

mkfs.ext4 -N 2000000 /dev/vdXn

This command formats the partition /dev/vdXn with approximately 2,000,000 inodes. Replace the inode value and disk partition according to your filesystem.

Then mount the filesystem:

mount /dev/vdXn /mnt/new_partition

Remember to alter the command partition name and disk in respect to your system and choice.

2. Increasing Inode Capacity on an Existing Filesystem

For some filesystems, you can increase the inode count without reformatting, particularly for XFS and some configurations of Btrfs.

XFS does not allow direct modification of inode counts post-creation, as inodes are dynamically allocated. However, you can increase the overall filesystem size, which indirectly allows for more inodes to be created as needed.

To grow an XFS filesystem:

xfs_growfs /dev/vdXn

Ensure that the underlying block device has been resized before you attempt to grow the XFS filesystem.

3. Reformatting an Existing Filesystem with a New Inode Ratio

If you are able to backup data and reformat, you can adjust the inode density during the creation of an ext4 filesystem. Always ensure data is backed up before formatting. Use tools like rsync or tar to backup.

Command to backup using rsync:

rsync -av /path/to/old_partition /path/to/backup_location

Alternate Method: https://www.veeble.org/kb/setup-linux-vps-backup-server-using-rsync/

Then you can reformat with increased inodes using the command:

mkfs.ext4 -T largefile4 /dev/vdXn

The -T option sets the usage type which influences the default number of inodes. Types include small, news, largefile, largefile4, etc., with largefile types having fewer inodes but larger inode size.

How to Automate Inode CleanUp to Enhance Filesystem Reliability?

Automating inode cleanup and maintenance tasks can streamline the process of managing inodes on your Linux system. By utilizing scripts or tools that automate inode cleanup, you can schedule regular maintenance tasks to identify and remove unused inodes efficiently. Automation helps ensure consistent and proactive management of inodes, reducing the risk of encountering inode-related problems in the future. Implementing automated inode cleanup practices can enhance the overall performance and stability of your filesystem.

1. Setting Up Cron Jobs for Clearing Logs and Temporary Files:

You can create cron jobs for those files which needs to be clear after a time automatically. To set it, open crontab by executing the command:

crontab -e

Then enter the cron job you need to set. For example, I am setting a crob job for deleting files in /tmp not accessed in the last 14 days with the following entry as show in the below screenshot:

Tip: Use tools like inotify to monitor filesystem events in real-time, and Monit to keep track of inode usage and execute scripts when thresholds are exceeded.
2. Setting Up Log Rotation:

Setting up log rotation is indeed a form of automation. It involves automatically managing log files to prevent them from consuming excessive disk space or inodes. Log rotation can compress, delete, or archive old logs based on their size or age, without requiring manual intervention. This process helps maintain system performance and stability by ensuring that logging does not use up all available disk space or inode capacity.

To automating the management of log files. Install Logrotate if it is not pre-intstalled on your system and open the logrotate file: /etc/logrotate.conf file with your preffered text editor:

nano /etc/logrotate.conf

Within the configuration file, add a section for each log file you want to manage. Here’s an example for the Apache access log (/var/log/apache2/access.log):

Customize the options for your specific needs:

weekly: Adjust the rotation frequency (e.g., daily, monthly).
rotate 4: Set the number of archived logs to keep.
compress: Enable compression for old logs.
size 100M: Specify the size threshold for log rotation.
missingok: Instruct logrotate not to raise errors if a log file is missing.

After entering the instructions save the file.

Tip: You can use tmpwatch (For RedHat-based distributions) or tmpreaper (For Debian-based distributions) on directories like /tmp and /var/tmp to automatically delete old files.

What are the Best Practices for Managing Inodes in Linux?

To effectively manage inodes in Linux and optimize inode space utilization, consider implementing the following best practices:

  • Regularly monitor inode usage and identify filesystems with high inode utilization.
  • Conduct periodic manual inode cleanup to remove unused files and directories.
  • Utilize filesystem resizing techniques when additional inode space is required.
  • Implement automation tools for scheduling and executing inode cleanup tasks.
  • Maintain backups of critical data before performing any operations that may impact filesystem integrity.

By adhering to these best practices, you can ensure that your Linux system’s inodes are efficiently managed, leading to improved storage efficiency and system performance.

In conclusion, understanding how to clear inodes in Linux and increase inode space is crucial for maintaining a healthy filesystem and optimizing storage efficiency. By effectively managing inodes, you can prevent storage-related issues, ensure smooth system operation, and maximize the utilization of available disk space. Whether through manual cleanup, filesystem resizing, or automation, taking proactive steps to manage inodes can help you make the most of your Linux system’s storage capabilities. By following the guidelines outlined in this article, you can enhance the performance and stability of your Linux filesystem. Start managing your inodes today for a more efficient and reliable storage experience.

Also Read:

Scheduling One-Time Jobs in Linux using “at” Command
Scroll to Top