Project

General

Profile

Managing Alpine Linux » History » Version 2

Nico Schottelius, 07/03/2020 11:20 AM

1 1 Nico Schottelius
h1. Managing Alpine Linux
2
3
h2. Create a UEFI bootable usb stick
4
5 2 Nico Schottelius
* Download the alpine iso
6
* Create one fresh new partition on the USB stick - NEEDS TO BE GPT
7
** partition type must be EFI (ef00)
8
* Format the partition with mkfs.vfat
9
* mount the ISO (mount -o loop /path/to/iso /somewhere)
10
* mount the USB stick (mount /dev/sdX1 /somewhere_else)
11
** copy files from the alpine ISO: @cd /somewhere; tar c . | ( cd /somewhere_else; tar xv ; sync)@
12
* umount the usb stick
13
* umount the ISO
14
15
You can now use the USB stick for UEFI booting.
16
17
18 1 Nico Schottelius
h2. Installing with encrypted root filesystem