Installation - Alpine Linux
Installation - Alpine Linux
org/wiki/Installation
Installation
This page explains the basics to get started. But before actually installing, it can also help to skim through the Frequenty Asked Questions
(FAQ).
Contents
Minimal Hardware Requirements
Installation Overview
The general course of action
Diskless Mode
Data Disk Mode
System Disk Mode
Additional Details
Verifying the downloaded image-file
Flashing (direct data writing) the installation image-file onto a device or media
Unix/Linux
Windows
Verifying the written installation media
Booting from external devices
Custom partitioning of the harddisk
Questions asked by setup-alpine
Preparing for the first boot
Rebooting and testing the new system
Completing the installation
Additional Documentation
Installing
Post-Install
Additional Help and Information
Other Guides
1 of 8 2022-01-21 21:11
Installation - Alpine Linux https://wiki.alpinelinux.org/wiki/Installation
Installation Overview
Note: For single-board-computer (SBC) architectures which can not boot .iso images, see Alpine on ARM for
peculiarities.
As usual, the regular installation procedure starts with three basic steps (additional details for all the steps follow below):
1. Downloading and verifying the proper stable-release ISO installation image-file (http://alpinelinux.org/downloads) for the
computer's architecture, and the corresponding sha256 (checksum) and GPG (signature) files.
2. Either burning the ISO image-file onto a blank CD/DVD/Blu-ray disk with disk burning software, or flashing the installation
image onto a bootable storage device (USB-device, CF-/MMC-/SD-card, floppy, ...).
3. Booting the computer from the prepared disk or storage device.
The boot process copies the entire operating system into the RAM memory, then runs it from there, after which, the command line
environment does not depend on reading from the (possibly slow) initial boot media.
Log-in is possible as the user root. Initially, the root user has no password.
An interactive script named setup-alpine is available at the command prompt to configure and install the initial Alpine Linux system.
The setup-alpine question-and-answer dialog can configure installations that boot into one of three different Alpinelinux disk modes,
"diskless", "data", and "sys". These are explained in more detail in the following subsections. However, a newly installed system may
always be configured into a fully usable, standalone, "diskless" live-system by runing setup-alpine and answering "none" when asked for
the disk to use, where to store configs, and the location for the package cache.
Once a "diskless" system is configured by running setup-alpine, it's possible to use the apk package manager to install any desired tool
that may be missing in the live system to configure available hardware.
Specific hardware configuration may be desired, for example, for available disk drives. e.g. If you need to install a custom partition or
filesystem scheme, and if the installation should not use and/or overwrite the entire disk (details below).
After the desired adjustments have been made using the "diskless" system, setup-lbu and setup-apkcache may be run to add
persistent configuration and package cache storage to the running "diskless" system. After that, the system state may be saved with lbu
commit. Or, setup-disk may be run to add a "data" mode partition, or do a classic full install of the "diskless" system onto a "sys" disk or
partition.
More setup-scripts are available to configure other specifics. They may be run separately to set up a system, or to adjust only specific parts
later. For example, to set up a graphical environment (covered in Post-Install below).
Diskless Mode
This is the default boot mode of the .iso images. setup-alpine configures this if "disk=none" is selected during installation. It means the
entire operating system and all applications are loaded into, then run from, RAM. This is extremely fast and can save on unnecessary disk
spin-ups, power, and wear. It is similar to what is called a "frugal" install running with the "toram" option as with some other distros, but
without the need to remaster the install media.
Custom configurations and package selections may be preserved across reboots with the Alpine local backup tool lbu. It enables committing
and reverting system states using .apkovl files that are saved to writable storage and loaded when booting. If additional or updated packages
have been added to the system, these may also be made available for automatic (re)installation during the boot phase, by enabling a local
package cache on the writable storage.
[FIXME-1 (https://gitlab.alpinelinux.org/alpine/alpine-conf/-/issues/10473): Storing local configs and the package cache on an internal disk
still requires some manual steps to have the partition listed, i.e. making a /etc/fstab entry, mountpoint, and mount, *before* running setup-
alpine. And requires manually committing the configuration to disk afterwards.]
2 of 8 2022-01-21 21:11
Installation - Alpine Linux https://wiki.alpinelinux.org/wiki/Installation
To allow for local backups, setup-alpine can be told to store the configs and the package cache on a writable partition. (Later, directories
on that same partition or another available partition may also be mounted as /home, or for important applications, e.g. to keep their run-time
and user data on it.)
The boot device of the newly configured local "diskless" system may remain the initial (and possibly read-only) installation media. But it is
also possible to copy the boot system to a partition (e.g. /dev/sdXY) with setup-bootable.
[FIXME-2 (https://gitlab.alpinelinux.org/alpine/alpine-conf/-/issues/10474)]: Setup-alpine will create the data partition and mount it as /var,
but can not yet configure lbu storage settings automatically. It is currently necessary to select "none" at the 'where to store configs' prompt (the
new data partition is not listed) and configure lbu manually. For example, after running setup-alpine and before rebooting:
If this mode is selected, the setup-alpine script creates three partitions on the selected storage device, /boot, swap and / (the
filesystem root). This mode may, for example, be used for generic desktop and development machines.
Additional Details
This material needs expanding ...
This "Additional Details" section needs to be consolidated with the work at https://docs.alpinelinux.org (https://docs.alpinelinux.org) (not
finished) (Restructuring things there, moving and linking from here or there?).
3 of 8 2022-01-21 21:11
Installation - Alpine Linux https://wiki.alpinelinux.org/wiki/Installation
Commands to verify the checksum and GPG signature of a downloaded image-file on different systems.
SHA256 calculation
OS type SHA256 check (to be compared GPG signature verification
manually)
curl https://alpinelinux.org
/keys/ncopa.asc | gpg
--import ;
sha256sum -c gpg --verify alpine-
Linux
alpine-*.iso.sha256
<version>.iso.asc alpine-
<version>.iso
shasum -a 256
MACOS -?- -?-
alpine-*.iso
/usr/local
FreeBSD -?- /bin/shasum -a -?-
256 alpine-*.iso
/usr/local
NetBSD -?- /bin/shasum -a -?-
256 alpine-*.iso
Get-FileHash
Windows .\alpine-<image-
(PowerShell -?- version>.iso -?-
installed) -Algorithm
SHA256
Flashing (direct data writing) the installation image-file onto a device or media
Unix/Linux
Under Unix (and thus Linux), "everything is a file" and the data in the image-file can be written to a device or media with the dd command.
Afterward, executing the eject command removes the target device from the system and ensures the write cache is completely flushed.
Be careful to correctly identify the target device as any data on it will be lost! All connected "bulk storage devices" can be listed with lsblk
and blkid.
# lsblk
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT
sdX 0:0 0 64,0G 0 disk
├─sdX1 0:1 0 2G 0 part
└─sdX2 0:2 0 30G 0 part /mnt/sdX2
# blkid
/dev/sdX1: LABEL="some" UUID="..." TYPE="vfat"
/dev/sdX2: LABEL="other" UUID="..." TYPE="ext4"
For example, if /dev/sdX is the desired target device, first make sure you un-mount all mounted partitions of the target device. For example
sdX1 and sdX2:
4 of 8 2022-01-21 21:11
Installation - Alpine Linux https://wiki.alpinelinux.org/wiki/Installation
For dd's output-file (of=), however, do not specify a partition number. For example, write to sdX, not sdX1:
Warning: This will overwrite the target device /dev/sdX, so before executing, make sure you have a backup of the data if you can't afford to
lose it.
Windows
For example, there is the Rufus (https://rufus.ie/) program. Rufus will enable you to create bootable USB flash drives under Windows.
Rufus has been tested and works for Alpine Linux 3.12.x with the following settings:
If the computer does not automatically boot from the desired device, one needs to bring up the boot menu and choose the media to boot from.
Depending on the computer, the menu may be accessed by repeatedly pressing a key quickly when booting starts. Some computers require that
you press the button before starting the computer and hold it down while the computer boots. Typical keys are: `F9`-`F12`, sometimes `F7` or
`F8`. If these don't bring up the boot menu, it may be necessary to enter the BIOS configuration and adjust the boot settings, for which typical
keys are: `Del.` `F1` `F2` `F6` or `Esc.`
For "diskless" or "data disk" mode installs, manual partitioning may be needed to prepare the harddisk for committing local backups of the
system state with lbu commit, a package cache, or to use it as the /var mount.
For a "sys" install, custom partitioning is needed only if the desired scheme differs from overwriting an entire disk, or creating the default
/boot, swap and root partitions.
See Setting_up_disks_manually for the alpine options for RAID, encryption, LVM, etc. and manual partitioning.
▪ Keyboard Layout (Local keyboard language and usage mode, e.g. us and variant of us-nodeadkeys.)
5 of 8 2022-01-21 21:11
Installation - Alpine Linux https://wiki.alpinelinux.org/wiki/Installation
If the new local system was configured to run in "diskless" or "data" mode, and you do not want keep booting from the initial (and possibly
read-only) installation media, the boot system needs to be copied to another device or partition.
The target partition may be identified using lsblk (after installing it with apk add lsblk) and/or blkid, similar to previously
identifying the initial installation media device.
Once everything is in place, save your customized configuration with lbu commit before rebooting.
The system may now be power-cycled or rebooted to confirm everything is working correctly.
Please look under "Post-Install" below, for some common things to do after installation.
Additional Documentation
Note: A Post Installation wiki page has been created and some of this information may be moved there in the future,
if you would like to help with this process please go ahead.
6 of 8 2022-01-21 21:11
Installation - Alpine Linux https://wiki.alpinelinux.org/wiki/Installation
Installing
▪ Kernels (kernel selection, e.g. for VMs or RPi)
▪ Directly booting an ISO file (without flashing it to a disk or device)
▪ Dual/multi-boot install to HDD partition
▪ Setting up Networking (including non-standard configurations)
▪ How to make a custom ISO image with mkimage (installation media with its own configuration)
Post-Install
▪ FAQs
▪ Tutorials and Howtos
▪ How to Contribute
▪ Developer Documentation
▪ Wiki etiquette to collaborate on this documentation
7 of 8 2022-01-21 21:11
Installation - Alpine Linux https://wiki.alpinelinux.org/wiki/Installation
Tip: Alpine linux packages stay close to the upstream design. Therefore, all upstream documentation about
configuring a software package, as well as good configuration guides from other distributions that stay close to
upstream, e.g. those in the Arch Wiki (https://wiki.archlinux.org/), are to a large degree, also applicable to
configuring the software on alpine linux, thus can be very useful.
Other Guides
Please check the: [[Installation Category (https://wiki.alpinelinux.org/wiki/Category:Installation)]] pages.
8 of 8 2022-01-21 21:11