Skip to content
This repository was archived by the owner on Mar 2, 2021. It is now read-only.

Latest commit

 

History

History
25 lines (20 loc) · 1000 Bytes

Arch-Linux-Setup.md

File metadata and controls

25 lines (20 loc) · 1000 Bytes

Pre Installation

Prepare the Bootable USB

  • Acquire the installation image (*.iso* file) here

    Further information about the image acquisition can be seen here.

  • Find out the name of the USB drive using the following command.

    $ sudo fdisk -l
  • If it is mounted, unmount it using the following command, replace /dev/sdxn with the drive partition:

    $ sudo umount /dev/sdxn
  • Copy the installation image data to the USB using the following command, replace /dev/sdx with the USB drive:

    $ dd bs=4M if=path/to/archlinux.iso of=/dev/sdx status=progress oflag=sync

    Further information about the USB preparation can be seen here

  • Wait until the process finished.

Installation

Post Installation