Skip to content

Instantly share code, notes, and snippets.

@seagalputra
Created January 6, 2020 09:18
Show Gist options
  • Save seagalputra/d4855d722bec43f4770465d76f243f8d to your computer and use it in GitHub Desktop.
Save seagalputra/d4855d722bec43f4770465d76f243f8d to your computer and use it in GitHub Desktop.

Manjaro Installation

Using the CLI

  1. Connect the USB flash drive to your PC, open a terminal and cd to where you downloaded the disc image.

  2. Check the device identifier with: sudo fdisk -l

  3. Write the image with: sudo dd if=manjaro-xfce-18.0-stable-x86_64.iso of=/dev/(Device identifier from above) bs=4M

    My USB drive is at /dev/sdc so I would use: sudo dd if=manjaro-xfce-18.0-stable-x86_64.iso of=/dev/sdc bs=4M

    To view how to writing process progresses, use the option status=progress: sudo dd if=manjaro-xfce-18.0-stable-x86_64.iso of=/dev/sdc bs=4M status=progress

  4. Once completed reboot your system and boot from the USB drive by selecting it as the boot device in the BIOS menu (or its UEFI equivalent).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment