Difference between revisions of "Install from existing Linux"
m (→Method 1: Chroot into LiveCD-image) |
(fix bootstrap links) |
||
(239 intermediate revisions by 85 users not shown) | |||
Line 1: | Line 1: | ||
[[Category:Getting and installing Arch]] | [[Category:Getting and installing Arch]] | ||
− | + | [[es:Install from existing Linux]] | |
− | [[es:Install from | ||
[[fr:Install chroot]] | [[fr:Install chroot]] | ||
− | [[it:Install from | + | [[it:Install from existing Linux]] |
− | [[ | + | [[ja:既存の Linux からインストール]] |
− | [[ | + | [[pt:Install from existing Linux]] |
− | [[zh- | + | [[ru:Install from existing Linux]] |
− | [[zh- | + | [[zh-hans:Install from existing Linux]] |
− | + | [[zh-hant:Install from existing Linux]] | |
+ | {{Related articles start}} | ||
+ | {{Related|Install from SSH}} | ||
+ | {{Related articles end}} | ||
− | This is useful for: | + | This document describes the bootstrapping process required to install Arch Linux from a running Linux host system. |
− | * remotely installing | + | After bootstrapping, the installation proceeds as described in the [[Installation guide]]. |
− | * creating a new | + | |
− | * creating an | + | Installing Arch Linux from a running Linux is useful for: |
+ | |||
+ | * remotely installing Arch Linux, e.g. a (virtual) root server | ||
+ | * replacing an existing Linux without a LiveCD (see [[#Replacing the existing system without a LiveCD]]) | ||
+ | * creating a new Linux distribution or LiveCD based on Arch Linux | ||
+ | * creating an Arch Linux chroot environment, e.g. for a Docker base container | ||
* [[Diskless_network_boot_NFS_root|rootfs-over-NFS for diskless machines]] | * [[Diskless_network_boot_NFS_root|rootfs-over-NFS for diskless machines]] | ||
− | This guide requires that the existing host system be able to execute the new target Arch Linux architecture programs. | + | The goal of the bootstrapping procedure is to setup an environment from which the scripts from {{Pkg|arch-install-scripts}} (such as {{ic|pacstrap}} and {{ic|arch-chroot}}) can be run. |
+ | |||
+ | If the host system runs Arch Linux, this can be achieved by simply installing {{Pkg|arch-install-scripts}}. If the host system runs another Linux distribution, you will first need to set up an Arch Linux-based chroot. | ||
+ | |||
+ | {{Note|This guide requires that the existing host system be able to execute the new target Arch Linux architecture programs. This means it has to be an x86_64 host.}} | ||
+ | |||
+ | {{Warning|Please make sure you understand each step before proceeding. It is easy to destroy your system or to lose critical data, and your service provider will likely charge a lot to help you recover. }} | ||
+ | |||
+ | ==Backup and Preparation== | ||
+ | Backup all your data including mails, webservers, etc. Have all information at your fingertips. Preserve all your server configurations, hostnames, etc. | ||
+ | |||
+ | Here is a list of data you will likely need: | ||
+ | * IP address | ||
+ | * hostname(s), (note: rootserver are mostly also part of the providers domain, check or save your {{ic|/etc/hosts}} before you delete) | ||
+ | * DNS server (check {{ic|/etc/resolv.conf}}) | ||
+ | * SSH keys (if other people work on your server, they will have to accept new keys otherwise. This includes keys from your Apache, your mail servers, your SSH server and others.) | ||
+ | * Hardware info (network card, etc. Refer to your pre-installed {{ic|/etc/modules.conf}} ) | ||
+ | * Grub configuration files. | ||
+ | |||
+ | In general, it is a good idea to have a local copy of your original {{ic|/etc}} directory on your local hard drive. | ||
+ | |||
+ | == From a host running Arch Linux == | ||
+ | |||
+ | Install the {{Pkg|arch-install-scripts}} package. | ||
+ | |||
+ | Follow [[Installation guide#Mount the file systems]]. If you already use the {{ic|/mnt}} directory for something else, just create another directory such as {{ic|/mnt/install}}, and use that instead. | ||
+ | |||
+ | Then follow [[Installation guide#Installation]]. You can skip [[Installation guide#Select the mirrors]], since the host should already have a correct mirrorlist. | ||
+ | |||
+ | {{Tip|In order to avoid redownloading all the packages, consider following [[Pacman/Tips and tricks#Network shared pacman cache]] or using ''pacstrap'''s {{ic|-c}} option.}} | ||
+ | |||
+ | {{Merge|Moving_an_existing_install_into_(or_out_of)_a_virtual_machine#Moving_into_a_VM|Same approach.}} | ||
+ | |||
+ | {{Note|If you only want to create an exact copy of an existing Arch installation, it is also possible to just copy the filesystem to the new partition. With this method, you will still need to | ||
+ | |||
+ | * Create [[Installation guide#Fstab|{{ic|/etc/fstab}}]] and edit {{ic|/etc/hostname}} | ||
+ | * Delete {{ic|/etc/machine-id}} so that a new, unique, one will be regenerated on boot | ||
+ | * Make any other changes appropriate to the installation medium | ||
+ | * Install the bootloader | ||
+ | |||
+ | When copying the filesystem root, use something like {{ic|cp -ax}} or {{ic|rsync -axX}}. This avoids copying contents of mountpoints ({{ic|-x}}), and preserves the [[capabilities]] attributes of some system binaries ({{ic|rsync -X}}). | ||
+ | }} | ||
+ | |||
+ | == From a host running another Linux distribution == | ||
− | + | There are multiple tools which automate a large part of the steps described in the following subsections. See their respective homepages for detailed instructions. | |
− | + | * [https://github.com/tokland/arch-bootstrap arch-bootstrap] (Bash) | |
+ | * [https://github.com/m4rienf/ArchCX archcx] (Bash, from Hetzner CX Rescue System) | ||
+ | * [https://github.com/gh2o/digitalocean-debian-to-arch digitalocean-debian-to-arch] (repartition disk, DigitalOCean specific) | ||
+ | * [https://github.com/hartwork/image-bootstrap image-bootstrap] (Python) | ||
+ | * [https://github.com/drizzt/vps2arch vps2arch] (Bash) | ||
− | + | The manual way is presented in the following subsections. The idea is to run an Arch system inside the host system, with the actual installation being executed from the Arch system. The nested system is contained inside a chroot. | |
− | + | === Creating the chroot === | |
− | + | Two methods to setup and enter the chroot are presented below, from the easiest to the most complicated. Select only one of the two methods. Then, continue at [[#Using the chroot environment]]. | |
− | + | ==== Method A: Using the bootstrap image (recommended) ==== | |
− | + | Download the bootstrap image from a [https://www.archlinux.org/download mirror]: | |
− | + | # cd /tmp | |
+ | # wget https://mirrors.kernel.org/archlinux/iso/latest/archlinux-bootstrap-2018.04.01-x86_64.tar.gz | ||
− | + | You can also download the signature (same URL with {{ic|.sig}} added) and [[GnuPG#Verify_a_signature|verify it with GnuPG]]. | |
− | |||
− | + | Extract the tarball: | |
+ | # tar xzf <path-to-bootstrap-image>/archlinux-bootstrap-2018.04.01-x86_64.tar.gz | ||
− | + | Select a repository server by editing {{ic|/tmp/root.x86_64/etc/pacman.d/mirrorlist}}. | |
− | + | Enter the chroot | |
− | + | * If bash 4 or later is installed, and unshare supports the --fork and --pid options: | |
+ | # /tmp/root.x86_64/bin/arch-chroot /tmp/root.x86_64/ | ||
+ | * Otherwise, run the following commands: | ||
+ | # mount --bind /tmp/root.x86_64 /tmp/root.x86_64 | ||
+ | # cd /tmp/root.x86_64 | ||
+ | # cp /etc/resolv.conf etc | ||
+ | # mount -t proc /proc proc | ||
+ | # mount --make-rslave --rbind /sys sys | ||
+ | # mount --make-rslave --rbind /dev dev | ||
+ | # mount --make-rslave --rbind /run run # (assuming /run exists on the system) | ||
+ | # chroot /tmp/root.x86_64 /bin/bash | ||
− | + | ==== Method B: Using the LiveCD image ==== | |
− | + | It is possible to mount the root image of the latest Arch Linux installation media and then chroot into it. This method has the advantage of providing a working Arch Linux installation right within the host system without the need to prepare it by installing specific packages. | |
− | + | {{Note|Before proceeding, make sure the latest version of [http://squashfs.sourceforge.net/ squashfs] is installed on the host system. Otherwise, errors like the following are to be expected: {{ic|FATAL ERROR aborting: uncompress_inode_table: failed to read block}}.}} | |
− | {{ | ||
− | * The root image | + | * The root image can be found on one of the [https://www.archlinux.org/download mirrors] under {{ic|arch/x86_64/}}. The squashfs format is not editable, so we unsquash the root image and mount it. |
− | To unsquash the | + | *To unsquash the root image, run |
− | {{bc|# unsquashfs | + | {{bc|# unsquashfs airootfs.sfs}} |
− | * | + | * Before [[Change root|chrooting]] to it, we need to set up some mount points and copy the resolv.conf for networking. |
{{bc| | {{bc| | ||
− | # | + | # mount --bind squashfs-root squashfs-root |
− | # | + | # mount -t proc none squashfs-root/proc |
+ | # mount -t sysfs none squashfs-root/sys | ||
+ | # mount -o bind /dev squashfs-root/dev | ||
+ | # mount -o bind /dev/pts squashfs-root/dev/pts ## important for pacman (for signature check) | ||
+ | # cp -L /etc/resolv.conf squashfs-root/etc ## this is needed to use networking within the chroot | ||
}} | }} | ||
− | * Now | + | * Now, everything is prepared to chroot into the newly installed Arch environment |
− | {{bc| | + | {{bc|# chroot squashfs-root bash}} |
− | + | ||
− | # | + | === Using the chroot environment === |
− | + | ||
+ | The bootstrap environment is really barebones (no {{ic|nano}}, no {{ic|ping}}, no {{ic|cryptsetup}}, no {{ic|lvm}}). Therefore, we need to set up [[pacman]] in order to download the rest of the {{ic|base}} and, if needed, {{ic|base-devel}}. | ||
+ | |||
+ | ==== Initializing pacman keyring ==== | ||
− | + | Before starting the installation, pacman keys need to be setup. Before running the following two commands, read [[pacman-key#Initializing the keyring]] to understand the entropy requirements: | |
{{bc| | {{bc| | ||
− | # | + | # pacman-key --init |
− | # | + | # pacman-key --populate archlinux |
− | |||
− | |||
}} | }} | ||
− | + | {{Tip|Installing and running {{Pkg|haveged}} must be done on the host system, since it is not possible to install packages before initializing pacman keyring and because ''systemd'' will detect it is running in a chroot and [https://superuser.com/questions/688733/start-a-systemd-service-inside-chroot ignore activation request]. | |
− | {{ | ||
− | + | If you go with doing {{ic|ls -Ra /}} in another console (TTY, terminal, SSH session...), do not be afraid of running it in a loop a few times: five or six runs from the host proved sufficient to generate enough entropy on a remote headless server.}} | |
− | === | + | ==== Selecting a mirror and downloading basic tools ==== |
− | + | After [[Mirrors#Enabling_a_specific_mirror|selecting a mirror]], [[Mirrors#Force_pacman_to_refresh_the_package_lists|refresh the package lists]] and [[install]] what you need: {{Grp|base}}, {{Grp|base-devel}}, {{Pkg|parted}} etc. | |
− | + | === Installation tips === | |
− | + | You can now proceed to [[Installation guide#Partition the disks]] and follow the rest of the [[Installation guide]]. | |
− | |||
− | |||
− | + | Some host systems or configurations may require certain extra steps. See the sections below for tips. | |
− | + | ===== Debian-based host ===== | |
− | |||
− | |||
− | |||
− | + | ====== /dev/shm ====== | |
− | + | On some Debian-based host systems, {{ic|pacstrap}} may produce the following error: | |
− | + | {{hc|# pacstrap /mnt base| | |
− | + | ==> Creating install root at /mnt | |
− | + | mount: mount point /mnt/dev/shm is a symbolic link to nowhere | |
− | + | ==> ERROR: failed to setup API filesystems in new root | |
+ | }} | ||
− | + | This is because in some versions of Debian, {{ic|/dev/shm}} points to {{ic|/run/shm}} while in the Arch-based chroot, {{ic|/run/shm}} does not exist and the link is broken. To correct this error, create a directory {{ic|/run/shm}}: | |
− | This is | + | # mkdir /run/shm |
− | |||
− | |||
− | |||
− | # | ||
− | + | ====== /dev/pts ====== | |
− | |||
− | + | While installing {{ic|archlinux-2015.07.01-x86_64}} from a Debian 7 host, the following error prevented both [https://projects.archlinux.org/arch-install-scripts.git/tree/pacstrap.in pacstrap] and [[Change_root#Using_arch-chroot|arch-chroot]] from working: | |
− | + | {{hc|# pacstrap -i /mnt| | |
+ | mount: mount point /mnt/dev/pts does not exist | ||
+ | ==> ERROR: failed to setup chroot /mnt | ||
+ | }} | ||
− | + | Apparently, this is because these two scripts use a common function. {{ic|chroot_setup()}}[https://projects.archlinux.org/arch-install-scripts.git/tree/common#n76] relies on newer features of {{Pkg|util-linux}}, which are incompatible with Debian 7 userland (see {{Bug|45737}}). | |
− | '' | + | The solution for ''pacstrap'' is to manually execute its [https://projects.archlinux.org/arch-install-scripts.git/tree/pacstrap.in#n77 various tasks], but use the [[Change_root#Using_chroot|regular procedure]] to mount the kernel filesystems on the target directory ({{ic|"$newroot"}}): |
− | === | + | {{bc|1= |
+ | # newroot=/mnt | ||
+ | # mkdir -m 0755 -p "$newroot"/var/{cache/pacman/pkg,lib/pacman,log} "$newroot"/{dev,run,etc} | ||
+ | # mkdir -m 1777 -p "$newroot"/tmp | ||
+ | # mkdir -m 0555 -p "$newroot"/{sys,proc} | ||
+ | # mount --bind "$newroot" "$newroot" | ||
+ | # mount -t proc /proc "$newroot/proc" | ||
+ | # mount --rbind /sys "$newroot/sys" | ||
+ | # mount --rbind /run "$newroot/run" | ||
+ | # mount --rbind /dev "$newroot/dev" | ||
+ | # pacman -r "$newroot" --cachedir="$newroot/var/cache/pacman/pkg" -Sy base base-devel ... ## add the packages you want | ||
+ | # cp -a /etc/pacman.d/gnupg "$newroot/etc/pacman.d/" ## copy keyring | ||
+ | # cp -a /etc/pacman.d/mirrorlist "$newroot/etc/pacman.d/" ## copy mirrorlist | ||
+ | }} | ||
− | + | Instead of using {{ic|arch-chroot}} for [[Installation guide#Chroot]], simply use {{ic|chroot "$newroot"}}. | |
− | + | ====== lvmetad ====== | |
− | + | Trying to create [[LVM]] [[LVM#Logical_volumes|logical volumes]] from an {{ic|archlinux-bootstrap-2015.07.01-x86_64}} environment on a Debian 7 host resulted in the following error: | |
− | |||
− | + | {{hc|# lvcreate -L 20G lvm -n root| | |
+ | /run/lvm/lvmetad.socket: connect failed: No such file or directory | ||
+ | WARNING: Failed to connect to lvmetad. Falling back to internal scanning. | ||
+ | /dev/lvm/root: not found: device not cleared | ||
+ | Aborting. Failed to wipe start of new LV.}} | ||
− | + | (Physical volume and volume group creation worked despite {{ic|/run/lvm/lvmetad.socket: connect failed: No such file or directory}} being displayed.) | |
− | + | This could be easily worked around by creating the logical volumes outside the chroot (from the Debian host). They are then available once chrooted again. | |
− | |||
− | |||
− | + | {{Accuracy|This problem did not arise when installing from a Debian 7 host without lvmetad enabled. The recommended messaround with {{ic|/etc/lvm/lvm.conf}} looks rather error prone (2015-07-26).}} | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | + | Also, if the system you are using has lvm, you might have the following output: | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | + | {{hc|1=# grub-install --target=i386-pc --recheck /dev/mapper/main-archroot|2= | |
− | + | Installing for i386-pc platform. | |
− | + | /run/lvm/lvmetad.socket: connect failed: No such file or directory | |
− | + | WARNING: Failed to connect to lvmetad. Falling back to internal scanning. | |
− | + | /run/lvm/lvmetad.socket: connect failed: No such file or directory | |
− | + | WARNING: Failed to connect to lvmetad. Falling back to internal scanning. | |
− | + | /run/lvm/lvmetad.socket: connect failed: No such file or directory | |
− | + | WARNING: Failed to connect to lvmetad. Falling back to internal scanning. | |
+ | /run/lvm/lvmetad.socket: connect failed: No such file or directory | ||
+ | WARNING: Failed to connect to lvmetad. Falling back to internal scanning. | ||
+ | /run/lvm/lvmetad.socket: connect failed: No such file or directory | ||
+ | WARNING: Failed to connect to lvmetad. Falling back to internal scanning. | ||
+ | }} | ||
− | This is | + | This is because debian does not use lvmetad by default. You need to edit {{ic|/etc/lvm/lvm.conf}} and set {{ic|use_lvmetad}} to {{ic|0}}: |
− | = | + | use_lvmetad = 0 |
− | + | {{Accuracy|Is it the problem with LVM on Debian or with trying to install Arch on LVM?}} | |
+ | {{Style|poor style}} | ||
+ | This will trigger later an error on boot in the initrd stage. Therefore, you have to change it back after the grub generation. In a software RAID + LVM, steps would be the following: | ||
− | + | * After installing the system, double check your [[Mkinitcpio]] and your bootloader settings. See [[:Category:Boot loaders]] for a list of bootloaders. | |
+ | * You may need to change your {{ic|/etc/mdadm.conf}} to reflect your [[RAID]] settings (if applicable). | ||
+ | * You may need to change your {{ic|HOOKS}} and {{ic|MODULES}} according to your [[LVM]] and [[RAID]] requirements: {{ic|1=MODULES="dm_mod" HOOKS="base udev '''mdadm_udev''' ... block '''lvm2''' filesystems ..."}} | ||
+ | * You will most likely need to generate new initrd images with mkinitcpio. See [[Mkinitcpio#Image creation and activation]]. | ||
+ | * Set {{ic|1=use_lvmetad = 0}} in {{ic|/etc/lvm/lvm.conf}}. | ||
+ | * Update your bootloader settings. See your bootloader's wiki page for details. | ||
+ | * Set {{ic|1=use_lvmetad = 1}} in {{ic|/etc/lvm/lvm.conf}}. | ||
− | + | ===== Fedora-based host ===== | |
− | |||
− | |||
− | + | On Fedora based hosts and live USBs you may encounter problems when using {{ic|genfstab}} to generate your [[fstab]]. Remove duplicate entries and the "seclabel" option where it appears, as this is Fedora-specific and will keep your system from booting normally. | |
− | |||
− | == | + | == Things to check before you reboot == |
− | + | Before rebooting, chroot into the newly-installed system. | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | + | Make sure to create a user with password, so you can login via ssh. Root login is disabled by default since OpenSSH-7.1p2. | |
− | + | Set a root password so that you can switch to root via su later: | |
+ | # passwd | ||
− | + | Install [[ssh]] and [[enable]] it to start automatically at boot. | |
− | + | Configure the [[network]] connection to start automatically at boot. | |
− | |||
− | |||
− | + | Set up a [[boot loader]] and configure it to use the swap partition you appropriated earlier as the root partition. You might want to configure your bootloader to be able to boot into your old system; it is helpful to re-use the server's existing /boot partition in the new system for this purpose. | |
− | + | == Replacing the existing system without a LiveCD == | |
− | |||
− | + | Find ~700MB of free space somewhere on the disk, e.g. by partitioning a swap partition. You can disable the swap partition and set up your system there. | |
− | + | ===Set old swap partition as new root partition=== | |
− | |||
+ | Check {{ic|cfdisk}}, {{ic|/proc/swaps}} or {{ic|/etc/fstab}} to find your swap partition. Assuming your hard drive is located on sdaX (X will be a number). | ||
− | + | Do the following: | |
− | + | Disable the swap space: | |
+ | # swapoff /dev/sdaX | ||
− | # | + | Create a filesystem on it |
− | # | + | # fdisk /dev/sda |
+ | (set /dev/sdaX ID field to "Linux" - Hex 83) | ||
+ | # mke2fs -j /dev/sdaX | ||
− | + | Create a directory to mount it in | |
+ | # mkdir /mnt/newsys | ||
− | + | Finally, mount the new directory for installing the intermediate system. | |
− | + | # mount -t ext4 /dev/sdaX /mnt/newsys | |
− | === | + | === Installation === |
− | + | If less than 700MB are available, examine the packages in the group base, and select only those required to get a system with internet connection up and running in the temporary partition. This will mean explicitly specifying individual packages to pacstrap, as well as passing it the -c option, to get packages downloaded to the host system to avoid filling up valuable space. | |
− | + | Once the new Arch Linux system is installed, reboot into the newly created system, and [[rsync#Full system backup|rsync the entire system]] to the primary partition. | |
− | + | Fix the bootloader configuration before rebooting. |
Latest revision as of 07:17, 8 April 2018
This document describes the bootstrapping process required to install Arch Linux from a running Linux host system. After bootstrapping, the installation proceeds as described in the Installation guide.
Installing Arch Linux from a running Linux is useful for:
- remotely installing Arch Linux, e.g. a (virtual) root server
- replacing an existing Linux without a LiveCD (see #Replacing the existing system without a LiveCD)
- creating a new Linux distribution or LiveCD based on Arch Linux
- creating an Arch Linux chroot environment, e.g. for a Docker base container
- rootfs-over-NFS for diskless machines
The goal of the bootstrapping procedure is to setup an environment from which the scripts from arch-install-scripts (such as pacstrap
and arch-chroot
) can be run.
If the host system runs Arch Linux, this can be achieved by simply installing arch-install-scripts. If the host system runs another Linux distribution, you will first need to set up an Arch Linux-based chroot.
Contents
Backup and Preparation
Backup all your data including mails, webservers, etc. Have all information at your fingertips. Preserve all your server configurations, hostnames, etc.
Here is a list of data you will likely need:
- IP address
- hostname(s), (note: rootserver are mostly also part of the providers domain, check or save your
/etc/hosts
before you delete) - DNS server (check
/etc/resolv.conf
) - SSH keys (if other people work on your server, they will have to accept new keys otherwise. This includes keys from your Apache, your mail servers, your SSH server and others.)
- Hardware info (network card, etc. Refer to your pre-installed
/etc/modules.conf
) - Grub configuration files.
In general, it is a good idea to have a local copy of your original /etc
directory on your local hard drive.
From a host running Arch Linux
Install the arch-install-scripts package.
Follow Installation guide#Mount the file systems. If you already use the /mnt
directory for something else, just create another directory such as /mnt/install
, and use that instead.
Then follow Installation guide#Installation. You can skip Installation guide#Select the mirrors, since the host should already have a correct mirrorlist.
-c
option.- Create
/etc/fstab
and edit/etc/hostname
- Delete
/etc/machine-id
so that a new, unique, one will be regenerated on boot - Make any other changes appropriate to the installation medium
- Install the bootloader
When copying the filesystem root, use something like cp -ax
or rsync -axX
. This avoids copying contents of mountpoints (-x
), and preserves the capabilities attributes of some system binaries (rsync -X
).
From a host running another Linux distribution
There are multiple tools which automate a large part of the steps described in the following subsections. See their respective homepages for detailed instructions.
- arch-bootstrap (Bash)
- archcx (Bash, from Hetzner CX Rescue System)
- digitalocean-debian-to-arch (repartition disk, DigitalOCean specific)
- image-bootstrap (Python)
- vps2arch (Bash)
The manual way is presented in the following subsections. The idea is to run an Arch system inside the host system, with the actual installation being executed from the Arch system. The nested system is contained inside a chroot.
Creating the chroot
Two methods to setup and enter the chroot are presented below, from the easiest to the most complicated. Select only one of the two methods. Then, continue at #Using the chroot environment.
Method A: Using the bootstrap image (recommended)
Download the bootstrap image from a mirror:
# cd /tmp # wget https://mirrors.kernel.org/archlinux/iso/latest/archlinux-bootstrap-2018.04.01-x86_64.tar.gz
You can also download the signature (same URL with .sig
added) and verify it with GnuPG.
Extract the tarball:
# tar xzf <path-to-bootstrap-image>/archlinux-bootstrap-2018.04.01-x86_64.tar.gz
Select a repository server by editing /tmp/root.x86_64/etc/pacman.d/mirrorlist
.
Enter the chroot
- If bash 4 or later is installed, and unshare supports the --fork and --pid options:
# /tmp/root.x86_64/bin/arch-chroot /tmp/root.x86_64/
- Otherwise, run the following commands:
# mount --bind /tmp/root.x86_64 /tmp/root.x86_64 # cd /tmp/root.x86_64 # cp /etc/resolv.conf etc # mount -t proc /proc proc # mount --make-rslave --rbind /sys sys # mount --make-rslave --rbind /dev dev # mount --make-rslave --rbind /run run # (assuming /run exists on the system) # chroot /tmp/root.x86_64 /bin/bash
Method B: Using the LiveCD image
It is possible to mount the root image of the latest Arch Linux installation media and then chroot into it. This method has the advantage of providing a working Arch Linux installation right within the host system without the need to prepare it by installing specific packages.
FATAL ERROR aborting: uncompress_inode_table: failed to read block
.- The root image can be found on one of the mirrors under
arch/x86_64/
. The squashfs format is not editable, so we unsquash the root image and mount it.
- To unsquash the root image, run
# unsquashfs airootfs.sfs
- Before chrooting to it, we need to set up some mount points and copy the resolv.conf for networking.
# mount --bind squashfs-root squashfs-root # mount -t proc none squashfs-root/proc # mount -t sysfs none squashfs-root/sys # mount -o bind /dev squashfs-root/dev # mount -o bind /dev/pts squashfs-root/dev/pts ## important for pacman (for signature check) # cp -L /etc/resolv.conf squashfs-root/etc ## this is needed to use networking within the chroot
- Now, everything is prepared to chroot into the newly installed Arch environment
# chroot squashfs-root bash
Using the chroot environment
The bootstrap environment is really barebones (no nano
, no ping
, no cryptsetup
, no lvm
). Therefore, we need to set up pacman in order to download the rest of the base
and, if needed, base-devel
.
Initializing pacman keyring
Before starting the installation, pacman keys need to be setup. Before running the following two commands, read pacman-key#Initializing the keyring to understand the entropy requirements:
# pacman-key --init # pacman-key --populate archlinux
ls -Ra /
in another console (TTY, terminal, SSH session...), do not be afraid of running it in a loop a few times: five or six runs from the host proved sufficient to generate enough entropy on a remote headless server.Selecting a mirror and downloading basic tools
After selecting a mirror, refresh the package lists and install what you need: base, base-devel, parted etc.
Installation tips
You can now proceed to Installation guide#Partition the disks and follow the rest of the Installation guide.
Some host systems or configurations may require certain extra steps. See the sections below for tips.
Debian-based host
/dev/shm
On some Debian-based host systems, pacstrap
may produce the following error:
# pacstrap /mnt base
==> Creating install root at /mnt mount: mount point /mnt/dev/shm is a symbolic link to nowhere ==> ERROR: failed to setup API filesystems in new root
This is because in some versions of Debian, /dev/shm
points to /run/shm
while in the Arch-based chroot, /run/shm
does not exist and the link is broken. To correct this error, create a directory /run/shm
:
# mkdir /run/shm
/dev/pts
While installing archlinux-2015.07.01-x86_64
from a Debian 7 host, the following error prevented both pacstrap and arch-chroot from working:
# pacstrap -i /mnt
mount: mount point /mnt/dev/pts does not exist ==> ERROR: failed to setup chroot /mnt
Apparently, this is because these two scripts use a common function. chroot_setup()
[1] relies on newer features of util-linux, which are incompatible with Debian 7 userland (see FS#45737).
The solution for pacstrap is to manually execute its various tasks, but use the regular procedure to mount the kernel filesystems on the target directory ("$newroot"
):
# newroot=/mnt # mkdir -m 0755 -p "$newroot"/var/{cache/pacman/pkg,lib/pacman,log} "$newroot"/{dev,run,etc} # mkdir -m 1777 -p "$newroot"/tmp # mkdir -m 0555 -p "$newroot"/{sys,proc} # mount --bind "$newroot" "$newroot" # mount -t proc /proc "$newroot/proc" # mount --rbind /sys "$newroot/sys" # mount --rbind /run "$newroot/run" # mount --rbind /dev "$newroot/dev" # pacman -r "$newroot" --cachedir="$newroot/var/cache/pacman/pkg" -Sy base base-devel ... ## add the packages you want # cp -a /etc/pacman.d/gnupg "$newroot/etc/pacman.d/" ## copy keyring # cp -a /etc/pacman.d/mirrorlist "$newroot/etc/pacman.d/" ## copy mirrorlist
Instead of using arch-chroot
for Installation guide#Chroot, simply use chroot "$newroot"
.
lvmetad
Trying to create LVM logical volumes from an archlinux-bootstrap-2015.07.01-x86_64
environment on a Debian 7 host resulted in the following error:
# lvcreate -L 20G lvm -n root
/run/lvm/lvmetad.socket: connect failed: No such file or directory WARNING: Failed to connect to lvmetad. Falling back to internal scanning. /dev/lvm/root: not found: device not cleared Aborting. Failed to wipe start of new LV.
(Physical volume and volume group creation worked despite /run/lvm/lvmetad.socket: connect failed: No such file or directory
being displayed.)
This could be easily worked around by creating the logical volumes outside the chroot (from the Debian host). They are then available once chrooted again.
Also, if the system you are using has lvm, you might have the following output:
# grub-install --target=i386-pc --recheck /dev/mapper/main-archroot
Installing for i386-pc platform. /run/lvm/lvmetad.socket: connect failed: No such file or directory WARNING: Failed to connect to lvmetad. Falling back to internal scanning. /run/lvm/lvmetad.socket: connect failed: No such file or directory WARNING: Failed to connect to lvmetad. Falling back to internal scanning. /run/lvm/lvmetad.socket: connect failed: No such file or directory WARNING: Failed to connect to lvmetad. Falling back to internal scanning. /run/lvm/lvmetad.socket: connect failed: No such file or directory WARNING: Failed to connect to lvmetad. Falling back to internal scanning. /run/lvm/lvmetad.socket: connect failed: No such file or directory WARNING: Failed to connect to lvmetad. Falling back to internal scanning.
This is because debian does not use lvmetad by default. You need to edit /etc/lvm/lvm.conf
and set use_lvmetad
to 0
:
use_lvmetad = 0
This will trigger later an error on boot in the initrd stage. Therefore, you have to change it back after the grub generation. In a software RAID + LVM, steps would be the following:
- After installing the system, double check your Mkinitcpio and your bootloader settings. See Category:Boot loaders for a list of bootloaders.
- You may need to change your
/etc/mdadm.conf
to reflect your RAID settings (if applicable). - You may need to change your
HOOKS
andMODULES
according to your LVM and RAID requirements:MODULES="dm_mod" HOOKS="base udev mdadm_udev ... block lvm2 filesystems ..."
- You will most likely need to generate new initrd images with mkinitcpio. See Mkinitcpio#Image creation and activation.
- Set
use_lvmetad = 0
in/etc/lvm/lvm.conf
. - Update your bootloader settings. See your bootloader's wiki page for details.
- Set
use_lvmetad = 1
in/etc/lvm/lvm.conf
.
Fedora-based host
On Fedora based hosts and live USBs you may encounter problems when using genfstab
to generate your fstab. Remove duplicate entries and the "seclabel" option where it appears, as this is Fedora-specific and will keep your system from booting normally.
Things to check before you reboot
Before rebooting, chroot into the newly-installed system.
Make sure to create a user with password, so you can login via ssh. Root login is disabled by default since OpenSSH-7.1p2.
Set a root password so that you can switch to root via su later:
# passwd
Install ssh and enable it to start automatically at boot.
Configure the network connection to start automatically at boot.
Set up a boot loader and configure it to use the swap partition you appropriated earlier as the root partition. You might want to configure your bootloader to be able to boot into your old system; it is helpful to re-use the server's existing /boot partition in the new system for this purpose.
Replacing the existing system without a LiveCD
Find ~700MB of free space somewhere on the disk, e.g. by partitioning a swap partition. You can disable the swap partition and set up your system there.
Set old swap partition as new root partition
Check cfdisk
, /proc/swaps
or /etc/fstab
to find your swap partition. Assuming your hard drive is located on sdaX (X will be a number).
Do the following:
Disable the swap space:
# swapoff /dev/sdaX
Create a filesystem on it
# fdisk /dev/sda (set /dev/sdaX ID field to "Linux" - Hex 83) # mke2fs -j /dev/sdaX
Create a directory to mount it in
# mkdir /mnt/newsys
Finally, mount the new directory for installing the intermediate system.
# mount -t ext4 /dev/sdaX /mnt/newsys
Installation
If less than 700MB are available, examine the packages in the group base, and select only those required to get a system with internet connection up and running in the temporary partition. This will mean explicitly specifying individual packages to pacstrap, as well as passing it the -c option, to get packages downloaded to the host system to avoid filling up valuable space.
Once the new Arch Linux system is installed, reboot into the newly created system, and rsync the entire system to the primary partition. Fix the bootloader configuration before rebooting.