<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.alpinelinux.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Erkexzcx</id>
	<title>Alpine Linux - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.alpinelinux.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Erkexzcx"/>
	<link rel="alternate" type="text/html" href="https://wiki.alpinelinux.org/wiki/Special:Contributions/Erkexzcx"/>
	<updated>2026-05-05T22:55:34Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.40.0</generator>
	<entry>
		<id>https://wiki.alpinelinux.org/w/index.php?title=User:Erkexzcx/RaspberryPI&amp;diff=23052</id>
		<title>User:Erkexzcx/RaspberryPI</title>
		<link rel="alternate" type="text/html" href="https://wiki.alpinelinux.org/w/index.php?title=User:Erkexzcx/RaspberryPI&amp;diff=23052"/>
		<updated>2023-03-21T20:39:05Z</updated>

		<summary type="html">&lt;p&gt;Erkexzcx: Style, typing mistakes&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Understanding the Procedure =&lt;br /&gt;
&lt;br /&gt;
Alpine Linux installation on Raspberry Pi differs from Arch Linux ARM. For Alpine Linux, you create a single boot partition on the SD card using your computer, copy files from the *.tar.gz package, and then boot the system. Once booted, Alpine Linux will load entirely into RAM, allowing you to perform the regular setup, including repartitioning the SD card. After completion, you can boot into a fully installed Alpine Linux environment.&lt;br /&gt;
&lt;br /&gt;
= Installation for &amp;quot;Live Boot&amp;quot; =&lt;br /&gt;
&lt;br /&gt;
== Partitioning the SD Card ==&lt;br /&gt;
&lt;br /&gt;
Connect the SD card to your computer. Replace &#039;sdX&#039; in the following instructions with the device name for the SD card as it appears on your computer.&lt;br /&gt;
&lt;br /&gt;
Start fdisk to partition the SD card:&lt;br /&gt;
 fdisk /dev/sdX&lt;br /&gt;
&lt;br /&gt;
At the fdisk prompt, delete old partitions and create a new one:&lt;br /&gt;
# Type &#039;&#039;&#039;o&#039;&#039;&#039; to clear out any existing partitions.&lt;br /&gt;
# Type &#039;&#039;&#039;p&#039;&#039;&#039; to list partitions. There should be none left.&lt;br /&gt;
# Type &#039;&#039;&#039;n&#039;&#039;&#039;, then &#039;p&#039; for primary, &#039;&#039;&#039;1&#039;&#039;&#039; for the first partition, press ENTER for the default first sector, and type &#039;&#039;&#039;+256M&#039;&#039;&#039; for the last sector.&lt;br /&gt;
# Type &#039;&#039;&#039;t&#039;&#039;&#039;, then &#039;&#039;&#039;c&#039;&#039;&#039; to set the first partition to type {{ic|W95 FAT32 (LBA)}}.&lt;br /&gt;
# Write the partition table and exit by typing &#039;&#039;&#039;w&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
== Formatting &amp;amp; Mounting the SD Card ==&lt;br /&gt;
&lt;br /&gt;
Create and mount the FAT filesystem:&lt;br /&gt;
 mkfs.vfat /dev/sdX1&lt;br /&gt;
 mkdir boot&lt;br /&gt;
 mount /dev/sdX1 boot&lt;br /&gt;
&lt;br /&gt;
== Download and Copy Files ==&lt;br /&gt;
&lt;br /&gt;
Download and extract the root filesystem (as root, not via sudo):&lt;br /&gt;
 wget https://dl-cdn.alpinelinux.org/alpine/v3.17/releases/aarch64/alpine-rpi-3.17.1-aarch64.tar.gz&lt;br /&gt;
 bsdtar -xpf alpine-rpi-3.17.1-aarch64.tar.gz -C boot&lt;br /&gt;
 sync&lt;br /&gt;
