Installing Ubuntu 24.04 Next to Windows 11 on a Dell XPS 17 (9710) with 2TB SSD
In this article, we will cover the process of installing Ubuntu 24.04 alongside Windows 11 on a Dell XPS 17 (9710) equipped with a 2TB SSD. We will focus on disk management and the values of deleting 700GB of files to make space for the new operating system. The article will be at least 800 words long and will cover key concepts related to the topic, including subtitles and detailed explanations.
Preparing the Disk for Ubuntu Installation
Before installing Ubuntu, it is essential to prepare the disk by deleting unnecessary files and partitions. In this case, we will delete 700GB of files to make space for Ubuntu. Here are the steps to follow:
- Open the Disk Management tool by typing "diskmgmt.msc" in the Windows search bar.
- Identify the partition with 700GB of free space and right-click on it.
- Select "Delete Volume" to remove the partition.
- Once the partition is deleted, right-click on the unallocated space and select "New Simple Volume" to create a new partition.
- Follow the on-screen instructions to format the new partition with the NTFS file system.
Downloading and Creating a Bootable USB Drive
After preparing the disk, the next step is to download Ubuntu 24.04 and create a bootable USB drive. Here are the steps to follow:
- Download Ubuntu 24.04 from the official website.
- Use a tool like Rufus to create a bootable USB drive with the Ubuntu ISO file.
- Insert the USB drive into the Dell XPS 17 (9710) and restart the computer.
- Press F12 during the boot process to access the boot menu and select the USB drive as the boot device.
Installing Ubuntu 24.04
After creating the bootable USB drive, the next step is to install Ubuntu 24.04. Here are the steps to follow:
- Select "Install Ubuntu" from the boot menu.
- Choose the language and keyboard layout.
- Select "Something else" when prompted to choose the installation type.
- Identify the partition created in the previous section and select it.
- Choose "Ext4 journaling file system" as the file system and "/" as the mount point.
- Select "Done" to proceed with the installation.
- Follow the on-screen instructions to complete the installation process.
In this article, we covered the process of installing Ubuntu 24.04 alongside Windows 11 on a Dell XPS 17 (9710) equipped with a 2TB SSD. We focused on disk management and the values of deleting 700GB of files to make space for the new operating system. By following the steps outlined in this article, you can successfully install Ubuntu 24.04 on your Dell XPS 17 (9710) without formatting the entire C drive.
References
#!/bin/bash
# This script will partition the disk and install Ubuntu 24.04 alongside Windows 11
# Step 1: Delete unnecessary files and partitions
diskpart
select disk 0
list partition
select partition X
delete partition
create partition primary size=Y
format fs=ntfs label="Ubuntu Partition" quick
exit
# Step 2: Download Ubuntu 24.04 and create a bootable USB drive
# Use a tool like Rufus to create a bootable USB drive with the Ubuntu ISO file
# Step 3: Install Ubuntu 24.04
sudo apt update
sudo apt install ubiquity
ubiquity -b