penguins-eggs 10.0.55 → 10.0.60
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.oclif.manifest.json +8 -1
- package/README.md +50 -45
- package/addons/eggs/theme/livecd/grub.main.full.cfg +3 -9
- package/addons/eggs/theme/livecd/isolinux.main.full.cfg +3 -4
- package/assets/config.cfg +30 -0
- package/conf/derivatives.yaml +3 -14
- package/conf/distros/buster/calamares/calamares-modules/cleanup/cleanup.sh +8 -1
- package/conf/distros/buster/calamares/modules/partition.yml +159 -23
- package/conf/distros/buster/calamares/modules/removeuser.yml +1 -1
- package/conf/distros/buster/calamares/settings.yml +1 -1
- package/conf/exclude.list.d/master.list +1 -0
- package/conf/krill.yaml +8 -0
- package/dist/classes/distro.js +19 -38
- package/dist/classes/diversions.d.ts +4 -0
- package/dist/classes/diversions.js +13 -3
- package/dist/classes/incubation/incubator.d/alpine.js +1 -1
- package/dist/classes/incubation/incubator.d/bionic.js +1 -1
- package/dist/classes/incubation/incubator.d/buster.js +1 -1
- package/dist/classes/incubation/incubator.d/noble.js +1 -1
- package/dist/classes/incubation/incubator.d/openmamba.js +1 -1
- package/dist/classes/incubation/incubator.d/opensuse.js +1 -1
- package/dist/classes/incubation/incubator.d/rolling.js +1 -1
- package/dist/classes/ovary.d/bind-live-fs.d.ts +18 -0
- package/dist/classes/ovary.d/bind-live-fs.js +185 -0
- package/dist/classes/ovary.d/bind-vfs.d.ts +17 -0
- package/dist/classes/ovary.d/bind-vfs.js +37 -0
- package/dist/classes/ovary.d/create-xdg-autostart.d.ts +13 -0
- package/dist/classes/ovary.d/create-xdg-autostart.js +194 -0
- package/dist/classes/ovary.d/edit-live-fs.d.ts +19 -0
- package/dist/classes/ovary.d/edit-live-fs.js +249 -0
- package/dist/classes/ovary.d/fertilization.d.ts +12 -0
- package/dist/classes/ovary.d/fertilization.js +46 -0
- package/dist/classes/ovary.d/finished.d.ts +13 -0
- package/dist/classes/ovary.d/finished.js +41 -0
- package/dist/classes/ovary.d/initrd.d.ts +21 -0
- package/dist/classes/ovary.d/initrd.js +72 -0
- package/dist/classes/ovary.d/kernel-copy.d.ts +12 -0
- package/dist/classes/ovary.d/kernel-copy.js +36 -0
- package/dist/classes/ovary.d/live-create-structure.d.ts +12 -0
- package/dist/classes/ovary.d/live-create-structure.js +90 -0
- package/dist/classes/ovary.d/make-dot-disk.d.ts +12 -0
- package/dist/classes/ovary.d/make-dot-disk.js +40 -0
- package/dist/classes/ovary.d/make-efi.d.ts +12 -0
- package/dist/classes/ovary.d/make-efi.js +268 -0
- package/dist/classes/ovary.d/make-iso.d.ts +13 -0
- package/dist/classes/ovary.d/make-iso.js +45 -0
- package/dist/classes/ovary.d/make-squashfs.d.ts +18 -0
- package/dist/classes/ovary.d/make-squashfs.js +117 -0
- package/dist/classes/ovary.d/merged.d.ts +31 -0
- package/dist/classes/ovary.d/merged.js +87 -0
- package/dist/classes/ovary.d/produce.d.ts +23 -0
- package/dist/classes/ovary.d/produce.js +287 -0
- package/dist/classes/ovary.d/rexec.d.ts +13 -0
- package/dist/classes/ovary.d/rexec.js +34 -0
- package/dist/classes/ovary.d/syslinux.d.ts +12 -0
- package/dist/classes/ovary.d/syslinux.js +79 -0
- package/dist/classes/ovary.d/user-create-live.d.ts +14 -0
- package/dist/classes/ovary.d/user-create-live.js +86 -0
- package/dist/classes/ovary.d/users-remove.d.ts +9 -0
- package/dist/classes/ovary.d/users-remove.js +38 -0
- package/dist/classes/ovary.d/xorriso-commend.d.ts +14 -0
- package/dist/classes/ovary.d/xorriso-commend.js +119 -0
- package/dist/classes/ovary.d.ts +46 -167
- package/dist/classes/ovary.js +49 -1811
- package/dist/classes/pacman.d/archlinux.js +5 -2
- package/dist/classes/pxe.js +2 -2
- package/dist/classes/settings.d.ts +0 -1
- package/dist/classes/settings.js +2 -2
- package/dist/classes/tailor.js +2 -2
- package/dist/classes/utils.d.ts +8 -5
- package/dist/classes/utils.js +63 -20
- package/dist/commands/export/tarballs.js +2 -2
- package/dist/commands/install.d.ts +1 -0
- package/dist/commands/install.js +7 -4
- package/dist/commands/kill.js +1 -1
- package/dist/commands/status.js +1 -1
- package/dist/commands/tools/ppa.js +1 -1
- package/dist/commands/update.js +3 -3
- package/dist/interfaces/i-luks-passphrase.d.ts +11 -0
- package/dist/interfaces/i-luks-passphrase.js +8 -0
- package/dist/interfaces/i-os-release.d.ts +5 -0
- package/dist/interfaces/i-os-release.js +1 -0
- package/dist/interfaces/index.d.ts +1 -0
- package/dist/{classes → krill/classes}/cfs.js +1 -1
- package/dist/krill/classes/krill_enums.d.ts +24 -0
- package/dist/krill/classes/krill_enums.js +26 -0
- package/dist/krill/classes/prepare.d/confirm.d.ts +5 -0
- package/dist/krill/classes/prepare.d/confirm.js +30 -0
- package/dist/krill/classes/prepare.d/keyboard.d.ts +14 -0
- package/dist/krill/classes/prepare.d/keyboard.js +62 -0
- package/dist/krill/classes/prepare.d/location.d.ts +17 -0
- package/dist/krill/classes/prepare.d/location.js +59 -0
- package/dist/krill/classes/prepare.d/network.d.ts +14 -0
- package/dist/krill/classes/prepare.d/network.js +68 -0
- package/dist/krill/classes/prepare.d/partitions.d.ts +14 -0
- package/dist/krill/classes/prepare.d/partitions.js +86 -0
- package/dist/krill/classes/prepare.d/summary.d.ts +15 -0
- package/dist/krill/classes/prepare.d/summary.js +69 -0
- package/dist/krill/classes/prepare.d/users.d.ts +6 -0
- package/dist/krill/classes/prepare.d/users.js +63 -0
- package/dist/krill/classes/prepare.d/welcome.d.ts +6 -0
- package/dist/krill/classes/prepare.d/welcome.js +30 -0
- package/dist/krill/{prepare.d.ts → classes/prepare.d.ts} +21 -35
- package/dist/krill/classes/prepare.js +314 -0
- package/dist/krill/{modules/add-user.js → classes/sequence.d/add_user.js} +1 -1
- package/dist/krill/{modules → classes/sequence.d}/bootloader.d.ts +1 -1
- package/dist/krill/classes/sequence.d/bootloader.js +95 -0
- package/dist/krill/{modules/bootloader-config.js → classes/sequence.d/bootloader_config.js} +5 -5
- package/dist/krill/{modules/change-password.js → classes/sequence.d/change_password.js} +1 -1
- package/dist/krill/{modules/del-live-user.js → classes/sequence.d/del_live_user.js} +2 -2
- package/dist/krill/{modules → classes/sequence.d}/fstab.d.ts +1 -1
- package/dist/krill/{modules → classes/sequence.d}/fstab.js +80 -14
- package/dist/krill/{modules → classes/sequence.d}/grubcfg.d.ts +1 -1
- package/dist/krill/{modules → classes/sequence.d}/grubcfg.js +6 -2
- package/dist/krill/{modules → classes/sequence.d}/hostname.d.ts +1 -1
- package/dist/krill/{modules → classes/sequence.d}/initramfs.d.ts +1 -1
- package/dist/krill/{modules → classes/sequence.d}/initramfs.js +2 -2
- package/dist/krill/classes/sequence.d/initramfs_cfg.js +35 -0
- package/dist/krill/{modules → classes/sequence.d}/locale.d.ts +1 -1
- package/dist/krill/{modules → classes/sequence.d}/locale.js +2 -2
- package/dist/krill/{modules/m-keyboard.js → classes/sequence.d/m_keyboard.js} +2 -2
- package/dist/krill/{modules/machine-id.js → classes/sequence.d/machine_id.js} +2 -2
- package/dist/krill/{modules → classes/sequence.d}/mkfs.d.ts +1 -1
- package/dist/krill/{modules → classes/sequence.d}/mkfs.js +24 -2
- package/dist/krill/{modules/mount-fs.js → classes/sequence.d/mount_fs.js} +9 -3
- package/dist/krill/{modules/mount-vfs.js → classes/sequence.d/mount_vfs.js} +1 -1
- package/dist/krill/{modules/network-cfg.js → classes/sequence.d/network_cfg.js} +15 -6
- package/dist/krill/{modules → classes/sequence.d}/packages.d.ts +1 -1
- package/dist/krill/{modules → classes/sequence.d}/packages.js +3 -3
- package/dist/krill/{modules/partition.d.ts → classes/sequence.d/partition.d/bios_luks.d.ts} +4 -7
- package/dist/krill/classes/sequence.d/partition.d/bios_luks.js +73 -0
- package/dist/krill/classes/sequence.d/partition.d/bios_standard.d.ts +17 -0
- package/dist/krill/classes/sequence.d/partition.d/bios_standard.js +36 -0
- package/dist/krill/classes/sequence.d/partition.d/uefi_luks.d.ts +17 -0
- package/dist/krill/classes/sequence.d/partition.d/uefi_luks.js +78 -0
- package/dist/krill/classes/sequence.d/partition.d/uefi_standard.d.ts +10 -0
- package/dist/krill/classes/sequence.d/partition.d/uefi_standard.js +32 -0
- package/dist/krill/classes/sequence.d/partition.d.ts +14 -0
- package/dist/krill/classes/sequence.d/partition.js +84 -0
- package/dist/krill/{modules → classes/sequence.d}/umount.d.ts +1 -1
- package/dist/krill/{modules → classes/sequence.d}/umount.js +2 -2
- package/dist/krill/{modules → classes/sequence.d}/unpackfs.d.ts +1 -1
- package/dist/krill/{modules → classes/sequence.d}/unpackfs.js +2 -2
- package/dist/krill/{sequence.d.ts → classes/sequence.d.ts} +40 -58
- package/dist/krill/{sequence.js → classes/sequence.js} +45 -34
- package/dist/{components → krill/components}/information.js +10 -8
- package/dist/{components → krill/components}/keyboard.js +1 -1
- package/dist/{components → krill/components}/location.js +1 -1
- package/dist/{components → krill/components}/network.js +1 -1
- package/dist/{components → krill/components}/partitions.d.ts +4 -2
- package/dist/{components → krill/components}/partitions.js +36 -20
- package/dist/{components → krill/components}/summary.d.ts +2 -1
- package/dist/{components → krill/components}/summary.js +2 -6
- package/dist/{components → krill/components}/title.js +1 -1
- package/dist/{components → krill/components}/users.js +1 -1
- package/dist/{components → krill/components}/welcome.js +1 -1
- package/dist/{interfaces/i-krill.d.ts → krill/interfaces/i_krill.d.ts} +3 -1
- package/dist/{interfaces/i-krill-config.d.ts → krill/interfaces/i_krill_config.d.ts} +3 -1
- package/dist/krill/lib/get_luks_passphrase.d.ts +8 -0
- package/dist/krill/lib/get_luks_passphrase.js +40 -0
- package/dist/{lib → krill/lib}/kill_me_softly.js +2 -2
- package/dist/{lib → krill/lib}/select_filesystem_type.js +2 -9
- package/dist/{lib → krill/lib}/select_installation_device.js +11 -1
- package/dist/{lib → krill/lib}/select_installation_mode.d.ts +2 -1
- package/dist/{lib → krill/lib}/select_installation_mode.js +2 -1
- package/dist/{lib → krill/lib}/select_keyboard_layout.js +1 -1
- package/dist/{lib → krill/lib}/select_keyboard_model.js +1 -1
- package/dist/{lib → krill/lib}/select_keyboard_option.js +1 -1
- package/dist/{lib → krill/lib}/select_keyboard_variant.js +1 -1
- package/dist/{lib → krill/lib}/select_languages.js +1 -1
- package/dist/krill/lib/select_replaced_partition.d.ts +8 -0
- package/dist/krill/lib/select_replaced_partition.js +31 -0
- package/dist/{lib → krill/lib}/select_user_swap_choice.d.ts +2 -1
- package/dist/{lib → krill/lib}/select_user_swap_choice.js +4 -3
- package/dist/lib/utils.d.ts +8 -0
- package/dist/lib/utils.js +8 -0
- package/package.json +28 -27
- package/scripts/_eggs +7 -5
- package/scripts/eggs.bash +3 -3
- package/dist/krill/modules/bootloader.js +0 -157
- package/dist/krill/modules/initramfs-cfg.js +0 -22
- package/dist/krill/modules/partition.js +0 -324
- package/dist/krill/prepare.js +0 -624
- /package/dist/{index-old.d.ts → index_old.d.ts} +0 -0
- /package/dist/{index-old.js → index_old.js} +0 -0
- /package/dist/{classes → krill/classes}/cfs.d.ts +0 -0
- /package/dist/krill/{modules/add-user.d.ts → classes/sequence.d/add_user.d.ts} +0 -0
- /package/dist/krill/{modules/bootloader-config.d.ts → classes/sequence.d/bootloader_config.d.ts} +0 -0
- /package/dist/krill/{modules/change-password.d.ts → classes/sequence.d/change_password.d.ts} +0 -0
- /package/dist/krill/{modules/del-live-user.d.ts → classes/sequence.d/del_live_user.d.ts} +0 -0
- /package/dist/krill/{modules → classes/sequence.d}/hostname.js +0 -0
- /package/dist/krill/{modules/initramfs-cfg.d.ts → classes/sequence.d/initramfs_cfg.d.ts} +0 -0
- /package/dist/krill/{modules/locale-cfg.d.ts → classes/sequence.d/locale_cfg.d.ts} +0 -0
- /package/dist/krill/{modules/locale-cfg.js → classes/sequence.d/locale_cfg.js} +0 -0
- /package/dist/krill/{modules/m-keyboard.d.ts → classes/sequence.d/m_keyboard.d.ts} +0 -0
- /package/dist/krill/{modules/machine-id.d.ts → classes/sequence.d/machine_id.d.ts} +0 -0
- /package/dist/krill/{modules/mount-fs.d.ts → classes/sequence.d/mount_fs.d.ts} +0 -0
- /package/dist/krill/{modules/mount-vfs.d.ts → classes/sequence.d/mount_vfs.d.ts} +0 -0
- /package/dist/krill/{modules/network-cfg.d.ts → classes/sequence.d/network_cfg.d.ts} +0 -0
- /package/dist/krill/{modules/remove-installer-link.d.ts → classes/sequence.d/remove_installer_link.d.ts} +0 -0
- /package/dist/krill/{modules/remove-installer-link.js → classes/sequence.d/remove_installer_link.js} +0 -0
- /package/dist/{components → krill/components}/finished.d.ts +0 -0
- /package/dist/{components → krill/components}/finished.js +0 -0
- /package/dist/{components → krill/components}/information.d.ts +0 -0
- /package/dist/{components → krill/components}/install.d.ts +0 -0
- /package/dist/{components → krill/components}/install.js +0 -0
- /package/dist/{components → krill/components}/keyboard.d.ts +0 -0
- /package/dist/{components → krill/components}/location.d.ts +0 -0
- /package/dist/{components → krill/components}/network.d.ts +0 -0
- /package/dist/{components → krill/components}/steps.d.ts +0 -0
- /package/dist/{components → krill/components}/steps.js +0 -0
- /package/dist/{components → krill/components}/title.d.ts +0 -0
- /package/dist/{components → krill/components}/users.d.ts +0 -0
- /package/dist/{components → krill/components}/welcome.d.ts +0 -0
- /package/dist/{interfaces/i-krill.js → krill/interfaces/i_krill.js} +0 -0
- /package/dist/{interfaces/i-krill-config.js → krill/interfaces/i_krill_config.js} +0 -0
- /package/dist/{lib → krill/lib}/get_address.d.ts +0 -0
- /package/dist/{lib → krill/lib}/get_address.js +0 -0
- /package/dist/{lib → krill/lib}/get_dns.d.ts +0 -0
- /package/dist/{lib → krill/lib}/get_dns.js +0 -0
- /package/dist/{lib → krill/lib}/get_domain.d.ts +0 -0
- /package/dist/{lib → krill/lib}/get_domain.js +0 -0
- /package/dist/{lib → krill/lib}/get_gateway.d.ts +0 -0
- /package/dist/{lib → krill/lib}/get_gateway.js +0 -0
- /package/dist/{lib → krill/lib}/get_hostname.d.ts +0 -0
- /package/dist/{lib → krill/lib}/get_hostname.js +0 -0
- /package/dist/{lib → krill/lib}/get_netmask.d.ts +0 -0
- /package/dist/{lib → krill/lib}/get_netmask.js +0 -0
- /package/dist/{lib → krill/lib}/get_password.d.ts +0 -0
- /package/dist/{lib → krill/lib}/get_password.js +0 -0
- /package/dist/{lib → krill/lib}/get_userfullname.d.ts +0 -0
- /package/dist/{lib → krill/lib}/get_userfullname.js +0 -0
- /package/dist/{lib → krill/lib}/get_username.d.ts +0 -0
- /package/dist/{lib → krill/lib}/get_username.js +0 -0
- /package/dist/{lib → krill/lib}/kill_me_softly.d.ts +0 -0
- /package/dist/{lib → krill/lib}/select_address_type.d.ts +0 -0
- /package/dist/{lib → krill/lib}/select_address_type.js +0 -0
- /package/dist/{lib → krill/lib}/select_filesystem_type.d.ts +0 -0
- /package/dist/{lib → krill/lib}/select_installation_device.d.ts +0 -0
- /package/dist/{lib → krill/lib}/select_interface.d.ts +0 -0
- /package/dist/{lib → krill/lib}/select_interface.js +0 -0
- /package/dist/{lib → krill/lib}/select_keyboard_layout.d.ts +0 -0
- /package/dist/{lib → krill/lib}/select_keyboard_model.d.ts +0 -0
- /package/dist/{lib → krill/lib}/select_keyboard_option.d.ts +0 -0
- /package/dist/{lib → krill/lib}/select_keyboard_variant.d.ts +0 -0
- /package/dist/{lib → krill/lib}/select_languages.d.ts +0 -0
- /package/dist/{lib → krill/lib}/select_regions.d.ts +0 -0
- /package/dist/{lib → krill/lib}/select_regions.js +0 -0
- /package/dist/{lib → krill/lib}/select_zones.d.ts +0 -0
- /package/dist/{lib → krill/lib}/select_zones.js +0 -0
- /package/mkinitcpio/{manjarolinux → manjaro}/README.md +0 -0
- /package/mkinitcpio/{manjarolinux → manjaro}/live.conf +0 -0
package/.oclif.manifest.json
CHANGED
|
@@ -406,6 +406,13 @@
|
|
|
406
406
|
"allowNo": false,
|
|
407
407
|
"type": "boolean"
|
|
408
408
|
},
|
|
409
|
+
"testing": {
|
|
410
|
+
"char": "t",
|
|
411
|
+
"description": "Just testing krill",
|
|
412
|
+
"name": "testing",
|
|
413
|
+
"allowNo": false,
|
|
414
|
+
"type": "boolean"
|
|
415
|
+
},
|
|
409
416
|
"unattended": {
|
|
410
417
|
"char": "u",
|
|
411
418
|
"description": "Unattended installation",
|
|
@@ -1546,5 +1553,5 @@
|
|
|
1546
1553
|
]
|
|
1547
1554
|
}
|
|
1548
1555
|
},
|
|
1549
|
-
"version": "10.0.
|
|
1556
|
+
"version": "10.0.60"
|
|
1550
1557
|
}
|
package/README.md
CHANGED
|
@@ -5,8 +5,9 @@ penguins-eggs
|
|
|
5
5
|
[](https://github.com/pieroproietti/penguins-eggs)
|
|
6
6
|
[](https://penguins-eggs.net)
|
|
7
7
|
[](https://t.me/penguins_eggs)
|
|
8
|
-
[](https://penguins-eggs.net/basket/)
|
|
9
|
+
[](https://drive.google.com/drive/folders/19fwjvsZiW0Dspu2Iq-fQN0J-PDbKBlYY)
|
|
10
|
+
[](https://sourceforge.net/projects/penguins-eggs/files/)
|
|
10
11
|
[](https://npmjs.org/package/penguins-eggs)
|
|
11
12
|
|
|
12
13
|
# Index
|
|
@@ -20,7 +21,6 @@ penguins-eggs
|
|
|
20
21
|
* [Usage](#usage)
|
|
21
22
|
* [Commands](#commands)
|
|
22
23
|
* [penGUI](#pengui)
|
|
23
|
-
* [Star History](#star-history)
|
|
24
24
|
* [Copyright and licenses](#copyright-and-licenses)
|
|
25
25
|
<!-- tocstop -->
|
|
26
26
|
|
|
@@ -56,10 +56,14 @@ Before to install `penguins-eggs-10.x` add the repos from `nodesource`, follow t
|
|
|
56
56
|
#### Debian 9 stretch, Ubuntu 18.04 bionic
|
|
57
57
|
Use the package `penguins-eggs-10.x.x-bionic-x` - compilated against node16 - and follow this [indications](https://github.com/pieroproietti/penguins-eggs/issues/368#issuecomment-2169961955) to get `nodejs>16` available.
|
|
58
58
|
|
|
59
|
-
###
|
|
60
|
-
|
|
59
|
+
### Openmanba
|
|
60
|
+
Openmamba is an italian distribution based on rpm and using dnf as package manager, it is really up-to-date, penguins-eggs is available as rpm package.
|
|
61
61
|
|
|
62
|
-
|
|
62
|
+
### AlmaLinux, Fedora, openSuSE, RockyLinux
|
|
63
|
+
You can easily install [penguins-eggs-tarball](https://penguins-eggs.net/basket/index.php?p=packages%2Ftarballs).
|
|
64
|
+
|
|
65
|
+
### AlpineLinux
|
|
66
|
+
Given the difficulties encountered in updating my version of Alpine's initramfs, I have been forced to suspend the release of packages for this splendid operating system.
|
|
63
67
|
|
|
64
68
|
# Introduction
|
|
65
69
|
|
|
@@ -79,7 +83,7 @@ Written primarily in TypeScript, Penguins’ Eggs is designed to be compatible w
|
|
|
79
83
|
|
|
80
84
|
The tool currently supports Debian, Devuan, Ubuntu, Arch, Manjaro, and their derivatives, across multiple architectures including amd64, i386, and arm64.
|
|
81
85
|
|
|
82
|
-
From the release of version 9.6.x, Penguins’ Eggs is available as a [Debian package](https://
|
|
86
|
+
From the release of version 9.6.x, Penguins’ Eggs is available as a [Debian package](https://penguins-eggs.net/basket/index.php?p=packages%2Fdebs), then was extended to Arch Linux creating the relative [PKGBUILD](https://aur.archlinux.org/packages/penguins-eggs), nowday eggs can remaster AlmaLinux, Fedora, openmamba, openSuSE, RockyLinux too.
|
|
83
87
|
|
|
84
88
|
So, catering to a wide range of systems including PCs, older machines, and single-board ARM systems like the Raspberry Pi, across amd64, i386, and arm64 architectures.
|
|
85
89
|
|
|
@@ -106,8 +110,7 @@ See [penguins-wardrobe](https://github.com/pieroproietti/penguins-wardrobe), for
|
|
|
106
110
|
# Technology
|
|
107
111
|
`eggs` is primarily written in TypeScript and is designed to be compatible with various Linux distributions. While there may be differences in package managers, paths, and other aspects, the underlying programs used to build the live system are generally the same.
|
|
108
112
|
|
|
109
|
-
Currently, `eggs` supports several Linux distributions, including [Arch](https://archlinux.org/), [Debian](https://www.
|
|
110
|
-
debian.org/), [Devuan](https://www.devuan.org/), [Manjaro](https://manjaro.org/), [Ubuntu](https://ubuntu.com/) and [derivatives](./conf/derivatives.yaml).
|
|
113
|
+
Currently, `eggs` supports several Linux distributions, including [AlmaLinux](https://almalinux.org/), [Arch](https://archlinux.org/), [Debian](https://www.debian.org/), [Devuan](https://www.devuan.org/), [LinuxMint](https://www.linuxmint.com/), [Manjaro](https://manjaro.org/), [openmamba](https://openmamba.org/), [openSuSE](https://www.opensuse.org/), [Ubuntu](https://ubuntu.com/), [RockyLinux](https://rockylinux.org/) and [derivatives](./conf/derivatives.yaml).
|
|
111
114
|
|
|
112
115
|
It also caters to different architectures, namely `amd64`, `i386`, and `arm64`.
|
|
113
116
|
|
|
@@ -257,8 +260,8 @@ This let to install, update, remove `penguins-eggs` like a native package.
|
|
|
257
260
|
#### Debian families
|
|
258
261
|
`penguins-eggs-10.0.x` depend on `nodejs >18`, not directly available in all the distros. We can rely on [nodesource](https://github.com/nodesource/distributions?tab=readme-ov-file#debian-and-ubuntu-based-distributions) adding them.
|
|
259
262
|
|
|
260
|
-
##### Download and install penguins-eggs
|
|
261
|
-
To install Eggs, the simplest method is to download the package `penguins-eggs` from the project's SourceForge page [package eggs](https://
|
|
263
|
+
##### Download and install penguins-eggs packages
|
|
264
|
+
To install Eggs, the simplest method is to download the package `penguins-eggs` from the project's SourceForge page [package eggs](https://penguins-eggs.net/basket/index.php?p=packages%2Fdebs) and install it on your system.
|
|
262
265
|
|
|
263
266
|
After downloading the appropriate package, based on your system's architecture, you can proceed with the installation. If you are using an amd64 system, run the following command in the terminal:
|
|
264
267
|
|
|
@@ -300,7 +303,7 @@ sudo apt upgrade
|
|
|
300
303
|
> This command will check for updates for all installed packages, including Eggs, and upgrade them to their latest versions if available.
|
|
301
304
|
|
|
302
305
|
> [!NOTE]
|
|
303
|
-
> On the other hand, if you have not added the `penguins-eggs-ppa` repository, you can manually upgrade Eggs by downloading the new version from the SourceForge page [here](https://
|
|
306
|
+
> On the other hand, if you have not added the `penguins-eggs-ppa` repository, you can manually upgrade Eggs by downloading the new version from the SourceForge page [here](https://penguins-eggs.net/basket/index.php?p=packages%2Fdebs). Once you have downloaded the appropriate package for your system architecture, follow these steps:
|
|
304
307
|
|
|
305
308
|
1. Install the package using the `gdebi` command (assuming you have `gdebi` installed):
|
|
306
309
|
```
|
|
@@ -491,7 +494,7 @@ EXAMPLES
|
|
|
491
494
|
$ eggs adapt
|
|
492
495
|
```
|
|
493
496
|
|
|
494
|
-
_See code: [src/commands/adapt.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
497
|
+
_See code: [src/commands/adapt.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.60/src/commands/adapt.ts)_
|
|
495
498
|
|
|
496
499
|
## `eggs analyze`
|
|
497
500
|
|
|
@@ -512,7 +515,7 @@ EXAMPLES
|
|
|
512
515
|
sudo eggs analyze
|
|
513
516
|
```
|
|
514
517
|
|
|
515
|
-
_See code: [src/commands/analyze.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
518
|
+
_See code: [src/commands/analyze.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.60/src/commands/analyze.ts)_
|
|
516
519
|
|
|
517
520
|
## `eggs autocomplete [SHELL]`
|
|
518
521
|
|
|
@@ -543,7 +546,7 @@ EXAMPLES
|
|
|
543
546
|
$ eggs autocomplete --refresh-cache
|
|
544
547
|
```
|
|
545
548
|
|
|
546
|
-
_See code: [@oclif/plugin-autocomplete](https://github.com/oclif/plugin-autocomplete/blob/v3.2.
|
|
549
|
+
_See code: [@oclif/plugin-autocomplete](https://github.com/oclif/plugin-autocomplete/blob/v3.2.24/src/commands/autocomplete/index.ts)_
|
|
547
550
|
|
|
548
551
|
## `eggs calamares`
|
|
549
552
|
|
|
@@ -576,7 +579,7 @@ EXAMPLES
|
|
|
576
579
|
sudo eggs calamares --remove
|
|
577
580
|
```
|
|
578
581
|
|
|
579
|
-
_See code: [src/commands/calamares.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
582
|
+
_See code: [src/commands/calamares.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.60/src/commands/calamares.ts)_
|
|
580
583
|
|
|
581
584
|
## `eggs config`
|
|
582
585
|
|
|
@@ -603,7 +606,7 @@ EXAMPLES
|
|
|
603
606
|
sudo eggs config --clean --nointeractive
|
|
604
607
|
```
|
|
605
608
|
|
|
606
|
-
_See code: [src/commands/config.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
609
|
+
_See code: [src/commands/config.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.60/src/commands/config.ts)_
|
|
607
610
|
|
|
608
611
|
## `eggs cuckoo`
|
|
609
612
|
|
|
@@ -623,7 +626,7 @@ EXAMPLES
|
|
|
623
626
|
sudo eggs cuckoo
|
|
624
627
|
```
|
|
625
628
|
|
|
626
|
-
_See code: [src/commands/cuckoo.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
629
|
+
_See code: [src/commands/cuckoo.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.60/src/commands/cuckoo.ts)_
|
|
627
630
|
|
|
628
631
|
## `eggs dad`
|
|
629
632
|
|
|
@@ -651,7 +654,7 @@ EXAMPLES
|
|
|
651
654
|
sudo dad --default
|
|
652
655
|
```
|
|
653
656
|
|
|
654
|
-
_See code: [src/commands/dad.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
657
|
+
_See code: [src/commands/dad.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.60/src/commands/dad.ts)_
|
|
655
658
|
|
|
656
659
|
## `eggs export iso`
|
|
657
660
|
|
|
@@ -676,7 +679,7 @@ EXAMPLES
|
|
|
676
679
|
$ eggs export iso --clean
|
|
677
680
|
```
|
|
678
681
|
|
|
679
|
-
_See code: [src/commands/export/iso.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
682
|
+
_See code: [src/commands/export/iso.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.60/src/commands/export/iso.ts)_
|
|
680
683
|
|
|
681
684
|
## `eggs export pkg`
|
|
682
685
|
|
|
@@ -703,7 +706,7 @@ EXAMPLES
|
|
|
703
706
|
$ eggs export pkg --all
|
|
704
707
|
```
|
|
705
708
|
|
|
706
|
-
_See code: [src/commands/export/pkg.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
709
|
+
_See code: [src/commands/export/pkg.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.60/src/commands/export/pkg.ts)_
|
|
707
710
|
|
|
708
711
|
## `eggs export tarballs`
|
|
709
712
|
|
|
@@ -727,7 +730,7 @@ EXAMPLES
|
|
|
727
730
|
$ eggs export tarballs --clean
|
|
728
731
|
```
|
|
729
732
|
|
|
730
|
-
_See code: [src/commands/export/tarballs.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
733
|
+
_See code: [src/commands/export/tarballs.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.60/src/commands/export/tarballs.ts)_
|
|
731
734
|
|
|
732
735
|
## `eggs help [COMMAND]`
|
|
733
736
|
|
|
@@ -747,7 +750,7 @@ DESCRIPTION
|
|
|
747
750
|
Display help for eggs.
|
|
748
751
|
```
|
|
749
752
|
|
|
750
|
-
_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v6.2.
|
|
753
|
+
_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v6.2.26/src/commands/help.ts)_
|
|
751
754
|
|
|
752
755
|
## `eggs install`
|
|
753
756
|
|
|
@@ -755,7 +758,7 @@ krill: the CLI system installer - the egg became a penguin!
|
|
|
755
758
|
|
|
756
759
|
```
|
|
757
760
|
USAGE
|
|
758
|
-
$ eggs install [-b] [-c] [-k] [-d <value>] [-H] [-h] [-i] [-n] [-N] [-p] [-r] [-s] [-S] [-u] [-v]
|
|
761
|
+
$ eggs install [-b] [-c] [-k] [-d <value>] [-H] [-h] [-i] [-n] [-N] [-p] [-r] [-s] [-S] [-t] [-u] [-v]
|
|
759
762
|
|
|
760
763
|
FLAGS
|
|
761
764
|
-H, --halt Halt the system after installation
|
|
@@ -771,6 +774,7 @@ FLAGS
|
|
|
771
774
|
-p, --pve Proxmox VE install
|
|
772
775
|
-r, --random Add random to hostname, eg: colibri-ay412dt
|
|
773
776
|
-s, --small Swap small: RAM
|
|
777
|
+
-t, --testing Just testing krill
|
|
774
778
|
-u, --unattended Unattended installation
|
|
775
779
|
-v, --verbose Verbose
|
|
776
780
|
|
|
@@ -788,7 +792,7 @@ EXAMPLES
|
|
|
788
792
|
sudo eggs install --chroot
|
|
789
793
|
```
|
|
790
794
|
|
|
791
|
-
_See code: [src/commands/install.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
795
|
+
_See code: [src/commands/install.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.60/src/commands/install.ts)_
|
|
792
796
|
|
|
793
797
|
## `eggs kill`
|
|
794
798
|
|
|
@@ -811,7 +815,7 @@ EXAMPLES
|
|
|
811
815
|
sudo eggs kill
|
|
812
816
|
```
|
|
813
817
|
|
|
814
|
-
_See code: [src/commands/kill.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
818
|
+
_See code: [src/commands/kill.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.60/src/commands/kill.ts)_
|
|
815
819
|
|
|
816
820
|
## `eggs krill`
|
|
817
821
|
|
|
@@ -819,7 +823,7 @@ krill: the CLI system installer - the egg became a penguin!
|
|
|
819
823
|
|
|
820
824
|
```
|
|
821
825
|
USAGE
|
|
822
|
-
$ eggs krill [-b] [-c] [-k] [-d <value>] [-H] [-h] [-i] [-n] [-N] [-p] [-r] [-s] [-S] [-u] [-v]
|
|
826
|
+
$ eggs krill [-b] [-c] [-k] [-d <value>] [-H] [-h] [-i] [-n] [-N] [-p] [-r] [-s] [-S] [-t] [-u] [-v]
|
|
823
827
|
|
|
824
828
|
FLAGS
|
|
825
829
|
-H, --halt Halt the system after installation
|
|
@@ -835,6 +839,7 @@ FLAGS
|
|
|
835
839
|
-p, --pve Proxmox VE install
|
|
836
840
|
-r, --random Add random to hostname, eg: colibri-ay412dt
|
|
837
841
|
-s, --small Swap small: RAM
|
|
842
|
+
-t, --testing Just testing krill
|
|
838
843
|
-u, --unattended Unattended installation
|
|
839
844
|
-v, --verbose Verbose
|
|
840
845
|
|
|
@@ -871,7 +876,7 @@ EXAMPLES
|
|
|
871
876
|
$ eggs auto
|
|
872
877
|
```
|
|
873
878
|
|
|
874
|
-
_See code: [src/commands/love.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
879
|
+
_See code: [src/commands/love.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.60/src/commands/love.ts)_
|
|
875
880
|
|
|
876
881
|
## `eggs mom`
|
|
877
882
|
|
|
@@ -891,7 +896,7 @@ EXAMPLES
|
|
|
891
896
|
$ eggs mom
|
|
892
897
|
```
|
|
893
898
|
|
|
894
|
-
_See code: [src/commands/mom.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
899
|
+
_See code: [src/commands/mom.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.60/src/commands/mom.ts)_
|
|
895
900
|
|
|
896
901
|
## `eggs produce`
|
|
897
902
|
|
|
@@ -950,7 +955,7 @@ EXAMPLES
|
|
|
950
955
|
sudo eggs produce --excludes home # exclude ~/*
|
|
951
956
|
```
|
|
952
957
|
|
|
953
|
-
_See code: [src/commands/produce.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
958
|
+
_See code: [src/commands/produce.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.60/src/commands/produce.ts)_
|
|
954
959
|
|
|
955
960
|
## `eggs status`
|
|
956
961
|
|
|
@@ -971,7 +976,7 @@ EXAMPLES
|
|
|
971
976
|
$ eggs status
|
|
972
977
|
```
|
|
973
978
|
|
|
974
|
-
_See code: [src/commands/status.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
979
|
+
_See code: [src/commands/status.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.60/src/commands/status.ts)_
|
|
975
980
|
|
|
976
981
|
## `eggs syncfrom`
|
|
977
982
|
|
|
@@ -997,7 +1002,7 @@ EXAMPLES
|
|
|
997
1002
|
sudo eggs syncfrom --file /path/to/luks-volume
|
|
998
1003
|
```
|
|
999
1004
|
|
|
1000
|
-
_See code: [src/commands/syncfrom.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
1005
|
+
_See code: [src/commands/syncfrom.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.60/src/commands/syncfrom.ts)_
|
|
1001
1006
|
|
|
1002
1007
|
## `eggs syncto`
|
|
1003
1008
|
|
|
@@ -1024,7 +1029,7 @@ EXAMPLES
|
|
|
1024
1029
|
sudo eggs syncto --excludes
|
|
1025
1030
|
```
|
|
1026
1031
|
|
|
1027
|
-
_See code: [src/commands/syncto.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
1032
|
+
_See code: [src/commands/syncto.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.60/src/commands/syncto.ts)_
|
|
1028
1033
|
|
|
1029
1034
|
## `eggs tools clean`
|
|
1030
1035
|
|
|
@@ -1046,7 +1051,7 @@ EXAMPLES
|
|
|
1046
1051
|
sudo eggs tools clean
|
|
1047
1052
|
```
|
|
1048
1053
|
|
|
1049
|
-
_See code: [src/commands/tools/clean.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
1054
|
+
_See code: [src/commands/tools/clean.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.60/src/commands/tools/clean.ts)_
|
|
1050
1055
|
|
|
1051
1056
|
## `eggs tools ppa`
|
|
1052
1057
|
|
|
@@ -1072,7 +1077,7 @@ EXAMPLES
|
|
|
1072
1077
|
sudo eggs tools ppa --remove
|
|
1073
1078
|
```
|
|
1074
1079
|
|
|
1075
|
-
_See code: [src/commands/tools/ppa.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
1080
|
+
_See code: [src/commands/tools/ppa.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.60/src/commands/tools/ppa.ts)_
|
|
1076
1081
|
|
|
1077
1082
|
## `eggs tools skel`
|
|
1078
1083
|
|
|
@@ -1096,7 +1101,7 @@ EXAMPLES
|
|
|
1096
1101
|
sudo eggs tools skel --user user-to-be-copied
|
|
1097
1102
|
```
|
|
1098
1103
|
|
|
1099
|
-
_See code: [src/commands/tools/skel.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
1104
|
+
_See code: [src/commands/tools/skel.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.60/src/commands/tools/skel.ts)_
|
|
1100
1105
|
|
|
1101
1106
|
## `eggs tools stat`
|
|
1102
1107
|
|
|
@@ -1122,7 +1127,7 @@ EXAMPLES
|
|
|
1122
1127
|
$ eggs tools stat --year
|
|
1123
1128
|
```
|
|
1124
1129
|
|
|
1125
|
-
_See code: [src/commands/tools/stat.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
1130
|
+
_See code: [src/commands/tools/stat.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.60/src/commands/tools/stat.ts)_
|
|
1126
1131
|
|
|
1127
1132
|
## `eggs tools yolk`
|
|
1128
1133
|
|
|
@@ -1143,7 +1148,7 @@ EXAMPLES
|
|
|
1143
1148
|
sudo eggs tools yolk
|
|
1144
1149
|
```
|
|
1145
1150
|
|
|
1146
|
-
_See code: [src/commands/tools/yolk.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
1151
|
+
_See code: [src/commands/tools/yolk.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.60/src/commands/tools/yolk.ts)_
|
|
1147
1152
|
|
|
1148
1153
|
## `eggs update`
|
|
1149
1154
|
|
|
@@ -1164,7 +1169,7 @@ EXAMPLES
|
|
|
1164
1169
|
$ eggs update
|
|
1165
1170
|
```
|
|
1166
1171
|
|
|
1167
|
-
_See code: [src/commands/update.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
1172
|
+
_See code: [src/commands/update.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.60/src/commands/update.ts)_
|
|
1168
1173
|
|
|
1169
1174
|
## `eggs version`
|
|
1170
1175
|
|
|
@@ -1184,7 +1189,7 @@ FLAG DESCRIPTIONS
|
|
|
1184
1189
|
Additionally shows the architecture, node version, operating system, and versions of plugins that the CLI is using.
|
|
1185
1190
|
```
|
|
1186
1191
|
|
|
1187
|
-
_See code: [@oclif/plugin-version](https://github.com/oclif/plugin-version/blob/v2.2.
|
|
1192
|
+
_See code: [@oclif/plugin-version](https://github.com/oclif/plugin-version/blob/v2.2.25/src/commands/version.ts)_
|
|
1188
1193
|
|
|
1189
1194
|
## `eggs wardrobe get [REPO]`
|
|
1190
1195
|
|
|
@@ -1210,7 +1215,7 @@ EXAMPLES
|
|
|
1210
1215
|
$ eggs wardrobe get your-wardrobe
|
|
1211
1216
|
```
|
|
1212
1217
|
|
|
1213
|
-
_See code: [src/commands/wardrobe/get.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
1218
|
+
_See code: [src/commands/wardrobe/get.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.60/src/commands/wardrobe/get.ts)_
|
|
1214
1219
|
|
|
1215
1220
|
## `eggs wardrobe list [REPO]`
|
|
1216
1221
|
|
|
@@ -1239,7 +1244,7 @@ EXAMPLES
|
|
|
1239
1244
|
$ eggs wardrobe list --distro arch
|
|
1240
1245
|
```
|
|
1241
1246
|
|
|
1242
|
-
_See code: [src/commands/wardrobe/list.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
1247
|
+
_See code: [src/commands/wardrobe/list.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.60/src/commands/wardrobe/list.ts)_
|
|
1243
1248
|
|
|
1244
1249
|
## `eggs wardrobe show [REPO]`
|
|
1245
1250
|
|
|
@@ -1269,7 +1274,7 @@ EXAMPLES
|
|
|
1269
1274
|
$ eggs wardrobe show accessories/
|
|
1270
1275
|
```
|
|
1271
1276
|
|
|
1272
|
-
_See code: [src/commands/wardrobe/show.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
1277
|
+
_See code: [src/commands/wardrobe/show.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.60/src/commands/wardrobe/show.ts)_
|
|
1273
1278
|
|
|
1274
1279
|
## `eggs wardrobe wear [REPO]`
|
|
1275
1280
|
|
|
@@ -1300,7 +1305,7 @@ EXAMPLES
|
|
|
1300
1305
|
sudo eggs wardrobe wear wagtail/waydroid
|
|
1301
1306
|
```
|
|
1302
1307
|
|
|
1303
|
-
_See code: [src/commands/wardrobe/wear.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.
|
|
1308
|
+
_See code: [src/commands/wardrobe/wear.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.60/src/commands/wardrobe/wear.ts)_
|
|
1304
1309
|
<!-- commandsstop -->
|
|
1305
1310
|
|
|
1306
1311
|
# penGUI
|
|
@@ -1332,7 +1337,7 @@ If you have any questions or need further assistance, feel free to contact me vi
|
|
|
1332
1337
|
|
|
1333
1338
|
Thank you!
|
|
1334
1339
|
|
|
1335
|
-
|
|
1340
|
+
## Star History
|
|
1336
1341
|
This project collects stars, look to the sky... contribute!
|
|
1337
1342
|
|
|
1338
1343
|
[](https://star-history.com/#pieroproietti/penguins-eggs&Date)
|
|
@@ -18,21 +18,21 @@ set theme=/boot/grub/theme.cfg
|
|
|
18
18
|
menuentry "{{{fullname}}} Live/Installation" {
|
|
19
19
|
set gfxpayload=keep
|
|
20
20
|
{{{rmModules}}}
|
|
21
|
-
linux {{{vmlinuz}}} {{{kernel_parameters}}}
|
|
21
|
+
linux {{{vmlinuz}}} {{{kernel_parameters}}} priority=critical retbleed=off mitigations=off audit=0 amd_pstate.enable=1 amd-pstate=active intel_pstate=enable nowatchdog loglevel=0 fsck.mode=skip debugfs=off nmi_watchdog=0 debug=0 audit=0 show_ssp=0 earlyprintk=off kaslr=off no_pasr cfi=of quiet splash
|
|
22
22
|
initrd {{{initrdImg}}}
|
|
23
23
|
}
|
|
24
24
|
|
|
25
25
|
menuentry "{{{fullname}}} Safe Mode" {
|
|
26
26
|
set gfxpayload=keep
|
|
27
27
|
{{{rmModules}}}
|
|
28
|
-
linux {{{vmlinuz}}} {{{kernel_parameters}}}
|
|
28
|
+
linux {{{vmlinuz}}} {{{kernel_parameters}}} priority=critical retbleed=off mitigations=off audit=0 amd_pstate.enable=1 amd-pstate=active intel_pstate=enable nowatchdog loglevel=0 fsck.mode=skip debugfs=off nmi_watchdog=0 debug=0 audit=0 show_ssp=0 earlyprintk=off kaslr=off no_pasr cfi=of quiet splash
|
|
29
29
|
initrd {{{initrdImg}}}
|
|
30
30
|
}
|
|
31
31
|
|
|
32
32
|
menuentry "{{{fullname}}} Text Mode" {
|
|
33
33
|
set gfxpayload=keep
|
|
34
34
|
{{{rmModules}}}
|
|
35
|
-
linux {{{vmlinuz}}} {{{kernel_parameters}}}
|
|
35
|
+
linux {{{vmlinuz}}} {{{kernel_parameters}}} priority=critical retbleed=off mitigations=off audit=0 amd_pstate.enable=1 amd-pstate=active intel_pstate=enable nowatchdog loglevel=0 fsck.mode=skip debugfs=off nmi_watchdog=0 debug=0 audit=0 show_ssp=0 earlyprintk=off kaslr=off no_pasr cfi=of quiet splash
|
|
36
36
|
initrd {{{initrdImg}}}
|
|
37
37
|
}
|
|
38
38
|
grub_platform
|
|
@@ -40,10 +40,4 @@ if [ "$grub_platform" = "efi" ]; then
|
|
|
40
40
|
menuentry "Boot from local disk" {
|
|
41
41
|
exit 1
|
|
42
42
|
}
|
|
43
|
-
#menuentry 'UEFI Firmware Settings' {
|
|
44
|
-
# fwsetup
|
|
45
|
-
#}
|
|
46
|
-
#menuentry 'Memory test' {
|
|
47
|
-
# linux /boot/memtest.efi
|
|
48
|
-
#}
|
|
49
43
|
fi
|
|
@@ -12,21 +12,20 @@ label Live
|
|
|
12
12
|
menu label {{{fullname}}} Live/Installation Mode
|
|
13
13
|
say "Booting {{{fullname}}} GNU/Linux (kernel {{{kernel}}})"
|
|
14
14
|
linux {{{vmlinuz}}}
|
|
15
|
-
append initrd={{{initrdImg}}} {{{kernel_parameters}}}
|
|
16
|
-
|
|
15
|
+
append initrd={{{initrdImg}}} {{{kernel_parameters}}} priority=critical retbleed=off mitigations=off audit=0 amd_pstate.enable=1 amd-pstate=active intel_pstate=enable nowatchdog loglevel=0 fsck.mode=skip debugfs=off nmi_watchdog=0 debug=0 audit=0 show_ssp=0 earlyprintk=off kaslr=off no_pasr cfi=of quiet splash
|
|
17
16
|
|
|
18
17
|
label Safe
|
|
19
18
|
menu label {{{fullname}}} Safe Mode
|
|
20
19
|
say "Booting {{{fullname}}} GNU/Linux (kernel {{{kernel}}})"
|
|
21
20
|
linux {{{vmlinuz}}}
|
|
22
|
-
append initrd={{{initrdImg}}} {{{kernel_parameters}}}
|
|
21
|
+
append initrd={{{initrdImg}}} {{{kernel_parameters}}} priority=critical retbleed=off mitigations=off audit=0 amd_pstate.enable=1 amd-pstate=active intel_pstate=enable nowatchdog loglevel=0 fsck.mode=skip debugfs=off nmi_watchdog=0 debug=0 audit=0 show_ssp=0 earlyprintk=off kaslr=off no_pasr cfi=of quiet splash
|
|
23
22
|
|
|
24
23
|
|
|
25
24
|
label Text
|
|
26
25
|
menu label {{{fullname}}} Text Mode
|
|
27
26
|
say "Booting {{{fullname}}} GNU/Linux (kernel {{{kernel}}})"
|
|
28
27
|
linux {{{vmlinuz}}}
|
|
29
|
-
append initrd={{{initrdImg}}} {{{kernel_parameters}}}
|
|
28
|
+
append initrd={{{initrdImg}}} {{{kernel_parameters}}} priority=critical retbleed=off mitigations=off audit=0 amd_pstate.enable=1 amd-pstate=active intel_pstate=enable nowatchdog loglevel=0 fsck.mode=skip debugfs=off nmi_watchdog=0 debug=0 audit=0 show_ssp=0 earlyprintk=off kaslr=off no_pasr cfi=of quiet splash
|
|
30
29
|
|
|
31
30
|
label local
|
|
32
31
|
menu label Boot from local disk
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
set default=0
|
|
2
|
+
|
|
3
|
+
if [ x$feature_default_font_path = xy ] ; then
|
|
4
|
+
font=unicode
|
|
5
|
+
else
|
|
6
|
+
font=$prefix/unicode.pf2
|
|
7
|
+
fi
|
|
8
|
+
|
|
9
|
+
# Copied from the netinst image
|
|
10
|
+
if loadfont $font ; then
|
|
11
|
+
set gfxmode=800x600
|
|
12
|
+
set gfxpayload=keep
|
|
13
|
+
insmod efi_gop
|
|
14
|
+
insmod efi_uga
|
|
15
|
+
insmod video_bochs
|
|
16
|
+
insmod video_cirrus
|
|
17
|
+
else
|
|
18
|
+
set gfxmode=auto
|
|
19
|
+
insmod all_video
|
|
20
|
+
fi
|
|
21
|
+
|
|
22
|
+
insmod gfxterm
|
|
23
|
+
insmod png
|
|
24
|
+
|
|
25
|
+
source /boot/grub/theme.cfg
|
|
26
|
+
|
|
27
|
+
terminal_output gfxterm
|
|
28
|
+
|
|
29
|
+
insmod play
|
|
30
|
+
play 960 440 1 0 4 440 1
|
package/conf/derivatives.yaml
CHANGED
|
@@ -124,23 +124,12 @@
|
|
|
124
124
|
- n/a # Arch
|
|
125
125
|
|
|
126
126
|
# BluestarLinux
|
|
127
|
-
-
|
|
127
|
+
- bluestarlinux
|
|
128
128
|
|
|
129
129
|
# Garuda
|
|
130
|
-
-
|
|
131
|
-
- Spizaetus
|
|
130
|
+
- spizaetus
|
|
132
131
|
|
|
133
132
|
# Manjaro
|
|
134
|
-
-
|
|
135
|
-
- Ruah
|
|
136
|
-
- Raptor
|
|
137
|
-
- Sikaris
|
|
138
|
-
- Talos
|
|
139
|
-
- UltimaThule
|
|
140
|
-
- Uranos
|
|
141
|
-
- Vulcan
|
|
142
|
-
- Wynsdey
|
|
143
|
-
- Xahea
|
|
144
|
-
- Yonada
|
|
133
|
+
- yonada
|
|
145
134
|
|
|
146
135
|
|
|
@@ -9,5 +9,12 @@ if [ -f "$CHROOT"/etc/issue ]; then
|
|
|
9
9
|
sed -i '/^eggs-start-message/,/^\eggs-end-message/{/^#/!{/^\$/!d;};}' "$CHROOT"/etc/issue
|
|
10
10
|
fi
|
|
11
11
|
|
|
12
|
+
# remove calamares link desktop
|
|
12
13
|
rm -f $CHROOT/usr/share/applications/install-system.desktop
|
|
13
|
-
|
|
14
|
+
|
|
15
|
+
# remove CLI autologin if exists
|
|
16
|
+
rm -f $CHROOT/etc/systemd/system/getty@.service.d/override.conf
|
|
17
|
+
|
|
18
|
+
# remove 10-installer if exists
|
|
19
|
+
rm -f $CHROOT/etc/sudoers.d/10-installer
|
|
20
|
+
|