Manjaro installation manual
Manjaro Installation Guide🔗
You'll need an Internet connection, laptop with some spare disk space, and a USB flash drive.
-
Download Manjaro
.iso
file with desktop manager of your choosing (XFCE, KDE Plasma, GNOME) -
Burn an
.iso
file to a USB drive:- Windows
- Using
rufus
- Download and install rufus.
- Choose an .iso file and a USB drive, burn it and accept the 'format' dialog.
- Using
- Linux
- CLI using
dd
- Check the list of your drives using
lsblk
before inserting your USB and after, remember its name. - Run
sudo dd bs=4M if=<iso_file> of=<device_name> conv=fdatasync status="progress"
. dd is a utility that allows to copy and move files, withif
representing input file, andof
- output file.bs
represents the number of bytes to write at a time, andconv
allows for safe finished file transfer.
- Check the list of your drives using
- Using
etcher
- Choose the file to burn, choose the drive and let it do its job.
- CLI using
- MacOS
- Have no idea. Is anyone using it anyway?
- Windows
-
Free up some space (can skip this step if you have an empty drive)
-
Create a new partition with all the free space (if you want to have a dual-boot)
- Shrink your Windows partition with the native 'Partition' app
-
Install the operating system on the new partition
-
Turn your laptop off and insert the USB drive, enter BIOS mode (by repeatedly tapping
esc
orf1-f5
keys) and boot from the USB drive. -
Press
enter
and wait for the system to load, open the install manager, select all the settings you require. -
On the partitioning stage, choose
manual partitioning
and create a new GPT partition table, if needed. Afterwards, split the free space into:- Create a
boot/efi
partition. File system: FAT32, Mount point: /boot/efi, Flags: boot, Size: 512mib - Create a
root
partition, all your main programs are going to be located here. File system: ext4, Mount point: /, Flags: none, Size: 20-30gb - Create a
swap
partition. File system: linuxswap, Flags: swap, Size: the same size as your RAM - Create a
home
partition. File system: ext4, Mount point: /home, Flags: none, Size: all the rest of the space, for a minimum of 20gb
- Create a
-
Choose
next
and proceed with the installation. After it asks to restart, accept and pull the USB drive out once your laptop turns off. -
Install necessary packages for AUR usage
sudo pacman -Syy sudo pacman -S fakeroot binutils patch
- Update the system (we recommend you do that at least once a week)
sudo pacman -Syu
- You should be all set! Proceed to programs list, resources and useful links docs.
-