|
|
(6 intermediate revisions by 2 users not shown) |
Line 1: |
Line 1: |
| Title
| |
| Install Alpine Linux on a Raspberry PI 4 in Diskless Mode.
| |
|
| |
|
| Discussion:
| | == How to do a manual LVM install on a Raspberry Pi 4. == |
|
| |
|
| | Insert USB Alpine Linux setup disk into usb2.0 port. <br> |
| | Power on the Raspberry Pi<br> |
| | At the rainbow splash screen, plug in your SDA drive. <br> |
| | Type root at the prompt and press enter.<br> |
|
| |
|
| | # source title<br> |
| | Setting up Logical Volumes with LVM<br> |
|
| |
|
| Preparation
| | Type modprobe dm-mod<br> |
| The Raspberry Pi requires fat 16 / 32 boot partition with boot and LBA flags enabled. The Raspberry PI will boot from either a USB or a Micro SD port.
| | Type echo dm-mod >> /etc/modules-load.d/dm.conf<br> |
| Prepare a USB or Micro SD drive 1st partition fat 32 partition type 0c with boot and LBA flags.
| |
| Use the rest of the drive in the second partition Ext4 partition type 83.
| |
| Extract the contents of alpine-rpi-3.x.x-aarch.tar.gz to the first partition.
| |
|
| |
|
| To start the install,
| | Type setup-keymap us us and press enter<br> |
| TYPE: setup-alpine and PRESS: enter.
| |
|
| |
|
| | Type setup-hostname ha-1836 and press enter<br> |
|
| |
|
| At, Select keyboard layout: [none], prompt.
| | Type setup-interfaces and press enter<br> |
| TYPE: us and PRESS: enter.
| |
| At, Select variant (or 'abort'):, prompt.
| |
| TYPE: us and PRESS: enter.
| |
|
| |
|
| | rc-service networking start<br> |
|
| |
|
| At, Enter system hostname (fully qualified form, e.g. 'foo.example.org') [localhost] prompt.
| | Setup-timezone -z America/Chicago and press enter<br> |
| PRESS: enter, to use the default localhost.
| |
|
| |
|
| | rc-update add networking boot<br> |
|
| |
|
| At, Enter '?' for help on bridges, bonding and vlans.
| | rc-update add seedrng boot<br> |
| Which one do you want to initialize? (or '?' or 'done' [eth0], prompt.
| |
| PRESS: enter, to use the default, ethernet0 connection.
| |
|
| |
|
| Ip address for eth0? (or 'dhcp', 'none', '?') [dhcp], prompt.
| | rc-update add acpid default<br> |
| PRESS: enter to use the default, dhcp.
| |
|
| |
|
| At the second, Enter '?' for help on bridges, bonding and vlans.
| | vi /etc/hosts<br> |
| Which one do you want to initialize? (or '?' or 'done' [wlan0], prompt.
| |
| TYPE: done and PRESS: enter.
| |
|
| |
|
| Then at, Do you want to do and manual network configuration? (y/n) [n], prompt.
| | setup-ntp<br> |
| PRESS enter for the default, [n], for no.
| |
|
| |
|
| | setup-apkrepos<br> |
|
| |
|
| At, Change password for root, prompt.
| | apk update<br> |
| TYPE: the root password, and PRESS: enter.
| |
| At, Retype password, prompt.
| |
| TYPE: the root password and PRESS: enter.
| |
|
| |
|
| | setup-sshd<br> |
|
| |
|
| At, Which timezone are you in? ('?' for a list) [UTC]. prompt.
| | apk add lvm2 e2fsprogs lsblk<br> |
| TYPE: America, with a capital A, and press enter.
| |
|
| |
|
| At, What sub-timezone of 'America' are you in? ('?' for list), prompt.
| | rc-update add lvm<br> |
| TYPE: Chicago, with a capital C, and press enter.
| |
|
| |
|
| | pvcreate /dev/sda2<br> |
|
| |
|
| At, HTTP/FTP proxy URL? (e.g. /http://proxy:8000', or 'none') [none], prompt.
| | vgcreate vg0 /dev/sda2<br> |
| PRESS: enter for the default, none.
| |
|
| |
|
| | lvcreate -n lv_root -L 8G vg0<br> |
|
| |
|
| At, Which NTP Client to run? ('busybox', 'openntpd', 'chrony' or 'none') [chrony], prompt.
| | rc-update add lvm boot<br> |
| PRESS: enter for the default, chrony.
| |
|
| |
|
| | mkfs.ext4 /dev/vg0/lv_root<br> |
|
| |
|
| When the list of mirrors stop and at --More--, prompt
| | initialize volume group<br> |
| PRESS: the letter "r".
| | vgchange -ay<br> |
|
| |
|
| r) Add random from the above list
| | mount -t ext4 /dev/vg0/root /mnt/<br> |
| f) Detect and add the fastest mirror from above list
| | mkdir /mnt/boot<br> |
| e) Edit /etc/apk/repositories with text editor
| | mount /dev/sda1 /mnt/boot<br> |
| | | setup-disk -m sys /mount<br> |
| At, Enter mirror number (1-72) or URL to add (or r/f/e/done) [1], prompt.
| | reboot and remove setup usb drive. |
| PRESS: enter for the default number 1.
| |
| | |
| | |
| At, Setup a user? (enter a lower-case loginname, or 'no') [no], prompt.
| |
| PRESS: enter for the default no.
| |
| | |
| | |
| At, which ssh server? ('openssh', 'dropbear' or 'none'), prompt.
| |
| TYPE: none and PRESS: enter to continue.
| |
| | |
| | |
| No disks available. Try boot media /media/sda1? (y/n) [n]
| |
|
| |
| | |
| Enter where to store configs ('floppy', 'sda1', 'usb', or 'none') [sda1]
| |
| TYPE: none and press enter to continue.
| |
| | |
| Enter apk cache directory (or '?' or 'none') [/media/usb/cache]
| |
| TYPE: none and press enter to continue.
| |
| | |
| | |
| The install is complete.
| |
| | |
| Warning: By default, an lbu commit only stores modifications below /etc, with the exception of the /etc/init.d/ directory.
| |
| | |
| https://wiki.alpinelinux.org/wiki/Alpine_local_backup
| |
| Warning: By default, an lbu commit only stores modifications below /etc, with the exception of the /etc/init.d/ directory.
| |
| However, lbu include enables modifying that set of included files, and can be used to specify additional files or folders.
| |
| | |
| | |
| Create the apk cache file location and a LBU backup directory.
| |
| At the command prompt, TYPE: mkdir /root/config-backups and then PRESS: enter.
| |
| At the command prompt, TYPE: mkdir /etc/apk/cache and then PRESS: enter
| |
| At the command prompt, TYPE: vi /etc/lbu/lbu.conf and then PRESS: enter
| |
| | |
| PRESS: the ESC key and press i to change to insert mode.
| |
| Remove the pound sign at LBU_BACKUPDIR=/root/config-backups
| |
| Remove the pound sign at BACKUP_LIMIT=3
| |
| PRESS the ESC key and TYPE : followed by wq and PRESS enter.
| |
| PRESS lbu ci
| |
| PRESS lbu commit -d
| |
How to do a manual LVM install on a Raspberry Pi 4.
Insert USB Alpine Linux setup disk into usb2.0 port.
Power on the Raspberry Pi
At the rainbow splash screen, plug in your SDA drive.
Type root at the prompt and press enter.
- source title
Setting up Logical Volumes with LVM
Type modprobe dm-mod
Type echo dm-mod >> /etc/modules-load.d/dm.conf
Type setup-keymap us us and press enter
Type setup-hostname ha-1836 and press enter
Type setup-interfaces and press enter
rc-service networking start
Setup-timezone -z America/Chicago and press enter
rc-update add networking boot
rc-update add seedrng boot
rc-update add acpid default
vi /etc/hosts
setup-ntp
setup-apkrepos
apk update
setup-sshd
apk add lvm2 e2fsprogs lsblk
rc-update add lvm
pvcreate /dev/sda2
vgcreate vg0 /dev/sda2
lvcreate -n lv_root -L 8G vg0
rc-update add lvm boot
mkfs.ext4 /dev/vg0/lv_root
initialize volume group
vgchange -ay
mount -t ext4 /dev/vg0/root /mnt/
mkdir /mnt/boot
mount /dev/sda1 /mnt/boot
setup-disk -m sys /mount
reboot and remove setup usb drive.