Differences between revisions 3 and 4
Revision 3 as of 2020-06-22 16:03:46
Size: 1604
Comment:
Revision 4 as of 2020-07-09 01:53:12
Size: 2503
Comment:
Deletions are marked like this. Additions are marked like this.
Line 61: Line 61:
----



== Maintenance ==

Alpine does best when you do the least with it. In general you will not be installing many packages or configuring the system away from the base image.

Alpine's package manager is `apk`. To add a package, run `apk update && apk add python3`.

Alpine is by default a read-only operating system. To make a change persist, the change must actually be committed to the overlay files. This is done by running `lbu commit -d`.

----



== Docker Setup ==

Alpine was designed to urn Docker. To install Docker (and its ecosystem), run:

{{{
apk add docker
apk add docker-compose
}}}

If this fails because of 'unsatisfiable constraints', the mirrors file must be edited. Uncomment the community repository in `/etc/apk/repositories'.

Docker can be run manually with `service docker start` or set to run at boot with `rc-update add docker boot`.

Alpine Linux


Create Bootable Device

The Alpine Linux wiki recommends use of fdisk. For more general advice regarding partitioning, see here.

First and foremost, insert the device and ensure it is not mounted. (If it is, umount /dev/sdXN.) Secondly, ensure that the device is not using a GPT partition table. This would be listed by 'Disklabel type' in fdisk. The correct value is dos, not gpt.

Per the wiki:

  • Run fdisk on your device (sdX).

fdisk /dev/sdX
  • Create new partition table with one FAT32 partition
    1. d Delete all partitions (this may take a few steps)

    2. n Create a new partition

    3. p A primary partition

    4. 1 Partition number 1

    5. Use defaults for first and last cylinder (just press [Enter] twice).
    6. t Change partition type

    7. c Partition type (Win95 FAT32/LBA)

  • Verify that the primary partition is bootable
    1. p Print list of partitions

    2. If there is no '*' next to the first partition, follow the next steps:
    3. a Make the partition bootable (set boot flag)

    4. 1 Partition number 1

  • w Write your changes to the device

  • Format the new partition with:

mkfs.vfat /dev/sdX1

Note that mkfs.vfat and mkdosfs are the same.

Finally, dd the ISO onto the device. Or for a Raspberry Pi, copy the boot binaries onto the device.


Maintenance

Alpine does best when you do the least with it. In general you will not be installing many packages or configuring the system away from the base image.

Alpine's package manager is apk. To add a package, run apk update && apk add python3.

Alpine is by default a read-only operating system. To make a change persist, the change must actually be committed to the overlay files. This is done by running lbu commit -d.


Docker Setup

Alpine was designed to urn Docker. To install Docker (and its ecosystem), run:

apk add docker
apk add docker-compose

If this fails because of 'unsatisfiable constraints', the mirrors file must be edited. Uncomment the community repository in `/etc/apk/repositories'.

Docker can be run manually with service docker start or set to run at boot with rc-update add docker boot.


CategoryRicottone

Linux/Alpine (last edited 2023-01-08 20:24:15 by DominicRicottone)