OnixOS:Installation

From OnixOS
Revision as of 22:28, 11 March 2025 by Tedaryum (talk | contribs) (Protected "OnixOS:Installation" ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite)))
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

OnixOS Installation Guide

OnixOS is a lightweight and flexible Linux distribution known for its simplicity and customization. This guide provides an overview of the installation process, covering both the automated `archinstall` script and the manual installation method.

Installation Methods

Using archinstall (Automated Installation)

The archinstall script is an official guided installer for OnixOS, simplifying the installation process.

Steps

Boot from the official OnixOS installation medium. Ensure internet connectivity with ping onix-project.com. Start the installer by running:

archinstall

Follow the interactive prompts to configure disk partitioning, user setup, and desktop environment. Complete the installation and reboot the system.

Manual Installation (Advanced Users)

For users who want full control over their system, manual installation provides a detailed setup process.

Steps

Boot the Installation Media: Load the OnixOS ISO and access the command line.

Verify Internet Connection: Use ping to check network connectivity.

Partition the Disk: Use tools like fdisk or parted to create partitions.

Format and Mount Partitions:

mkfs.ext4 /dev/sdX1
mount /dev/sdX1 /mnt

Install the Base System:

pacstrap /mnt base linux linux-firmware

Generate the Filesystem Table:

genfstab -U /mnt >> /mnt/etc/fstab

Chroot into the System:

arch-chroot /mnt

Configure System Settings: Set hostname, timezone, and locale.

Install Bootloader (e.g., GRUB):

pacman -S grub
grub-install --target=i386-pc /dev/sdX
grub-mkconfig -o /boot/grub/grub.cfg

Reboot and Login to the newly installed OnixOS system.

Source: https://wiki.archlinux.org/title/Installation_guide