Difference between revisions of "Beginners' guide"
(→Select installation mirror: repetition) |
Thestinger (talk | contribs) (→Locale: add note about locale.conf permissions) |
||
Line 494: | Line 494: | ||
To use other {{ic|LC_*}} variables, first run {{ic|locale}} to see the available options. An advanced example can be found [[Locale#Setting_system-wide_locale|here]]. | To use other {{ic|LC_*}} variables, first run {{ic|locale}} to see the available options. An advanced example can be found [[Locale#Setting_system-wide_locale|here]]. | ||
+ | |||
+ | {{Note|{{ic|locale.conf}} must be readable by regular users, it is simply read by login shells at the moment.}} | ||
{{Warning|Using the {{ic|LC_ALL}} variable is strongly discouraged because it overrides everything.}} | {{Warning|Using the {{ic|LC_ALL}} variable is strongly discouraged because it overrides everything.}} |
Revision as of 07:51, 3 September 2012
zh-CN:Beginners' Guide/Installation
Contents
- 1 Installation
- 1.1 Change the keymap
- 1.2 Establish an internet connection
- 1.3 Prepare the storage drive
- 1.4 Mount the partitions
- 1.5 Select installation mirror
- 1.6 Install the base system
- 1.7 Generate an fstab
- 1.8 Chroot into the system
- 1.9 Configure the base system
- 1.10 Configure the network
- 1.11 Create an initial ramdisk environment
- 1.12 Install and configure a bootloader
- 1.13 Root password
- 1.14 Unmount the partitions and reboot
Installation
You are now presented with a shell prompt, automatically logged in as root.
Change the keymap
By default, the keyboard layout is set to us
. If you have a non-US keyboard layout, run:
# loadkeys layout
...where layout can be fr
, uk
, be-latin1
, etc. See here for a comprehensive list.
Template:Keypress activates it.
Don't worry if some of the letters show up as white squares or as other symbols. It's probably just the console font missing those glyphs. The glyph codes are correct and if you press the correct keys they will show up fine when (or if) you set up a graphical environment later.
Establish an internet connection
The dhcpcd
network daemon is started automatically at boot and it will attempt to start a wired connection, if available. Try pinging a website to see if it was successful. And since Google is always on...
# ping -c 3 www.google.com
PING www.l.google.com (74.125.132.105) 56(84) bytes of data. 64 bytes from wb-in-f105.1e100.net (74.125.132.105): icmp_req=1 ttl=50 time=17.0 ms 64 bytes from wb-in-f105.1e100.net (74.125.132.105): icmp_req=2 ttl=50 time=18.2 ms 64 bytes from wb-in-f105.1e100.net (74.125.132.105): icmp_req=3 ttl=50 time=16.6 ms --- www.l.google.com ping statistics --- 3 packets transmitted, 3 received, 0% packet loss, time 2003ms rtt min/avg/max/mdev = 16.660/17.320/18.254/0.678 ms
If you get a ping: unknown host
error, you will need to set up the network manually, as explained below.
Otherwise, move on to Prepare the storage drive.
Wired
Follow this procedure if you need wired connectivity (Ethernet) during the installation process.
If your computer is connected to an Ethernet network, in most cases, you will have one interface, called eth0
. If you have additional network cards (apart from the one integrated on the motherboard, for example), their name will follow the sequence eth1
, eth2
, etc.
You need to know these settings:
- Static IP address.
- Subnet mask.
- Gateway's IP address.
- Name servers' (DNS) IP addresses.
- Domain name (unless you're on a local LAN, in which case you can make it up).
Activate the connected Ethernet interface, e.g. for eth0
:
# ip link set eth0 up
Add the address:
# ip addr add <ip address>/<subnetmask> dev <interface>
For example:
# ip addr add 192.168.1.2/24 dev eth0
For more options, run man ip
.
Add your gateway like this, substituting your own gateway's IP address:
# ip route add default via <ip address>
For example:
# ip route add default via 192.168.1.1
Edit resolv.conf
, substituting your name servers' IP addresses and your local domain name:
# nano /etc/resolv.conf
nameserver 61.23.173.5 nameserver 61.95.849.8 search example.com
nameserver
lines.You should now have a working network connection. If you do not, check the detailed Configuring Network page.
Wireless
Follow this procedure if you need wireless connectivity (WiFi) during the installation process.
The wireless drivers and utilities are now available to you in the live environment of the installation media. A good knowledge of your wireless hardware will be of key importance to successful configuration. Note that the following quick-start procedure executed at this point in the installation will initialize your wireless hardware for use in the live environment of the installation media. These steps (or some other form of wireless management) must be repeated from the actual installed system after booting into it.
Also note that these steps are optional if wireless connectivity is unnecessary at this point in the installation; wireless functionality may always be established later.
wlan0
for the interface and linksys
for the ESSID. Remember to change these values according to your setup.The basic procedure will be:
- (optional) Identify the wireless interface:
# lspci | grep -i net
Or, if using a USB adapter:
# lsusb
- Ensure udev has loaded the driver, and that the driver has created a usable wireless kernel interface with
iwconfig
:
# iwconfig
lo no wireless extensions. eth0 no wireless extensions. wlan0 unassociated ESSID:"" Mode:Managed Channel=0 Access Point: Not-Associated Bit Rate:0 kb/s Tx-Power=20 dBm Sensitivity=8/0 Retry limit:7 RTS thr:off Fragment thr:off Power Management:off Link Quality:0 Signal level:0 Noise level:0 Rx invalid nwid:0 Rx invalid crypt:0 Rx invalid frag:0 Tx excessive retries:0 Invalid misc:0 Missed beacon:0
wlan0
is the available wireless interface in this example.
- Bring the interface up with:
# ip link set wlan0 up
A small percentage of wireless chipsets also require firmware, in addition to a corresponding driver. If the wireless chipset requires firmware, you are likely to receive this error when bringing the interface up:
# ip link set wlan0 up
SIOCSIFFLAGS: No such file or directory
If unsure, invoke dmesg
to query the kernel log for a firmware request from the wireless chipset.
Example output from an Intel chipset which requires and has requested firmware from the kernel at boot:
# dmesg | grep firmware
firmware: requesting iwlwifi-5000-1.ucode
If there is no output, it may be concluded that the system's wireless chipset does not require firmware.
/usr/lib/firmware
in the live environment (on CD/USB stick) but must be explicitly installed to your actual system to provide wireless functionality after you reboot into it! Package installation is covered later in this guide. Ensure installation of both your wireless module and firmware before rebooting! See Wireless Setup if you are unsure about the requirement of corresponding firmware installation for your particular chipset. This is a very common error.Next, use netcfg's wifi-menu to connect to a network:
# wifi-menu
You should now have a working network connection. If you do not, check the detailed Wireless Setup page.
xDSL (PPPoE), analog modem or ISDN
If you have a modem or a router in bridge mode, run:
# pppoe-setup
- Type in the username that the ISP provided you with.
- Press Template:Keypress for "eth0".
- Press Template:Keypress for "no", so that it stays up continuously.
- Type
server
(since this is usually the case). - Press Template:Keypress for a firewall.
- Type in the password that the ISP provided you with.
- Press Template:Keypress at the end.
To use these settings and connect to your ISP, run:
# pppoe-start
For an analog modem, see Direct Modem Connection.
Behind a proxy server
If you are behind a proxy server, you will need to export the http_proxy
and ftp_proxy
environment variables. Click here for more information.
Prepare the storage drive
Absolute beginners are encouraged to use a graphical partitioning tool. GParted is a good example, ran from a "live" Linux distribution such as Parted Magic, Ubuntu, Linux Mint, etc. See Partitioning for some general tips and make sure to format the partitions with a filesystem (e.g. ext4, btrfs, etc) before rebooting.
If you have already done so, proceed to Mount the partitions.
Otherwise, see the following example.
Example
The Arch Linux install media includes the following partitioning tools:
- parted – supports both.
This example uses cfdisk, but it can be easily followed using gdisk, which will allow for GPT partitioning.
# cfdisk /dev/sda
The example system will contain a 15GB root (/
) partition, a 1GB swap
partition, and a /home
partition for the remaining space.
It should be emphasized that partitioning is a personal choice and that this example is only for illustrative purposes. See Partitioning.
- Root
- Choose New (or press Template:Keypress).
- Press Template:Keypress for Primary.
- Type "15440".
- Press Template:Keypress for Beginning.
- Press Template:Keypress for Bootable.
- Swap
- Press the down arrow to move to the free space area and choose New (or press Template:Keypress).
- Press Template:Keypress for Primary.
- Type "1024".
- Press Template:Keypress for Beginning.
- Choose Type (or press Template:Keypress).
- Press any key to scroll down the list.
- Press Template:Keypress for
82
.
- Home
- Press the down arrow to move to the free space area and choose New (or press Template:Keypress).
- Press Template:Keypress for Primary.
- Press Template:Keypress to use the rest of the drive (or you could type in the desired size).
Here's how it should look like:
Name Flags Part Type FS Type [Label] Size (MB) ----------------------------------------------------------------------- sda1 Boot Primary Linux 15440 sda2 Primary Linux swap / Solaris 1024 sda3 Primary Linux 133000*
Double check and make sure that you are happy with the partition sizes as well as the partition table layout before continuing.
If you would like to start over, you can simply select Quit (or press Template:Keypress) to quit without saving changes and then restart cfdisk.
If you are satisfied, choose Write (or press Template:Keypress) to finalize and to write the partition table to the drive. Type "yes" and choose Quit (or press Template:Keypress) to exit cfdisk without making any more changes.
Simply partitioning is not enough; the partitions also need a filesystem. To format the partitions with an ext4 filesystem:
# mkfs.ext4 /dev/sda1 # mkfs.ext4 /dev/sda3
Format and activate the swap partition:
# mkswap /dev/sda2 # swapon /dev/sda2
Mount the partitions
Each partition is identified with a number suffix. For example, sda1
specifies the first partition of the first drive, while sda
designates the entire drive.
To see the current drive identities and layout:
# fdisk -l
Pay attention, because the mounting order is important.
First, mount the root partition on /mnt
. Following the example above (yours may be different), it would be:
# mount /dev/sda1 /mnt
Then mount any other separate partition (/home, /boot, /var, etc), if you have any:
# mkdir /mnt/home # mount /dev/sda3 /mnt/home # mkdir /mnt/boot # mount /dev/sdaY /mnt/boot
Select installation mirror
Before installing, you may want to edit the mirrorlist
file and place your preferred mirror first. A copy of this file will be installed on your new system by pacstrap
as well, so it's worth getting it right.
# nano /etc/pacman.d/mirrorlist
## ## Arch Linux repository mirrorlist ## Sorted by mirror score from mirror status page ## Generated on 2012-MM-DD ## ## Score: #, Country Server = http://mirror.example.xyz/archlinux/$repo/os/$arch ...
- Template:Keypress to copy a
Server
line. - Template:Keypress key to scroll up.
- Template:Keypress to paste it at the top of the list.
If you want, you can make it the only mirror available by getting rid of everything else (using Template:Keypress), but it's usually a good idea to have a few more, in case the first one goes offline.
Install the base system
The base system is installed using the pacstrap script.
# pacstrap /mnt base base-devel
- base: Software packages from the [core] repo to provide the minimal base environment.
- base-devel: Extra tools from [core] such as
make
, andautomake
. Most beginners should choose to install it, as it will likely be needed to expand the system. The base-devel group will be required to install software from the Arch User Repository.
This will give you a basic Arch system. Other packages can be installed later using pacman.
Generate an fstab
Generate an fstab file with the following command. If you prefer to use UUIDs or labels, add the -U
or -L
option, respectively. It's also a good idea to check it before continuing:
# genfstab -p /mnt >> /mnt/etc/fstab # nano /mnt/etc/fstab
Only the "/" partition needs "1" for the last field. Everything else should have "2" or "0" (see Field definitions).
Chroot into the system
Next we chroot into our newly installed system.
# arch-chroot /mnt
Configure the base system
At this stage of the installation, you will configure the primary configuration files of your Arch Linux base system.
/etc/rc.conf
is the configuration file for Arch's initscripts, and in the past used to also contain configurations for other parts of the system. Unless you are using an alternate init system like systemd, this file specifies which daemons to start during boot-up and some networking and storage information.
rc.conf
for system configuring still works (for now) with the default init system, but the new configuration files take precedence and using them is recommended. The new files will also work for configuring systemd.Configuration | Configuration file(s) | Legacy rc.conf section |
---|---|---|
Hostname | /etc/hostname
|
NETWORKING
|
Console fonts and keymap | /etc/vconsole.conf
|
LOCALIZATION
|
Locale | /etc/locale.conf
|
LOCALIZATION
|
Timezone | /etc/timezone
|
LOCALIZATION
|
Hardware clock | /etc/adjtime
|
LOCALIZATION
|
Kernel modules | /etc/modules-load.d/
|
HARDWARE
|
Daemons | /etc/rc.conf
|
DAEMONS
|
Wired network | /etc/rc.conf
|
NETWORKING
|
Configuration files can be created if they do not exist, or edited if you wish to change the defaults.
For this, you can use the editor Nano. Press Template:Keypress and when prompted to save changes, press Template:Keypress and Template:Keypress to use the same filename, or you can press Template:Keypress to exit without saving.
Hostname
Add your hostname in /etc/hostname
:
# echo myhostname > /etc/hostname
Set it to your liking (e.g. arch). This is the name of your computer. And add it to /etc/hosts
, as well:
localhost
and your actual hostname, is required for program compatibility. Errors in these entries may cause poor network performance and/or certain programs to open very slowly, or not work at all.# nano /etc/hosts
127.0.0.1 localhost.localdomain localhost myhostname ::1 localhost.localdomain localhost myhostname #192.168.1.100 myhostname.domain.org myhostname #Uncomment if you use a static IP and remove this comment.
::1
is the IPv6 equivalent of 127.0.0.1
and should be added./etc/hosts
aliases for hosts on your network, and/or on the Web.
192.168.1.90 media 192.168.1.88 dataThe above example would allow you access a media and data server on your network by name and without the need for typing out their respective IP addresses.
Console fonts and keymap
To edit vconsole.conf
:
# nano /etc/vconsole.conf
KEYMAP=us FONT= FONT_MAP=
-
KEYMAP
– If you want, you can use the one from the beginning of the install process: Change the keymap, but the default (us
) is fine for the vast majority of keyboards. Please note that this setting is only valid for your TTYs, not any graphical window managers or Xorg.
-
FONT
– Available alternate console fonts reside in/usr/share/kbd/consolefonts/
. The default (blank) is safe.
-
FONT_MAP
– Defines the console map to load with the setfont program at boot. Possible maps are found in/usr/share/kbd/consoletrans
, if needed. The default (blank) is safe.
See Console fonts and man vconsole.conf
for more information.
Timezone
Available time zones and subzones can be found in the /usr/share/zoneinfo/<Zone>/<SubZone>
directories.
To view the available <Zone>, check the directory /usr/share/zoneinfo/
:
# ls /usr/share/zoneinfo/
Similarly, you can check the contents of directories belonging to a <SubZone>:
# ls /usr/share/zoneinfo/Europe
Create a symbolic link /etc/localtime
to your zone file /usr/share/zoneinfo/<Zone>/<SubZone>
using this command:
# ln -s /usr/share/zoneinfo/<Zone>/<SubZone>
/etc/localtime
Example:
# ln -s /usr/share/zoneinfo/Europe/Minsk /etc/localtime
If you are using systemd's timedated, you might wish to also edit the file /etc/timezone
and write your Zone
/Subzone
.
Example:
# nano /etc/timezone
Europe/Minsk
Read man tzset
for more options.
The need for /etc/timezone
might go away in the future [1].
Locale
Locales are used by glibc and other locale-aware programs or libraries for rendering text, correctly displaying regional monetary values, time and date formats, alphabetic idiosyncrasies, and other locale-specific standards. For a comprehensive list of locales and what they stand for, see here.
If you would like to receive system messages in English during the install process and after rebooting, keep reading. Otherwise, see the example.
There are two files that need editing: locale.gen
and locale.conf
.
- The
locale.gen
file is empty by default (everything is commented out) and you need to remove the#
in front of the line(s) you want. You may uncomment more lines than just English, as long as you choose their UTF-8 encoding.
# nano /etc/locale.gen
en_US.UTF-8 UTF-8
# locale-gen
This will run on every glibc upgrade, generating all the locales specified in /etc/locale.gen
.
- The
locale.conf
file doesn't exist by default. Setting onlyLANG
should be enough. It will act as the default value for all other variables.
# echo "LANG=en_US.UTF-8" > /etc/locale.conf
To use other LC_*
variables, first run locale
to see the available options. An advanced example can be found here.
locale.conf
must be readable by regular users, it is simply read by login shells at the moment.LC_ALL
variable is strongly discouraged because it overrides everything.Example for languages other than English
If you would like to receive system messages in some other language than English during the install process and after rebooting (German, in this example), the above procedures are:
# nano /etc/locale.gen
en_US.UTF-8 UTF-8 de_DE.UTF-8 UTF-8
# locale-gen
# echo "LANG=de_DE.UTF-8" > /etc/locale.conf # export LANG=de_DE.UTF-8
Hardware clock
HARDWARECLOCK
isn't set in /etc/rc.conf
.Set the hardware clock mode uniformly between your operating systems. Otherwise, they may overwrite the hardware clock and cause time shifts.
You can generate /etc/adjtime
automatically by using one of the following commands:
- UTC (recommended)
- Note: Using UTC for the hardware clock does not mean that software will display time in UTC.
-
# hwclock --systohc --utc
- localtime (discouraged; used by default in Windows)
- Warning: Using localtime may lead to several known and unfixable bugs. However, there are no plans to drop support for localtime.
-
# hwclock --systohc --localtime
If you have (or planning on having) a dual boot setup with Windows:
- Recommended: Set both Arch Linux and Windows to use UTC. A quick registry fix is needed. Also, be sure to prevent Windows from synchronizing the time on-line, because the hardware clock will default back to localtime. If you want such functionality (NTP sync), you should use ntpd on your Arch Linux installation instead.
- Not recommended: Set Arch Linux to localtime and remove any time-related daemons from
/etc/rc.conf
. This will let Windows take care of hardware clock corrections and you will need to remember to boot into Windows at least two times a year (in Spring and Autumn) when DTS kicks in. So please don't ask on the forums why the clock is one hour behind or ahead if you usually go for days or weeks without booting into Windows.
Kernel modules
For kernel modules to load during boot, place a *.conf
file in /etc/modules-load.d/
, with a name based on the program that uses them.
# nano /etc/modules-load.d/virtio-net.conf
# Load 'virtio-net.ko' at boot. virtio-net
If there are more modules to load per *.conf
, the module names can be separated by newlines. A good example can be found here.
Empty lines and lines starting with #
or ;
are ignored.
Daemons
DAEMONS
line need not be changed at this time, but it is useful to explain what daemons are, as they will be addressed later in this guide.Daemons are programs that run in the background, waiting for events to occur and offering services. A few good examples are: a web server that waits for a request to deliver a page (e.g. httpd
), an SSH server waiting for a user to log in (e.g. sshd
), a daemon which writes system messages to a log file (e.g. syslog-ng
), a BitTorrent client (e.g. rtorrent
, deluged
), a music player (e.g. mpd
), a login manager (e.g. gdm
, slim
), a firewall (e.g. iptables
), etc. While these are full-featured applications, their work is usually not that visible. Their main advantage is that even if Xorg crashes (or is absent from the system), they will continue to work.
Daemons can be added to the DAEMONS
line in /etc/rc.conf
and they will start when the system boots, in the order that they are placed. Their names are the equivalent scripts from /etc/rc.d/
.
# nano /etc/rc.conf
DAEMONS=(network @syslog-ng netfs @crond)
- If a script name is prefixed with a bang (
!
), it is not run.
- If a script is prefixed with an "at" symbol (
@
), it is run in the background; the startup sequence will not wait for successful completion of this daemon before continuing to the next (this may shorten system boot time). Do not background daemons that are needed by other daemons. For example,mpd
depends onnetwork
, so backgroundingnetwork
may causempd
to break.
- Edit this line whenever new system services are installed, if starting them automatically during boot is desired.
A list of available services (and their running status) can be found using the command:
# rc.d list
Configure the network
You need to configure the network again, but this time for your newly installed environment. The procedure and prerequisites are very similar to the one described above, except we are going to make it persistent and automatically run at boot.
Wired
If you only use a single wired network connection, you can use the network
daemon, a simple solution for both dynamic and static IP addressing.
First, ensure that the daemon is listed in the DAEMONS
array:
# nano /etc/rc.conf
DAEMONS=(... network ...)
Then configure the NETWORKING
section of /etc/rc.conf
as follows, depending on your IP addressing type:
- Dynamic IP
Assuming the network interface to activate at start is eth0
, use this configuration:
interface=eth0 address= netmask= gateway=
Your DNS server addresses will be automatically filled in by the dhcpcd
daemon.
- Static IP
If you have a static IP address, use this configuration:
interface=eth0 address=192.168.0.2 netmask=255.255.255.0 broadcast=192.168.0.255 gateway=192.168.0.1
You will also need to add your name servers' (DNS) IP addresses and your local domain name to your /etc/resolv.conf
like this:
nameserver 61.23.173.5 nameserver 61.95.849.8 search example.com
network
daemon is suitable for systems connecting wired to a single network. For multiple network configurations (e.g. using a laptop), it is recommended to use a network manager program, such as netcfg, which has been designed to manage both wired and wireless connections.Wireless
The network
daemon is not sufficient to handle wireless networking. You will need to install other programs to configure and manage wireless network profiles, such as netcfg. NetworkManager and Wicd are popular alternatives.
- Install the required packages:
# pacman -S wireless_tools netcfg
If you use WPA/WPA2 encryption, install:
# pacman -S wpa_supplicant wpa_actiond
If your wireless adapter requires a firmware (as described in the above Establish an internet connection section and also here), install the package containing your firmware. For example:
# pacman -S zd1211-firmware
- Create a network profile for your wireless connection in the
/etc/network.d
directory:- Copy and rename a configuration template from
/etc/network.d/examples/
to/etc/network.d/mynetwork
(mynetwork being an example; the name is not a network setting and does not need to match the wireless network name (SSID)). These templates are adapted to the type of your wireless connection, such aswireless-wep
orwireless-wpa
. See here for a list of available templates and their usage. - Set
INTERFACE
to the correct wireless interface. This can be checked withiwconfig
. - Ensure the
ESSID
andKEY
(passkey) are set correctly for wireless connections. Typos in these fields are common errors.- Note that WEP string keys (not hex keys) must be specified with a leading
s:
(e.g.KEY="s:somepasskey"
). - For WPA-Personal, it is possible to specify the passkey in plain text or as an encoded hex.
- Note that WEP string keys (not hex keys) must be specified with a leading
- Copy and rename a configuration template from
- Add
net-auto-wireless
to theDAEMONS
array in/etc/rc.conf
:
# nano /etc/rc.conf
DAEMONS=(... net-auto-wireless ...)
- And specify the desired wireless interface with the
WIRELESS_INTERFACE
variable in/etc/conf.d/netcfg
:
# nano /etc/conf.d/netcfg
WIRELESS_INTERFACE="wlan0"
It is also possible to define a list of network profiles that should be automatically connected with the AUTO_PROFILES
variable in /etc/conf.d/netcfg
. If AUTO_PROFILES
is not set, all wireless networks will be tried.
Direct Modem Connection
For xDSL, analog modem (dial-up) and ISDN, see Direct Modem Connection for detailed instructions.
Create an initial ramdisk environment
Configure /etc/mkinitcpio.conf
as needed (see mkinitcpio) and create an initial ramdisk with
# mkinitcpio -p linux
/etc/mkinitcpio.conf
file.Install and configure a bootloader
Install either Syslinux or GRUB. There is no need to install both. Syslinux is considered to be easier to understand and to configure because it has only one configuration file. In spite of GRUB's many configuration files (for which the recommended method is to re-generate the grub.cfg
file each time you change anything in one of those files), using GRUB could make it more comfortable to transition to BURG in the future, a much more customizable GRUB fork. Of course, Syslinux can also be customized. (*)
Syslinux
Install the syslinux package and edit syslinux.cfg
to point to the right root partition. This step is vital. If it points to the wrong partition, Arch Linux will not boot.
# pacman -S syslinux # nano /boot/syslinux/syslinux.cfg
... LABEL arch ... APPEND root=/dev/sda3 ro ...
Change /dev/sda3
to reflect your root partition (if you partitioned your drive as we did in the example, your root partition is sda1). Do the same for LABEL archfallback
.
Then type the following command to install the files (-i
), mark the partition active with the boot flag (-a
), and install the MBR boot code (-m
):
# syslinux-install_update -iam
For more information on configuring and using Syslinux, see Syslinux.
GRUB
For BIOS motherboards:
# pacman -S grub-bios # grub-install --target=i386-pc --recheck /dev/sda
For UEFI motherboards:
# pacman -S grub-efi-x86_64 # grub-install --target=x86_64-efi --efi-directory=/boot/efi --bootloader-id=arch_grub --recheck
grub-efi-i386
instead; on older macs for instance, where Apple hardware uses some kind of mixture between UEFI v1.x and v2.x. In such cases, GRUB would only work with 32 bit modules, even though the CPU may be 64 bit.To prevent a (harmless) error message at boot time:
# mkdir -p /boot/grub/locale # cp /usr/share/locale/en\@quot/LC_MESSAGES/grub.mo /boot/grub/locale/en.mo
Create the grub.cfg
file:
# pacman -S os-prober
# grub-mkconfig -o /boot/grub/grub.cfg
For more information on configuring and using GRUB, see GRUB.
Root password
Set the root password with:
# passwd
Unmount the partitions and reboot
Exit from the chroot environment:
# exit
Since the partitions are mounted under /mnt
, we use the following command to unmount them.
# umount /mnt/{boot,home,}
Exit the install, and reboot:
# reboot