Home Dual Boot How To Safely Remove Windows From Windows-Linux Dual Boot

How To Safely Remove Windows From Windows-Linux Dual Boot

Bid Farewell to Windows: A Step-by-Step Guide to Uninstalling Windows from Dual Boot.

By Karthick
45.3K views

In this Step-by-Step article, I'll show you how to safely remove Windows from a Windows-Linux dual boot system. I'll cover the steps involved in deleting the Windows partition, updating the boot loader, and troubleshooting any problems that might occur.

By the end of this article, you'll know how to uninstall Windows from your dual boot system without causing any damage to your data or your computer.

Introduction

Dual booting Windows and Linux is a great way to get the best of both worlds. You can use Windows for your everyday tasks, like browsing the web, working on documents, and playing games. And you can use Linux for more specialized tasks, like programming, software development, and security research.

But what if you decide that you no longer need Windows? Maybe you're tired of the dual boot hassle, or maybe you've decided to switch to Linux full-time. Whatever the reason, it's important to know how to safely remove Windows from your dual boot system.

Why Remove Windows from Dual Boot?

Firstly and foremost, I appreciate your decision to remove Windows and keep Linux as the only operating system. Compared to Windows operating system Linux gives you full control and offers a lot of customizations.

Unlike Windows, there are a wide variety of distributions and desktop flavors in the Linux ecosystem. You have full control of system updates. You can choose which packages to be updated and you can do that at your preferred time.

Linux is more secure compared to Windows. Additionally can install a firewall or any other security-related solutions (Eg. UFW) to protect your linux operating system from malicious attacks.

Installing Windows on older hardware is practically not a preferred solution. However, there are lightweight Linux distributions that can be installed on older hardware and it will just work fine without any slowness or issues.

Linux stands as the preferred choice for mission-critical production workloads. Regardless of your job role, you'll encounter Linux servers, either physical or in the cloud. Gaining knowledge about Linux proves beneficial for both personal and professional purposes.

Backup your Important Data!

Before we dive into the step-by-step process of removing the Windows operating system from your dual-boot setup, you must back up your data. Though the Windows uninstallation process is simple, anything can happen and you might end up losing your important data.

So. it is very important to copy your personal files from both Windows & Linux operating systems to any cloud storage or external hard drive.

You can also use the "Timeshift" backup application to save a copy of your Linux system. This way, if anything unexpected happens, you can easily restore your Linux operating system.

Timeshift is an excellent system-level backup utility for Linux. We have a detailed article about Timeshift Backup application installation and usage in Linux and highly recommend you to use Timeshift to take a snapshot of your Linux system before moving to the next step.

My Demo Setup

I will use Windows 11 and Zorion OS dual boot setup for demonstration. The procedure will be the same for any system that uses EFI and GPT scheme.

I will be using the Gparted disk utility to remove Windows partitions. If your Linux operating system has no Gparted utility, you can install it by running any one of the following relevant command.

Debian/Ubuntu and its derivatives:

$ sudo apt update
$ sudo apt install -y gparted

Arch Linux and its variants:

$ sudo pacman -S gparted

RHEL and its derivative operating systems:

$ sudo dnf install gparted -y

Steps to Safely Remove Windows from a Dual Boot System

Step 1: Boot into Linux

Turn on your computer, and you will see the GRUB boot loader screen. Here, you can choose between the Windows and Linux operating systems. By default, the Linux operating system will be selected, so go ahead and boot into it.

GRUB Bootloader Screen
GRUB Bootloader Screen

Step 2: Remove Windows Partitions

Open the Gparted utility. The utility will show you the disk layout, file system type, mount points, and used/unused size, etc.

Here our focus is to delete the Windows partitions. Look out for partitions with FAT32 and NTFS as the file system type.

The following image shows my file system layout. I have four Windows partitions as listed below.

  • /dev/sda1 - Boot Partition
  • /dev/sda2 - Microsoft Reserved Partition
  • /dev/sda3 - C Drive
  • /dev/sda4 - Hidden Partition
Gparted - Disk Layout
Gparted - Disk Layout

Here I will remove all the partitions except the boot partition.

To delete a Windows partition, right-click on the partition and click "Delete".

Delete a Windows Partition
Delete a Windows Partition

Repeat the same step for deleting all the Windows partitions except the boot partition. I repeat do not delete Boot partition.

The GParted utility will keep a record of the delete operation but won't apply it to the disk just yet. You should notice a pending operation message at the bottom of the GParted utility.

Pending Operations
Pending Operations

To proceed with partition deletion and write the changes to the disk, click the "tick" icon from the menu bar.

Write Pending Operations to Disk
Write Pending Operations to Disk

You will be prompted with a confirmation message to apply the changes. Click "Apply".

