Beginners' Guide: Related Articles
Beginners' Guide: Related Articles
Beginners' Guide: Related Articles
Beginners' guide
From ArchWiki
This document will guide you through the process of Related articles
installing Arch Linux using the Arch Install Scripts
(https://projects.archlinux.org/arch-install-scripts.git/). Category:Accessibility
Before installing, you are advised to skim over the FAQ.
Help:Reading
The community-maintained ArchWiki is the primary resource Installation guide
that should be consulted if issues arise. The IRC channel
(irc://irc.freenode.net/#archlinux) and the forums General
recommendations
(https://bbs.archlinux.org/) are also excellent resources if an
answer cannot be found elsewhere. In accordance with the General
Arch Way, you are encouraged to type man command to read the troubleshooting
man page of any command you are unfamiliar with.
Contents
1 Preparation
2 Boot the installation medium
2.1 UEFI mode
2.2 Set the keyboard layout
2.3 Connect to the Internet
2.4 Update the system clock
3 Prepare the storage devices
3.1 Identify the devices
3.2 Partition table types
3.3 Partitioning tools
3.3.1 Using parted in interactive mode
3.4 Create new partition table
3.5 Partition schemes
3.5.1 UEFI/GPT examples
3.5.2 BIOS/MBR examples
3.6 Format the file systems and enable swap
4 Installation
4.1 Select the mirrors
4.2 Install the base packages
5 Configuration
5.1 fstab
5.2 Change root
5.3 Locale
5.4 Time
5.5 Initramfs
5.6 Install a boot loader
5.6.1 UEFI/GPT
5.6.2 BIOS/MBR
1 of 14 05/03/2016 10:19 AM
Beginners' guide - ArchWiki https://wiki.archlinux.org/index.php/beginners'_...
Preparation
Arch Linux should run on any i686 compatible machine with a minimum of 256 MB
RAM. A basic installation with all packages from the base (https://www.archlinux.org
/groups/x86_64/base/) group should take less than 800 MB of disk space.
When the Arch menu appears, select Boot Arch Linux and press Enter to enter the
installation environment. See README.bootparams (https://projects.archlinux.org
/archiso.git/tree/docs/README.bootparams) for a list of boot parameters.
You will be logged in as the root user and presented with a Zsh shell prompt. Zsh
provides advanced tab completion (http://zsh.sourceforge.net/Guide
/zshguide06.html) and other features as part of the grml config (http://grml.org
/zsh/). For modifying or creating configuration files, typically in /etc , nano and vim
are suggested.
UEFI mode
In case you have a UEFI motherboard with UEFI mode enabled, the CD/USB will
automatically launch Arch Linux via systemd-boot (http://www.freedesktop.org
/wiki/Software/systemd/systemd-boot/).
To verify you are booted in UEFI mode, check that the following directory is
populated:
# ls /sys/firmware/efi/efivars
2 of 14 05/03/2016 10:19 AM
Beginners' guide - ArchWiki https://wiki.archlinux.org/index.php/beginners'_...
The default console keymap is set to us. Available choices can be listed with
ls /usr/share/kbd/keymaps/**/*.map.gz .
# loadkeys de-latin1
# setfont lat9w-16
Wired
The dhcpcd daemon is enabled on boot for wired devices, and will attempt to start
a connection. To access captive portal login forms, use the ELinks browser.
Verify a connection was established, for example with ping. If none is available,
proceed to configure the network; the examples below use netctl to this purpose.
To prevent conflicts, stop the dhcpcd service (replacing enp0s25 with the correct
wired interface):
Interfaces can be listed using ip link , or iw dev for wireless devices. They are
prefixed with en (ethernet), wl (WLAN), or ww (WWAN).
Wireless
# wifi-menu -o wlp2s0
The resulting configuration file is stored in /etc/netctl . For networks which require
both a username and password, see WPA2 Enterprise#netctl.
Other
Several example profiles, such as for configuring a static IP address, are available.
Copy the required one to /etc/netctl , for example ethernet-static :
# cp /etc/netctl/examples/ethernet-static /etc/netctl
3 of 14 05/03/2016 10:19 AM
Beginners' guide - ArchWiki https://wiki.archlinux.org/index.php/beginners'_...
Use systemd-timesyncd to ensure that your system clock is accurate. To start it:
Warning:
In this step, the storage devices that will be used by the new system will be
prepared. Read Partitioning for a more general overview.
Users intending to create stacked block devices for LVM, disk encryption or RAID,
should keep those instructions in mind when preparing the partitions. If intending
to install to a USB flash key, see Installing Arch Linux on a USB key.
The first step is to identify the devices where the new system will be installed. The
following command will show all the available devices:
# lsblk
This will list all devices connected to your system along with their partition
schemes, including that used to host and boot live Arch installation media (e.g. a
USB drive). Not all devices listed will therefore be viable or appropriate mediums
for installation. Results ending in rom , loop or airoot can be ignored.
Devices (e.g. hard disks) will be listed as sdx , where x is a lower-case letter
starting from a for the first device ( sda ), b for the second device ( sdb ), and so on.
Existing partitions on those devices will be listed as sdxY , where Y is a number
starting from 1 for the first partition, 2 for the second, and so on. In the example
below, only one device is available ( sda ), and that device has only one partition
4 of 14 05/03/2016 10:19 AM
Beginners' guide - ArchWiki https://wiki.archlinux.org/index.php/beginners'_...
( sda1 ):
The sdxY convention will be used in the examples provided below for partition
tables, partitions, and file systems. As they are just examples, it is important to
ensure that any necessary changes to device names, partition numbers, and/or
partition sizes (etc.) are made. Do not just blindly copy and paste the commands.
If the existing partition scheme does not need to be changed, skip to #Format the
file systems and enable swap, otherwise continue reading the following section.
GPT
MBR
Any existing partition table can be identified with the following command for each
device:
Partitioning tools
Warning: Using a partitioning tool that is incompatible with your partition table
type will likely result in the destruction of that table, along with any existing
partitions/data.
For each device to be partitioned, a proper tool must be chosen according to the
partition table to be used. Several partitioning tools are provided by the Arch
installation medium, including:
Devices may also be partitioned before booting the installation media, for example
through tools such as GParted (also provided as a live CD
(http://gparted.sourceforge.net/livecd.php)).
5 of 14 05/03/2016 10:19 AM
Beginners' guide - ArchWiki https://wiki.archlinux.org/index.php/beginners'_...
All the examples provided below make use of parted, as it can be used for both
UEFI/GPT and BIOS/MBR. It will be launched in interactive mode, which simplifies
the partitioning process and reduces unnecessary repetition by automatically
applying all partitioning commands to the specified device.
# parted /dev/sdx
You will notice that the command-line prompt changes from a hash ( # ) to (parted) :
this also means that the new prompt is not a command to be manually entered
when running the commands in the examples.
(parted) help
(parted) quit
You need to (re)create the partition table of a device when it has never been
partitioned before, or when you want to change the type of its partition table.
Recreating the partition table of a device is also useful when the partition scheme
needs to be restructured from scratch.
# parted /dev/sdx
To then create a new GPT partition table for UEFI systems, use the following
command:
To create a new MBR/msdos partition table for BIOS systems instead, use:
Partition schemes
You can decide the number and size of the partitions the devices should be split
into, and which directories will be used to mount the partitions in the installed
system (also known as mount points). The mapping from partitions to directories is
6 of 14 05/03/2016 10:19 AM
Beginners' guide - ArchWiki https://wiki.archlinux.org/index.php/beginners'_...
the partition scheme, which must comply with the following requirements:
# parted /dev/sdx
Tip: Most Linux native file systems map to the same partition code (0x83),
so it is perfectly safe to e.g. use ext2 for an ext4-formatted partition.
start is the beginning of the partition from the start of the device. It consists
of a number followed by a unit (http://www.gnu.org/software/parted/manual
/parted.html#unit), for example 1M means start at 1MiB.
end is the end of the partition from the start of the device (not from the start
value). It has the same syntax as start , for example 100% means end at the
end of the device (use all the remaining space).
Warning: It is important that the partitions do not overlap each other: if you do
not want to leave unused space in the device, make sure that each partition
starts where the previous one ends.
Warning: The resulting partition is not properly aligned for best performance.
Ignore/Cancel?
7 of 14 05/03/2016 10:19 AM
Beginners' guide - ArchWiki https://wiki.archlinux.org/index.php/beginners'_...
The following command will be used to flag the partition that contains the /boot
directory as bootable:
partition is the number of the partition to be flagged (see the output of the
print command).
UEFI/GPT examples
If creating a new EFI System Partition, use the following commands (a size of
512MiB is suggested):
The remaining partition scheme is entirely up to you. For one other partition using
100% of remaining space:
And for separate / (20GiB), swap (4GiB), and /home (all remaining space)
partitions:
BIOS/MBR examples
For a minimum single primary partition using all available disk space, the
following command would be used:
8 of 14 05/03/2016 10:19 AM
Beginners' guide - ArchWiki https://wiki.archlinux.org/index.php/beginners'_...
In the final example below, separate /boot (100MiB), / (20GiB), swap (4GiB), and
/home (all remaining space) partitions will be created:
Once the partitions have been created, each must be formatted with an
appropriate file system, except for swap partitions. All available partitions on the
intended installation device can be listed with the following command:
# lsblk /dev/sdx
With the exceptions noted below, it is recommended to use the ext4 file system:
# mkfs.ext4 /dev/sdxY
If a swap partition has been created, it must be set up and activated with:
# mkswap /dev/sdxY
# swapon /dev/sdxY
Mount the root partition to the /mnt directory of the live system:
Remaining partitions (except swap) may be mounted in any order, after creating
the respective mount points. For example, when using a /boot partition:
# mkdir -p /mnt/boot
# mount /dev/sdxZ /mnt/boot
If a new UEFI system partition has been created on a UEFI/GPT system, it must
be formatted with a fat32 file system:
9 of 14 05/03/2016 10:19 AM
Beginners' guide - ArchWiki https://wiki.archlinux.org/index.php/beginners'_...
Installation
Select the mirrors
The higher a mirror is placed in the list, the more priority it is given when
downloading a package. You may want to edit the file accordingly, and move the
geographically closest mirrors to the top of the list, although other criteria should
be taken into account. See Mirrors for details.
pacstrap will also install a copy of this file to the new system, so it is worth getting
right.
The pacstrap script installs the base system. To build packages from the AUR or
with ABS, the base-devel (https://www.archlinux.org/groups/x86_64/base-devel/) group is
also required.
Configuration
fstab
Generate an fstab file. The -U option indicates UUIDs: see Persistent block device
naming. Labels can be used instead through the -L option.
Check the resulting file in /mnt/etc/fstab afterwards, and edit it in case of errors.
Change root
Copy any other configuration files to the new system in /mnt (such as netctl
profiles in /etc/netctl ), then chroot to it:
10 of 14 05/03/2016 10:19 AM
Beginners' guide - ArchWiki https://wiki.archlinux.org/index.php/beginners'_...
Locale
The Locale defines which language the system uses, and other regional
considerations such as currency denomination, numerology, and character sets.
# locale-gen
/etc/locale.conf
LANG=en_US.UTF-8
If you set the keyboard layout, make the changes persistent in /etc/vconsole.conf .
For example, if de-latin1 was set with loadkeys, and lat9w-16 with setfont, assign
the KEYMAP and FONT variables accordingly:
/etc/vconsole.conf
KEYMAP=de-latin1
FONT=lat9w-16
Time
# tzselect
Create the symbolic link /etc/localtime , where Zone/Subzone is the TZ value from
tzselect:
# ln -s /usr/share/zoneinfo/Zone/SubZone /etc/localtime
It is recommended to adjust the time skew, and set the time standard to UTC:
If other operating systems are installed on the machine, they must be configured
accordingly. See Time for details.
Initramfs
11 of 14 05/03/2016 10:19 AM
Beginners' guide - ArchWiki https://wiki.archlinux.org/index.php/beginners'_...
# mkinitcpio -p linux
See Boot loaders for available choices and configurations. If you have an Intel
CPU, install the intel-ucode (https://www.archlinux.org/packages/?name=intel-ucode)
package, and enable microcode updates.
UEFI/GPT
Here, the installation drive is assumed to be GPT-partioned, and have the EFI
System Partition (gdisk type EF00 , formatted with FAT32) mounted at /boot .
# bootctl install
BIOS/MBR
Generate grub.cfg :
# grub-mkconfig -o /boot/grub/grub.cfg
The procedure is similar to #Connect to the Internet, except made persistent for
12 of 14 05/03/2016 10:19 AM
Beginners' guide - ArchWiki https://wiki.archlinux.org/index.php/beginners'_...
Hostname
/etc/hostname
myhostname
Wired
When only requiring a single wired connection, enable the dhcpcd service:
Wireless
If you used wifi-menu priorly, repeat the steps after finishing the rest of this
installation and rebooting, to prevent conflicts with the existing processes.
Root password
# passwd
13 of 14 05/03/2016 10:19 AM
Beginners' guide - ArchWiki https://wiki.archlinux.org/index.php/beginners'_...
# umount -R /mnt
If the partition is "busy", you can find the cause with fuser. Reboot the computer.
# reboot
Remove the installation media, or you may boot back into it. You can log into your
new installation as root, using the password you specified with passwd.
Post-installation
Your new Arch Linux base system is now a functional GNU/Linux environment
ready to be built into whatever you wish or require for your purposes. You are now
strongly advised to read the General recommendations article, especially the first
two sections. Its other sections provide links to post-installation tutorials like
setting up a graphical user interface, sound or a touchpad.
14 of 14 05/03/2016 10:19 AM