Skip to content

Basic installation of a Linux distro, explained for Arch.

Notifications You must be signed in to change notification settings

arksys-os/linux-install-guide

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 

Repository files navigation

🐧 Install Linux (beginner guide)

Short, practical, and designed for first‑time users.

🧭 1) Choose your install path

📥 2) Download the ISO

  • Get the ISO from the official website of your chosen distro.
  • Verify the checksum if the site provides it.

💾 3) Create a bootable USB

Use a GUI tool:

  • Windows: Rufus
  • Linux/macOS: BalenaEtcher
  • Multi‑ISO: Ventoy

Or use the CLI (Linux/macOS).

Replace /dev/sdb with your actual USB device.

sudo fdisk -l                                          # Find the disk
umount /dev/sdb*                                       # Unmount the disk
sudo mkfs.vfat /dev/sdb                                # Format the disk
sudo dd if=~/Downloads/arch.iso of=/dev/sdb bs=4M status=progress  # Write ISO

🔧 4) Boot and install

  1. Reboot and open the boot menu (often F12, Esc, or Del).
  2. Select the USB drive.
  3. Follow the installer prompts.
    • Choose language and keyboard.
    • Pick time zone and user account.
    • Use automatic partitioning if you are new.

✅ 5) First boot checklist

  • Update your system.
  • Install drivers if needed (GPU, Wi‑Fi).
  • Install basic apps you use daily.

📌 After install

🔗 References

About

Basic installation of a Linux distro, explained for Arch.

Resources

Stars

Watchers

Forks

Languages