Confirmation to Write Changes
Confirmation to Write Changes

Once the change is applied, a completion window will appear. Additionally, you can verify for any pending operations at the bottom of the GParted window.

Pending Operation Status
Pending Operation Status

Now you will have some unallocated space that can be used to expand existing linux partitions or create new linux partitions.

Step 3: Resize or Create New Linux Partitions

To create a new partition from the unallocated space, right-click on "unallocated partition" and click "New".

Create New Partition
Create New Partition

A window will pop up, asking you to input partition details such as size and file system type. You can enter the size in MiB or use the slider to adjust it. Once you've entered all the required information, click on "Add."

Enter Partition Details
Enter Partition Details

If you wish to resize an existing partition, right-click on the existing partition and click "Resize/Move" option.

Resize Partition
Resize Partition

After clicking on the partition you wish to resize, a window will appear, asking you to enter the desired size in MiB. Once you've entered the size, click on "Resize/Move" to proceed with the operation.

Enter Resize Space
Enter Resize Space

To make the changes take effect, simply click on the "Tick" icon located in the menu bar. This action will write the pending changes to the disk and apply your modifications successfully.

Write Pending Changes
Write Pending Changes

Step 4: Delete Microsoft Boot Loader Entry

Reboot the machine. You will still see the Windows boot loader entry in the GRUB menu. If you try to enter into Windows, you will encounter with the following error message.

Windows Error Message
Windows Error Message

The reason for this is that we haven't removed the Microsoft boot loader entry, which resides in the /dev/sda1 partition. To resolve this, manual cleaning is required.

Make sure you logged in to your Linux OS. Open the Terminal and execute the os-prober command to scan for available operating systems. As shown in the image below, the Windows boot loader is detected during this process.

Os-prober Command Output
Os-prober Command Output

All the boot files are saved under /boot/efi/UEFI. You can verify it using ls command:

List Boot Files
List Boot Files

Navigate to the /boot/efi/EFI/ directory using the command:

$ cd /boot/efi/EFI/

Then, delete the "Microsoft" directory along with all Windows-related files by executing the following command:

$ rm -rf Microsoft/

It's essential to double-check the path before deleting it to avoid any accidental deletions.

Delete Windows Boot Files
Delete Windows Boot Files

Step 5 - Update GRUB Bootloader

Execute the following command to reload the GRUB configurations, which internally utilizes the os-prober command to detect operating systems:

$ sudo update-grub

Alternatively, if you are the root user, you can use:

$ update-grub

By running this command, the GRUB bootloader will be updated with the latest configurations.

From the image below, you can see that no entries for the Windows operating system are found, indicating that it has been successfully removed from the boot menu.

Update Grub
Update Grub

After completing the process, simply reboot your machine. Upon restart, you will no longer see the Windows boot loader entry in the GRUB boot menu. The Windows operating system has been successfully removed from the boot menu.

No Windows Entry in GRUB Boot Menu
No Windows Entry in GRUB Boot Menu

Frequently Asked Questions (FAQ)

Q: Can I safely remove Windows from my Windows-Linux dual boot setup without losing data?

A: Yes, you can safely remove Windows without losing your Linux data by following the proper procedures as described in this guide and ensuring you have backups in place. Be cautious during the partition resizing and deletion steps to avoid any accidental data loss.

Q: Do I need any special tools to remove Windows from my dual boot setup?

A: Yes, you will need tools like GParted for partition management and Timeshift for creating backups. These tools will help you resize partitions, delete Windows-related files, and safeguard your Linux system during the process.

Q: Can I revert the changes if I decide to keep the Windows-Linux dual boot in the future?

A: If you make backups using Timeshift before proceeding with the removal, you can easily revert to the previous state if you decide to re-establish the dual boot setup later on. The backups will allow you to restore your system to its earlier configuration.

Q: Will removing Windows affect the GRUB boot menu?

A: Yes, removing Windows will impact the GRUB boot menu. After deleting Windows-related files and updating GRUB configurations, the Windows boot loader entry will no longer appear in the GRUB menu, leaving Linux as the sole operating system option.

Q: Is there a risk of damaging my system while removing Windows from the dual boot setup?

A: There is a risk involved in any system operation that modifies partitions and boot configurations. It is important to follow the steps carefully and double-check before executing any commands to avoid unintended consequences. Creating backups using Timeshift provides an added layer of safety.

Q: Can I still access my Windows files after removing Windows from the dual boot?

A: No. After removing Windows from the dual boot setup, the Windows partitions will be deleted, and you won't be able to access those files directly from Linux. If you need to access specific Windows files, it's best to back them up before starting the removal process.

Q: Does removing Windows from the dual boot setup improve system performance?

