OnixOS:Installation: Difference between revisions
Created blank page |
No edit summary |
||
Line 1: | Line 1: | ||
== 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 onixos.org'''. | |||
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 |
Revision as of 17:19, 11 March 2025
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 onixos.org. 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.