README.rst 4.9 KB

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