Arch
1. Distro Selection
If you’re interested in trying an Arch-based system but want something easier to get started with, I’d suggest EndeavourOS. It gives you the Arch experience with just a few helpful extras , like a graphical installer and a helpful community.
If you’ve never used Linux before and aren’t willing to read documentation or troubleshoot issues, Arch or Arch-based distributions may not be the best starting point.
3. Installation Process
3.1 Download the ISO
Download the latest EndeavourOS ISO from the official website: https://endeavouros.com
3.2 Create Bootable USB
Download and open Rufus.
Select "ISO Image" and choose the EndeavourOS ISO.
Insert your USB drive and select it in Rufus.
Set the Partition Scheme to GPT.
Click Start and wait for the process to complete.
Safely eject the USB drive after completion.
3.3 Partitioning
Open Disk Management in Windows.
Locate your C: drive, right-click, and select Shrink Volume.
Shrink the volume by at least 50 GB (recommended).
Leave the space unallocated; do not create a new volume.
3.4 BIOS Setup
Reboot your system and press
F2
.Disable Secure Boot.
Set your USB drive as the first boot device.
Save changes and exit BIOS.
3.5 Begin Installation
Once you're in the live session:
Connect to the internet using Wi-Fi or Ethernet.
Launch the installer from the taskbar.
Choose the Online Installation method.
Guided Installer Walkthrough
Language, Location, and Keyboard Choose your preferred language, region, and keyboard layout.
Desktop Environment Select a desktop environment:
GNOME (macOS-like)
KDE Plasma (Windows-like) (The live session uses KDE by default.)
Packages Leave the default selection unless you have specific requirements.
Bootloader Select GRUB.
Disk Setup
For single-boot: Select Erase Disk, then choose Swap with Hibernate.
For dual boot: Select Replace a Partition and choose the unallocated space.
User Setup Enter your full name, username, and password.
Summary Review all settings. If everything looks correct, click Install.
Wait for the installation to complete, then reboot.
3.6 Complete Setup
Exit the Live Environment.
Remove the USB drive.
Your system should now boot into Linux or display a bootloader menu if dual booting.
4. Uninstalling Linux
4.1 For Dual Boot Systems
Open Disk Management and delete the Linux partitions.
Open Command Prompt as Administrator, then run:
diskpart
select disk X # Replace X with your actual disk number
list partition
select partition 1 # EFI partition is usually number 1
assign letter=Z
In a new Command Prompt window:
cd /d Z:\EFI
dir
rd /s /q endeavouros # Replace with your distro`s name
Return to the first terminal and run:
remove letter=Z
Reboot your system. You should now boot directly into Windows.
4.2 For Standalone Linux Installations
Boot using a Windows installation USB.
Press
Shift + F10
to open Command Prompt.Run the following commands:
diskpart
select disk X # Replace X with the correct disk number
clean
exit
Proceed with installing Windows normally.
Last updated