A: Yes, removing Windows from the dual boot setup can potentially improve system performance, as it allows Linux to utilize the entire resources of the system without sharing them with another operating system. This could lead to faster boot times and smoother overall performance.

Q: Can I re-install Windows after removing it from the dual boot setup?

A: Yes, you can reinstall Windows on the same machine after removing it from the dual boot setup. You would need to allocate space for a new Windows partition, perform the installation, and update the GRUB configurations to add Windows back to the boot menu alongside Linux. Please check our "Dual Boot" category for setting up Dual boot with various Linux distributions.

Q: Is it advisable to remove Windows from a dual boot setup if I'm new to Linux?

A: Removing Windows from a dual boot setup requires some technical knowledge and understanding of partition management. If you are new to Linux, it is recommended to proceed with caution and seek guidance from experienced users or tutorials to ensure a smooth process and avoid potential issues.

Conclusion

This article has guided you through a detailed, step-by-step process to safely remove Windows from your dual-boot configuration, leaving Linux as the sole operating system on your machine.

Congratulations on successfully uninstalling Windows from your dual boot system! You can now enjoy the full benefits of Linux without any of the hassle of dual booting.

Once you remove Windows, you'll free up a significant amount of disk space. This space can be used to store your Linux files, or you can use it to install other operating systems.

We would love to hear about your experience and any challenges you encountered during the removal process. Please feel free to share your feedback and insights in the comment box below.

Related Read:

You May Also Like

6 comments

Dennis August 18, 2023 - 3:05 pm

Hi, i’m facing a problem when i try to delete the “Microsoft” dir in path /boot/efi/EFI/, when i list the EFI directory, the terminal says it doesn’t exist, i only see “ubuntu” and “boot”.
i tried to reboot the system, windows showed the “recovery “error, so i logged back in linux and runned the update-grub command, but the windows entry is still there, what can i do?

Reply
karthick August 20, 2023 - 11:41 pm

Dennis,

I did a testing once again on dual boot machine and I am able to repeat the same step shown in the article without any issues. Just want to check if u have installed Linux first and windows second.

Alternate way would be just allocate 20 – 30GB for windows C drive and remove everything from windows(Software, Files, Space) . Boot into Linux OS from the GRUB menu(default action) whenever the system boots.

Reply
Sourabh February 8, 2025 - 12:06 pm

My device came with windows as default operating system and used linux in dual boot. If I want to shift to linux completely, will it be enough to switch I follow the article step by step.

Reply
sk February 8, 2025 - 4:34 pm

Yes. I strongly recommend you to backup important data and then follow the tutorial. Good luck.

Reply
Sourabh February 8, 2025 - 9:08 pm

Thank you for the help. I have uninstalled windows. But I could not add the partition size to my ubuntu. I can see in my dock it is showing 2 SSD one with 32gb and other with 396gb. And the folder where all my data is present, is of 32gb how do I access that 396gb

Reply
sk February 10, 2025 - 1:13 pm

It looks like your 396GB partition is still unallocated or not mounted in Ubuntu. You need to check its status and mount or merge it properly. Please do the following steps only when you clearly know what you are doing. You might need an experienced person’s help.

First, backup all data to an external USB drive or Pen drive.

Next, Check the Partition Layout:

$ lsblk

This will show the available drives and partitions.

Look for the partition with 396GB. If it has no filesystem, you need to format it before use.

$ sudo mkfs.ext4 /dev/sdX

Replace sdX with the correct partition name (e.g., /dev/sdb1).

Next, Mount the Partition using commands:

$ sudo mkdir /mnt/newdrive

Replace /mnt/newdrive with your own mount point.

$ sudo mount /dev/sdX /mnt/newdrive

Then, you can access it in /mnt/newdrive.

To automatically mount it on every reboot, you should add the entry in fstab file.

Find its UUID:

$ sudo blkid

Note down the UUID.

Then, add an entry in /etc/fstab:

$ sudo nano /etc/fstab

Add this line at the end:

UUID=your-uuid /mnt/newdrive ext4 defaults 0 2

Save and exit.

Check mount points:

$ sudo mount -a

If it doesn’t return any errors, you’re good to go. Reboot your system and the partition will automatically mount.

For more details, look at the following guide.
https://ostechnix.com/mount-a-drive-permanently-in-linux-using-fstab/

If you want to merge the 396GB partition with your Ubuntu partition:

1. Use GParted (sudo apt install gparted && sudo gparted)
2. Delete the 396GB partition
3. Resize your Ubuntu partition to take the free space

Good luck.

Reply

Leave a Comment

* By using this form you agree with the storage and handling of your data by this website.

This site uses Akismet to reduce spam. Learn how your comment data is processed.

This website uses cookies to improve your experience. By using this site, we will assume that you're OK with it. Accept Read More