README.rst 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  1. ===========
  2. parabolaiso
  3. ===========
  4. The parabolaiso project features scripts and configuration templates to build installation media (*.iso* images) for BIOS
  5. and UEFI based systems on the x86_64 and i686 architectures. It is based in `archiso <https://gitlab.archlinux.org/archlinux/archiso>`_
  6. and `archiso32 <https://git.archlinux32.org/archiso32>`_.
  7. Currently creating the images is only supported on Parabola GNU/Linux-libre.
  8. Requirements
  9. ============
  10. The following packages need to be installed to be able to create an image with the included scripts:
  11. * arch-install-scripts
  12. * awk
  13. * dosfstools
  14. * e2fsprogs
  15. * erofs-utils (optional)
  16. * findutils
  17. * grub
  18. * gzip
  19. * libarchive
  20. * libisoburn
  21. * mtools
  22. * openssl
  23. * pacman
  24. * sed
  25. * squashfs-tools
  26. For running the images in a virtualized test environment the following packages are required:
  27. * edk2-ovmf
  28. * qemu
  29. For linting the shell scripts the following package is required:
  30. * shellcheck
  31. Profiles
  32. ========
  33. parabolaiso comes with the following profiles: **baseline**, **releng**, **releng-openrc**, **lxde-openrc** and **talkingparabola**.
  34. They can be found below `configs/baseline/ <configs/baseline/>`_, `configs/releng/ <configs/releng/>`_,
  35. `configs/releng-openrc/ <configs/releng-openrc/>`_, `configs/lxde-openrc/ <configs/lxde-openrc/>`_, `configs/talkingparabola/ <configs/talkingparabola/>`_
  36. (respectively). Profiles are defined by files to be placed into overlays (e.g. airootfs → the image's ``/``).
  37. Read `README.profile.rst <docs/README.profile.rst>`_ to learn more about how to create profiles.
  38. Create images
  39. =============
  40. Usually the parabolaiso tools are installed as a package. However, it is also possible to clone this repository and create
  41. images without installing parabolaiso system-wide.
  42. As filesystems are created and various mount actions have to be done when creating an image, **root** is required to run
  43. the scripts.
  44. When parabolaiso is installed system-wide and the modification of a profile is desired, it is necessary to copy it to a
  45. writeable location, as ``/usr/share/parabolaiso`` is tracked by the package manager and only writeable by root (changes will
  46. be lost on update).
  47. The examples below will assume an unmodified profile in a system location (unless noted otherwise).
  48. It is advised to consult the help output of **mkparabolaiso**:
  49. .. code:: sh
  50. mkparabolaiso -h
  51. Create images with packaged parabolaiso
  52. ---------------------------------------
  53. .. code:: sh
  54. mkparabolaiso -w path/to/work_dir -o path/to/out_dir path/to/profile
  55. Create images with local clone
  56. ------------------------------
  57. Clone this repository and run:
  58. .. code:: sh
  59. ./parabolaiso/mkparabolaiso -w path/to/work_dir -o path/to/out_dir path/to/profile
  60. Testing
  61. =======
  62. The convenience script **run_parabolaiso** is provided to boot into the medium using qemu.
  63. It is advised to read its help information:
  64. .. code:: sh
  65. run_parabolaiso -h
  66. Run the following to boot the iso using BIOS:
  67. .. code:: sh
  68. run_parabolaiso -i path/to/a/parabola.iso
  69. Run the following to boot the iso using UEFI:
  70. .. code:: sh
  71. run_parabolaiso -u -i path/to/a/parabola.iso
  72. The script can of course also be executed from this repository:
  73. .. code:: sh
  74. ./scripts/run_parabolaiso.sh -i path/to/a/parabola.iso
  75. Installation
  76. ============
  77. To install parabolaiso system-wide use the included ``Makefile``:
  78. .. code:: sh
  79. make install
  80. Optional features
  81. The iso image contains a GRUB environment block holding the iso name and version. This allows to
  82. boot the iso image from GRUB with a version specific cow directory to mitigate overlay clashes.
  83. .. code:: sh
  84. loopback loop parabola.iso
  85. load_env -f (loop)/boot/grub/grubenv
  86. linux (loop)/parabola/boot/x86_64/vmlinuz-linux-libre ... \
  87. cow_directory=parabola/${VERSION} ...
  88. initrd (loop)/parabola/boot/x86_64/initramfs-linux-libre-lts.img
  89. Contribute
  90. ==========
  91. Development of parabolaiso takes place on Parabola GNU/Linux-libre' Git: https://git.parabola.nu/parabolaiso.git.
  92. Read our `contributing guide <CONTRIBUTING.rst>`_ to learn more about how to provide fixes or improvements for the code
  93. base.
  94. Discussion around parabolaiso takes place on the `dev mailing list
  95. <https://lists.parabola.nu/listinfo/dev>`_ and in `#parabola
  96. <ircs://irc.libera.chat/parabola>`_ on `freenode.net <ircs://irc.libera.chat/>`_.
  97. All past and present authors of parabolaiso are listed in `AUTHORS <AUTHORS.rst>`_.
  98. Releases
  99. ========
  100. `Releases of parabolaiso <https://git.parabola.nu/parabolaiso.git/refs/tags>`_ are created by their current maintainers
  101. - `David P <https://www.parabola.nu/people/hackers/#megver83>`_ (``6DB9C4B4F0D8C0DC432CF6E4227CA7C556B2BA78``)
  102. Tags are signed using respective PGP keys.
  103. To verify a tag, first import the relevant PGP key(s):
  104. .. code:: sh
  105. gpg --auto-key-locate wkd --search-keys megver83@parabola.nu
  106. or
  107. .. code:: sh
  108. gpg --auto-key-locate keyserver --recv-keys 6DB9C4B4F0D8C0DC432CF6E4227CA7C556B2BA78
  109. Afterwards a tag can be verified from a clone of this repository:
  110. .. code:: sh
  111. git verify-tag <tag>
  112. License
  113. =======
  114. parabolaiso is licensed under the terms of the **GPL-3.0-or-later** (see `LICENSE <LICENSE>`_).