Software⏱️ 3 min read📅 2026-06-15

How to Fix: UBUTU 16.04 Dual boot error [busy inodes on changed media or resized disk sdb]

UBUNTU 16.04 Dual boot error with busy inodes on changed media or resized disk sdb, Dell Inspiron 7567 Windows 10 installation issue.

Quick Answer: Try resizing the disk to a smaller size before installing Ubuntu.

The error 'busy inodes on changed media or resized disk sdb' is encountered when attempting to install Ubuntu 16.04 or 18 on a Dell Inspiron 7567 with Windows 10 installed. This issue can be frustrating for users who are new to Linux and may not have the technical expertise to resolve it. The error message indicates that there are busy inodes on the changed media or resized disk sdb, which prevents the installation process from completing successfully.

Resolving this error requires a thorough analysis of the system configuration and potential causes. In some cases, the issue may be related to the disk partitioning or resizing process, while in other cases, it could be due to file system corruption or incompatible drivers.

💡 Why You Are Getting This Error

  • The primary cause of this error is that the disk sdb has been resized or changed media, which creates busy inodes. This can occur when using disk management tools like Windows Disk Management to resize or reformat a partition. When the installation process attempts to write data to the disk, it encounters these busy inodes, resulting in an error.
  • Another possible cause is file system corruption. If the file system on the disk sdb becomes corrupted during the installation process, it can lead to busy inodes and prevent the installation from completing.

🚀 How to Resolve This Issue

Using the Disk Utility Tool

  1. Step 1: Boot into a live Ubuntu environment using a USB drive or CD/DVD. Open the Disk Utility tool by typing 'diskutil' in the terminal.
  2. Step 2: Identify the disk sdb and check if it has been resized or changed media. If so, you may need to reformat the partition or restore the original configuration.
  3. Step 3: Use the 'fsck' command to check for file system corruption: `fsck -n -C /dev/sdb1` (assuming the disk is mounted at `/dev/sdb1`). This will scan the file system and fix any errors it finds.

Reinstalling Ubuntu

  1. Step 1: Unmount the disk sdb by typing 'sudo umount /dev/sdb1' in the terminal.
  2. Step 2: Delete the existing partition on disk sdb using the Disk Utility tool or a third-party tool like GParted. This will remove any changes made to the disk configuration.

🎯 Final Words

To resolve the 'busy inodes on changed media or resized disk sdb' error, it is recommended to use the Disk Utility tool to identify and fix potential issues with the disk configuration. If the issue persists, reinstalling Ubuntu may be necessary. By following these steps, users can successfully install Ubuntu 16.04 or 18 on their Dell Inspiron 7567 with Windows 10 installed.

Did this fix your problem?

If not, try searching for specific error codes.

🔍 Search Error Database

❓ Frequently Asked Questions