&lt;br /&gt;
== Setting Up Headless Access ==&lt;br /&gt;
&lt;br /&gt;
By default, Alpine Linux does not include an SSH server, WiFi, or any other headless access options. To address this, use the [https://github.com/macmpi/alpine-linux-headless-bootstrap alpine-linux-headless-bootstrap] project. This project enables internet access (on the Ethernet port) and sets up SSH access for &amp;quot;live boot&amp;quot; (see the README.md for more information):&lt;br /&gt;
 wget https://github.com/macmpi/alpine-linux-headless-bootstrap/raw/main/headless.apkovl.tar.gz -P boot&lt;br /&gt;
&lt;br /&gt;
=== (Optional) Setting Up WiFi ===&lt;br /&gt;
&lt;br /&gt;
If you prefer not to use Ethernet, you can configure WiFi access. To set up WiFi on boot, add a single configuration file using the {{ic|wpa_passphrase}} command below:&lt;br /&gt;
 wpa_passphrase &#039;ExampleWifiSSID&#039; &#039;ExampleWifiPassword&#039; &amp;gt; boot/wpa_supplicant.conf&lt;br /&gt;
&lt;br /&gt;
== Unmounting the SD Card ==&lt;br /&gt;
&lt;br /&gt;
You can now unmount the SD card:&lt;br /&gt;
 umount boot&lt;/div&gt;</summary>
		<author><name>Erkexzcx</name></author>
	</entry>
	<entry>
		<id>https://wiki.alpinelinux.org/w/index.php?title=User:Erkexzcx/RaspberryPI&amp;diff=22963</id>
		<title>User:Erkexzcx/RaspberryPI</title>
		<link rel="alternate" type="text/html" href="https://wiki.alpinelinux.org/w/index.php?title=User:Erkexzcx/RaspberryPI&amp;diff=22963"/>
		<updated>2023-02-03T15:48:06Z</updated>

		<summary type="html">&lt;p&gt;Erkexzcx: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Understanding procedure =&lt;br /&gt;
&lt;br /&gt;
Alpine Linux installs differently in comparison to Arch Linux ARM. With Alpine Linux, you will have to create a single boot partition on SD card using your computer, copy/paste files from *.tar.gz package and...boot it. Once booted, Alpine Linux will be fully loaded into the RAM and from there you will perform a regular setup, including repartitioning SD card. Once done, you will be able to boot into a fully installed Alpine Linux installation.&lt;br /&gt;
&lt;br /&gt;
= Installation for &amp;quot;live boot&amp;quot; =&lt;br /&gt;
&lt;br /&gt;
== Partitioning SD card ==&lt;br /&gt;
&lt;br /&gt;
Connect SD card to your computer. Replace sdX in the following instructions with the device name for the SD card as it appears on your computer.&lt;br /&gt;
&lt;br /&gt;
Start fdisk to partition the SD card:&lt;br /&gt;
 fdisk /dev/sdX&lt;br /&gt;
&lt;br /&gt;
At the fdisk prompt, delete old partitions and create a new one:&lt;br /&gt;
# Type &#039;&#039;&#039;o&#039;&#039;&#039;. This will clear out any partitions on the drive.&lt;br /&gt;
# Type &#039;&#039;&#039;p&#039;&#039;&#039; to list partitions. There should be no partitions left.&lt;br /&gt;
# Type &#039;&#039;&#039;n&#039;&#039;&#039;, then p for primary, &#039;&#039;&#039;1&#039;&#039;&#039; for the first partition on the drive, press ENTER to accept the default first sector, then type &#039;&#039;&#039;+256M&#039;&#039;&#039; for the last sector.&lt;br /&gt;
# Type &#039;&#039;&#039;t&#039;&#039;&#039;, then &#039;&#039;&#039;c&#039;&#039;&#039; to set the first partition to type {{ic|W95 FAT32 (LBA)}}.&lt;br /&gt;
# Write the partition table and exit by typing &#039;&#039;&#039;w&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
== Formatting &amp;amp; mounting SD card ==&lt;br /&gt;
&lt;br /&gt;
Create and mount the FAT filesystem:&lt;br /&gt;
 mkfs.vfat /dev/sdX1&lt;br /&gt;
 mkdir boot&lt;br /&gt;
 mount /dev/sdX1 boot&lt;br /&gt;
&lt;br /&gt;
== Download and copy files ==&lt;br /&gt;
&lt;br /&gt;
Download and extract the root filesystem (as root, not via sudo):&lt;br /&gt;
 wget https://dl-cdn.alpinelinux.org/alpine/v3.17/releases/aarch64/alpine-rpi-3.17.1-aarch64.tar.gz&lt;br /&gt;
 bsdtar -xpf alpine-rpi-3.17.1-aarch64.tar.gz -C boot&lt;br /&gt;
 sync&lt;br /&gt;
&lt;br /&gt;
== Setup headless access ==&lt;br /&gt;
&lt;br /&gt;
By default, such Alpine Linux will not have SSH server, wifi or any other headless access. In order to solve it, the project [https://github.com/macmpi/alpine-linux-headless-bootstrap alpine-linux-headless-bootstrap] has been born. This project automatically starts internet (on Ethernet port) as well as setups SSH access for &amp;quot;live boot&amp;quot; (see its README.md for more information):&lt;br /&gt;
 wget https://github.com/macmpi/alpine-linux-headless-bootstrap/raw/main/headless.apkovl.tar.gz -P boot&lt;br /&gt;
&lt;br /&gt;
=== (Optional) Setup WiFi ===&lt;br /&gt;
&lt;br /&gt;
If you won&#039;t be using Ethernet, you can use WiFi. Configuring WiFi on boot is as simple as adding a single configuration file using below {{ic|wpa_passphrase}} command:&lt;br /&gt;
 wpa_passphrase &#039;ExampleWifiSSID&#039; &#039;ExampleWifiPassword&#039; &amp;gt; boot/wpa_supplicant.conf&lt;br /&gt;
&lt;br /&gt;
== Unmount SD card ==&lt;br /&gt;
&lt;br /&gt;
You can now unmount your SD card:&lt;br /&gt;
 umount boot&lt;/div&gt;</summary>
		<author><name>Erkexzcx</name></author>
	</entry>
	<entry>
		<id>https://wiki.alpinelinux.org/w/index.php?title=User:Erkexzcx/RaspberryPI&amp;diff=22962</id>
		<title>User:Erkexzcx/RaspberryPI</title>
		<link rel="alternate" type="text/html" href="https://wiki.alpinelinux.org/w/index.php?title=User:Erkexzcx/RaspberryPI&amp;diff=22962"/>
		<updated>2023-02-03T15:47:37Z</updated>

		<summary type="html">&lt;p&gt;Erkexzcx: Created page with &amp;quot;test&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;test&lt;/div&gt;</summary>
		<author><name>Erkexzcx</name></author>
	</entry>
	<entry>
		<id>https://wiki.alpinelinux.org/w/index.php?title=User:Erkexzcx&amp;diff=22961</id>
		<title>User:Erkexzcx</title>
		<link rel="alternate" type="text/html" href="https://wiki.alpinelinux.org/w/index.php?title=User:Erkexzcx&amp;diff=22961"/>
		<updated>2023-02-03T15:47:20Z</updated>

		<summary type="html">&lt;p&gt;Erkexzcx: Created page with &amp;quot;test&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;test&lt;/div&gt;</summary>
		<author><name>Erkexzcx</name></author>
	</entry>
</feed>