penguins-eggs 8.1.3 → 9.0.16
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/README.md +332 -168
- package/addons/README.md +78 -84
- package/addons/{pve → blissos}/theme/applications/install-debian.desktop +0 -0
- package/addons/{deblinux → blissos}/theme/artwork/install-debian.png +0 -0
- package/addons/blissos/theme/calamares/branding/blissos-logo.png +0 -0
- package/addons/{guadalinex → blissos}/theme/calamares/branding/branding.desc +0 -0
- package/addons/blissos/theme/calamares/branding/languages.png +0 -0
- package/addons/blissos/theme/calamares/branding/show.qml +75 -0
- package/addons/blissos/theme/calamares/branding/slide1.png +0 -0
- package/addons/blissos/theme/calamares/branding/slide2.png +0 -0
- package/addons/blissos/theme/calamares/branding/slide3.png +0 -0
- package/addons/blissos/theme/calamares/branding/welcome.png +0 -0
- package/addons/{guadalinex → blissos}/theme/calamares/modules/partition.yml +1 -1
- package/{conf/distros/buster/grub/theme.cfg → addons/blissos/theme/livecd/grub.theme.cfg} +10 -9
- package/{conf/distros/buster/isolinux/stdmenu.template.cfg → addons/blissos/theme/livecd/isolinux.theme.cfg} +4 -0
- package/addons/blissos/theme/livecd/splash.png +0 -0
- package/addons/eggs/adapt/applications/eggs-adapt.desktop +1 -1
- package/addons/eggs/theme/calamares/branding/show.qml +1 -1
- package/addons/eggs/theme/livecd/README.md +19 -6
- package/addons/eggs/theme/livecd/{theme.cfg → grub.theme.cfg} +13 -12
- package/addons/eggs/theme/livecd/isolinux.theme.cfg +46 -0
- package/addons/eggs/theme/livecd/splash.png +0 -0
- package/addons/{ufficiozero/theme/livecd/theme.cfg → neon/theme/livecd/grub.theme.cfg} +13 -12
- package/addons/neon/theme/livecd/isolinux.theme.cfg +46 -0
- package/addons/neon/theme/livecd/splash.png +0 -0
- package/addons/templates/grub.template +28 -0
- package/addons/templates/isolinux.template +29 -0
- package/addons/ufficiozero/theme/applications/install-debian.desktop +17 -2
- package/bin/dev +17 -0
- package/bin/dev.cmd +3 -0
- package/bin/run +2 -4
- package/conf/distros/bionic/calamares/settings.yml +5 -5
- package/conf/distros/bookworm/README.md +9 -0
- package/conf/distros/bullseye/README.md +6 -8
- package/conf/distros/buster/calamares/calamares-modules/sources-yolk/sources-yolk.sh +1 -1
- package/conf/distros/buster/calamares/calamares-modules/sources-yolk/sources-yolk.working.sh +1 -1
- package/conf/distros/buster/calamares/modules/shellprocess_eggs-cleanup.yml +6 -0
- package/conf/distros/buster/calamares/settings.yml +14 -3
- package/conf/distros/chimaera/README.md +3 -0
- package/conf/distros/daedalus/README.md +3 -0
- package/conf/distros/focal/calamares/settings.yml +2 -2
- package/conf/distros/hirsute/README.md +1 -1
- package/conf/distros/impish/README.md +9 -0
- package/conf/distros/jammy/README.md +9 -0
- package/conf/distros/jessie/krill/krill-modules/sources-yolk/sources-yolk.sh +1 -1
- package/conf/distros/rolling/README.md +3 -0
- package/conf/distros/rolling/calamares/calamares-modules/remove-link/module.yml +9 -0
- package/conf/distros/rolling/calamares/calamares-modules/remove-link/remove-link.sh +3 -0
- package/conf/distros/rolling/calamares/modules/displaymanager.yml +22 -0
- package/conf/distros/rolling/calamares/modules/finished.yml +6 -0
- package/conf/distros/rolling/calamares/modules/fstab.yml +13 -0
- package/conf/distros/rolling/calamares/modules/locale.yml +97 -0
- package/conf/distros/rolling/calamares/modules/luksopenswaphookcfg.yml +6 -0
- package/conf/distros/rolling/calamares/modules/mount.yml +38 -0
- package/conf/distros/rolling/calamares/modules/packages.yml +8 -0
- package/conf/distros/rolling/calamares/modules/removeuser.yml +15 -0
- package/conf/distros/rolling/calamares/modules/unpackfs.yml +7 -0
- package/conf/distros/rolling/calamares/modules/users.yml +20 -0
- package/conf/distros/rolling/calamares/modules/welcome.yml +19 -0
- package/conf/distros/{bullseye → rolling}/calamares/settings.yml +17 -12
- package/conf/distros/thirtyfive/README.md +3 -0
- package/conf/distros/tumbleweed/README.md +3 -0
- package/conf/eggs.yaml +3 -3
- package/conf/exclude.list +12 -7
- package/conf/tools.yaml +1 -1
- package/lib/classes/basket.js +24 -20
- package/lib/classes/bleach.js +19 -19
- package/lib/classes/compressors.js +15 -14
- package/lib/classes/daddy.js +44 -31
- package/lib/classes/distro.d.ts +3 -2
- package/lib/classes/distro.js +314 -175
- package/lib/classes/family/archlinux.d.ts +69 -0
- package/lib/classes/family/archlinux.js +182 -0
- package/lib/classes/family/debian.d.ts +64 -0
- package/lib/classes/family/debian.js +227 -0
- package/lib/classes/family/fedora.d.ts +63 -0
- package/lib/classes/family/fedora.js +169 -0
- package/lib/classes/family/suse.d.ts +63 -0
- package/lib/classes/family/suse.js +169 -0
- package/lib/classes/i18n.js +16 -16
- package/lib/classes/incubation/branding.js +5 -4
- package/lib/classes/incubation/distros/bionic.js +1 -2
- package/lib/classes/incubation/distros/buster.js +2 -2
- package/lib/classes/incubation/distros/focal.js +3 -2
- package/lib/classes/incubation/distros/jessie.js +1 -25
- package/lib/classes/incubation/distros/{bullseye.d.ts → rolling.d.ts} +3 -3
- package/lib/classes/incubation/distros/{bullseye.js → rolling.js} +15 -16
- package/lib/classes/incubation/fisherman-helper/displaymanager.js +2 -7
- package/lib/classes/incubation/fisherman-helper/packages.js +31 -32
- package/lib/classes/incubation/fisherman.d.ts +17 -17
- package/lib/classes/incubation/fisherman.js +84 -71
- package/lib/classes/incubation/incubator.js +116 -74
- package/lib/classes/incubation/installer.d.ts +2 -2
- package/lib/classes/incubation/installer.js +6 -20
- package/lib/classes/initrd.d.ts +1 -1
- package/lib/classes/initrd.js +37 -30
- package/lib/classes/krill_install.d.ts +4 -4
- package/lib/classes/krill_install.js +166 -162
- package/lib/classes/krill_prepare.d.ts +6 -2
- package/lib/classes/krill_prepare.js +73 -60
- package/lib/classes/n8.js +6 -11
- package/lib/classes/ovary.d.ts +34 -25
- package/lib/classes/ovary.js +771 -688
- package/lib/classes/pacman.d.ts +55 -56
- package/lib/classes/pacman.js +524 -436
- package/lib/classes/pve-live.js +6 -6
- package/lib/classes/settings.js +47 -56
- package/lib/classes/systemctl.d.ts +6 -6
- package/lib/classes/systemctl.js +7 -7
- package/lib/classes/tools.d.ts +1 -1
- package/lib/classes/tools.js +10 -10
- package/lib/classes/users.d.ts +21 -0
- package/lib/classes/users.js +129 -0
- package/lib/classes/utils.d.ts +10 -13
- package/lib/classes/utils.js +128 -107
- package/lib/classes/xdg.js +112 -91
- package/lib/classes/yolk.js +38 -31
- package/lib/commands/adapt.d.ts +3 -3
- package/lib/commands/adapt.js +12 -12
- package/lib/commands/analyze.d.ts +25 -0
- package/lib/commands/analyze.js +74 -0
- package/lib/commands/bro.d.ts +14 -0
- package/lib/commands/bro.js +31 -0
- package/lib/commands/calamares.d.ts +7 -7
- package/lib/commands/calamares.js +22 -54
- package/lib/commands/config.d.ts +5 -5
- package/lib/commands/config.js +69 -79
- package/lib/commands/dad.d.ts +5 -5
- package/lib/commands/dad.js +11 -11
- package/lib/commands/export/deb.d.ts +8 -8
- package/lib/commands/export/deb.js +16 -16
- package/lib/commands/export/docs.d.ts +2 -2
- package/lib/commands/export/docs.js +9 -9
- package/lib/commands/export/iso.d.ts +4 -4
- package/lib/commands/export/iso.js +12 -17
- package/lib/commands/info.d.ts +9 -3
- package/lib/commands/info.js +14 -164
- package/lib/commands/install.d.ts +5 -5
- package/lib/commands/install.js +28 -42
- package/lib/commands/kill.d.ts +3 -3
- package/lib/commands/kill.js +11 -13
- package/lib/commands/mom.d.ts +2 -2
- package/lib/commands/mom.js +8 -8
- package/lib/commands/produce.d.ts +14 -14
- package/lib/commands/produce.js +48 -46
- package/lib/commands/remove.d.ts +5 -5
- package/lib/commands/remove.js +46 -57
- package/lib/commands/syncfrom.d.ts +37 -0
- package/lib/commands/syncfrom.js +156 -0
- package/lib/commands/syncto.d.ts +48 -0
- package/lib/commands/syncto.js +219 -0
- package/lib/commands/tools/clean.d.ts +3 -3
- package/lib/commands/tools/clean.js +10 -12
- package/lib/commands/tools/locales.d.ts +4 -4
- package/lib/commands/tools/locales.js +8 -8
- package/lib/commands/tools/skel.d.ts +4 -4
- package/lib/commands/tools/skel.js +10 -15
- package/lib/commands/tools/stat.d.ts +7 -4
- package/lib/commands/tools/stat.js +20 -13
- package/lib/commands/tools/yolk.d.ts +3 -3
- package/lib/commands/tools/yolk.js +13 -13
- package/lib/commands/update.d.ts +5 -10
- package/lib/commands/update.js +56 -72
- package/lib/components/elements/information.d.ts +4 -0
- package/lib/components/elements/information.js +166 -0
- package/lib/components/elements/steps.js +1 -1
- package/lib/components/elements/title.js +7 -10
- package/lib/components/finished.js +5 -5
- package/lib/components/install.js +5 -5
- package/lib/components/keyboard.js +5 -5
- package/lib/components/location.js +5 -5
- package/lib/components/network.js +5 -5
- package/lib/components/partitions.d.ts +2 -1
- package/lib/components/partitions.js +9 -7
- package/lib/components/summary.js +5 -5
- package/lib/components/users.js +6 -6
- package/lib/components/welcome.js +6 -6
- package/lib/index.d.ts +1 -1
- package/lib/index.js +2 -2
- package/lib/interfaces/i-analyze.d.ts +13 -0
- package/lib/interfaces/i-analyze.js +18 -0
- package/lib/interfaces/i-distro.d.ts +3 -2
- package/lib/interfaces/i-krill.d.ts +1 -0
- package/lib/interfaces/i-settings.d.ts +2 -2
- package/lib/lib/cli-autologin.d.ts +19 -2
- package/lib/lib/cli-autologin.js +114 -39
- package/lib/lib/dependencies.d.ts +9 -6
- package/lib/lib/dependencies.js +22 -13
- package/lib/lib/get_address.js +2 -2
- package/lib/lib/get_dns.js +2 -2
- package/lib/lib/get_domain.js +2 -2
- package/lib/lib/get_gateway.js +2 -2
- package/lib/lib/get_hostname.js +2 -2
- package/lib/lib/get_netmask.js +2 -2
- package/lib/lib/get_password.js +3 -2
- package/lib/lib/get_root_password.js +2 -2
- package/lib/lib/get_userfullname.js +2 -2
- package/lib/lib/get_username.js +2 -2
- package/lib/lib/select_address_type.js +2 -5
- package/lib/lib/select_filesystem_type.js +5 -14
- package/lib/lib/select_installation_device.js +3 -3
- package/lib/lib/select_interface.js +1 -1
- package/lib/lib/select_keyboard_layout.js +2 -10
- package/lib/lib/select_languages.js +2 -2
- package/lib/lib/select_regions.js +1 -12
- package/lib/lib/select_user_swap_choice.js +4 -4
- package/lib/lib/select_zones.js +483 -62
- package/manpages/doc/man/eggs.html +508 -0
- package/manpages/doc/man/eggs.roll.gz +0 -0
- package/oclif.manifest.json +1 -1
- package/package.json +115 -107
- package/scripts/_eggs +275 -0
- package/scripts/bros/waydroid-helper.sh +92 -0
- package/scripts/eggs.bash +68 -19
- package/scripts/mom-cli.sh +6 -5
- package/scripts/not-used/eggs-cleanup.sh +7 -0
- package/scripts/not-used/install-eggs-ppa.sh +2 -0
- package/scripts/{mkinitramfs → not-used/mkinitramfs} +0 -0
- package/scripts/{pve-live.sh → not-used/pve-live.sh} +0 -0
- package/addons/debian/theme/applications/install-debian.desktop +0 -13
- package/addons/debian/theme/artwork/install-debian.png +0 -0
- package/addons/debian/theme/branding/branding.desc +0 -27
- package/addons/debian/theme/branding/debian-logo.png +0 -0
- package/addons/debian/theme/branding/show.qml +0 -51
- package/addons/debian/theme/branding/slide1.png +0 -0
- package/addons/debian/theme/branding/welcome.png +0 -0
- package/addons/deblinux/theme/README.md +0 -16
- package/addons/deblinux/theme/applications/install-debian.desktop +0 -13
- package/addons/deblinux/theme/calamares/branding/branding.desc +0 -23
- package/addons/deblinux/theme/calamares/branding/deblinux-logo.png +0 -0
- package/addons/deblinux/theme/calamares/branding/show.qml +0 -46
- package/addons/deblinux/theme/calamares/branding/slide1.png +0 -0
- package/addons/deblinux/theme/calamares/branding/welcome.png +0 -0
- package/addons/deblinux/theme/calamares/modules/partition.yml +0 -233
- package/addons/eggs/theme/calamares/branding/4tation.png +0 -0
- package/addons/eggs/theme/livecd/grub.template.cfg +0 -60
- package/addons/eggs/theme/livecd/menu.template.cfg +0 -54
- package/addons/guadalinex/theme/README.md +0 -9
- package/addons/guadalinex/theme/applications/install-debian.desktop +0 -28
- package/addons/guadalinex/theme/artwork/install-debian.png +0 -0
- package/addons/guadalinex/theme/calamares/branding/guadalinex-logo.png +0 -0
- package/addons/guadalinex/theme/calamares/branding/show.qml +0 -85
- package/addons/guadalinex/theme/calamares/branding/slide1.png +0 -0
- package/addons/guadalinex/theme/calamares/branding/slide2.png +0 -0
- package/addons/guadalinex/theme/calamares/branding/slide3.png +0 -0
- package/addons/guadalinex/theme/calamares/branding/slide4.png +0 -0
- package/addons/guadalinex/theme/calamares/branding/slide5.png +0 -0
- package/addons/guadalinex/theme/calamares/branding/slide6.png +0 -0
- package/addons/guadalinex/theme/calamares/branding/slide7.png +0 -0
- package/addons/guadalinex/theme/calamares/branding/welcome.png +0 -0
- package/addons/guadalinex/theme/livecd/menu.template.cfg +0 -54
- package/addons/guadalinex/theme/livecd/splash.png +0 -0
- package/addons/guadalinex/theme/livecd/theme.cfg +0 -42
- package/addons/openos/theme/applications/Install-OpenOS-Neon_RLTS-Desktop.png +0 -0
- package/addons/openos/theme/applications/install-debian.desktop +0 -24
- package/addons/openos/theme/artwork/install-debian.png +0 -0
- package/addons/openos/theme/calamares/branding/branding.desc +0 -28
- package/addons/openos/theme/calamares/branding/openos-logo.png +0 -0
- package/addons/openos/theme/calamares/branding/show.qml +0 -203
- package/addons/openos/theme/calamares/branding/slide1.png +0 -0
- package/addons/openos/theme/calamares/branding/slide10.png +0 -0
- package/addons/openos/theme/calamares/branding/slide11.png +0 -0
- package/addons/openos/theme/calamares/branding/slide12.png +0 -0
- package/addons/openos/theme/calamares/branding/slide13.png +0 -0
- package/addons/openos/theme/calamares/branding/slide14.png +0 -0
- package/addons/openos/theme/calamares/branding/slide15.png +0 -0
- package/addons/openos/theme/calamares/branding/slide16.png +0 -0
- package/addons/openos/theme/calamares/branding/slide2.png +0 -0
- package/addons/openos/theme/calamares/branding/slide3.png +0 -0
- package/addons/openos/theme/calamares/branding/slide4.png +0 -0
- package/addons/openos/theme/calamares/branding/slide5.png +0 -0
- package/addons/openos/theme/calamares/branding/slide6.png +0 -0
- package/addons/openos/theme/calamares/branding/slide7.png +0 -0
- package/addons/openos/theme/calamares/branding/slide8.png +0 -0
- package/addons/openos/theme/calamares/branding/slide9.png +0 -0
- package/addons/openos/theme/calamares/branding/welcome.png +0 -0
- package/addons/openos/theme/calamares/branding.desc +0 -24
- package/addons/openos/theme/calamares/lang/calamares-default_ar.qm +0 -0
- package/addons/openos/theme/calamares/lang/calamares-default_en.qm +0 -0
- package/addons/openos/theme/calamares/lang/calamares-default_eo.qm +0 -0
- package/addons/openos/theme/calamares/lang/calamares-default_fr.qm +0 -0
- package/addons/openos/theme/calamares/lang/calamares-default_nl.qm +0 -0
- package/addons/openos/theme/calamares/modules/partition.yml +0 -233
- package/addons/openos/theme/livecd/grub.template.cfg +0 -60
- package/addons/openos/theme/livecd/menu.template.cfg +0 -54
- package/addons/openos/theme/livecd/splash.png +0 -0
- package/addons/openos/theme/livecd/theme.cfg +0 -42
- package/addons/pve/theme/applications/penguins-pve.desktop +0 -24
- package/addons/pve/theme/artwork/install-debian.png +0 -0
- package/addons/pve/theme/calamares/branding/branding.desc +0 -1
- package/addons/pve/theme/calamares/branding/pve-logo.png +0 -0
- package/addons/pve/theme/calamares/branding/show.qml +0 -227
- package/addons/pve/theme/calamares/branding/slide1.png +0 -0
- package/addons/pve/theme/calamares/branding/slide2.png +0 -0
- package/addons/pve/theme/calamares/branding/slide3.png +0 -0
- package/addons/pve/theme/calamares/branding/slide4.png +0 -0
- package/addons/pve/theme/calamares/branding/slide5.png +0 -0
- package/addons/pve/theme/calamares/branding/slide6.png +0 -0
- package/addons/pve/theme/calamares/branding/slide7.png +0 -0
- package/addons/pve/theme/calamares/branding/slide8.png +0 -0
- package/addons/pve/theme/calamares/branding/slide9.png +0 -0
- package/addons/pve/theme/calamares/branding/welcome.png +0 -0
- package/addons/pve/theme/calamares/modules/partition.yml +0 -233
- package/addons/pve/theme/livecd/README.md +0 -8
- package/addons/pve/theme/livecd/grub.template.cfg +0 -60
- package/addons/pve/theme/livecd/menu.template.cfg +0 -54
- package/addons/pve/theme/livecd/splash.png +0 -0
- package/addons/pve/theme/livecd/theme.cfg +0 -42
- package/addons/ufficiozero/theme/artwork/install-debian.png +0 -0
- package/addons/ufficiozero/theme/livecd/README.md +0 -8
- package/addons/ufficiozero/theme/livecd/grub.template.cfg +0 -60
- package/addons/ufficiozero/theme/livecd/menu.template.cfg +0 -54
- package/conf/distros/bullseye/calamares/calamares-modules/bootloader-config/bootloader-config.sh +0 -28
- package/conf/distros/bullseye/calamares/calamares-modules/bootloader-config/module.yml +0 -8
- package/conf/distros/buster/grub/grub.template.cfg +0 -58
- package/conf/distros/buster/grub/loopback.cfg +0 -1
- package/conf/distros/buster/isolinux/isolinux.template.cfg +0 -8
- package/conf/distros/buster/isolinux/menu.template.cfg +0 -56
- package/conf/distros/focal/grub/grub.template.cfg +0 -67
- package/conf/distros/focal/isolinux/menu.template.cfg +0 -54
- package/lib/classes/incubation/distros/beowulf.d.ts +0 -30
- package/lib/classes/incubation/distros/beowulf.js +0 -69
- package/manpages/doc/man/eggs.1.gz +0 -0
package/README.md
CHANGED
|
@@ -31,13 +31,13 @@ All it is written in pure typescript, so ideally can be used with differents Lin
|
|
|
31
31
|
|
|
32
32
|
penguins-eggs, at the moment 2021 may is a mature tool and is extremely usefull, You can easily create your personal customized iso or your organization/school version of Linux and deploy it on your LAN, give it to your friends as usb key or publish yours eggs in the internet!
|
|
33
33
|
|
|
34
|
-
Try penguins-eggs yes
|
|
34
|
+
Try penguins-eggs, yes it is a console utility - no GUI - but don't be scared, penguins-eggs is a console command - really very simple - if you are able to open a terminal, you can use it and yours final users will enjoy of full gui and pratical installer to install your livecd.
|
|
35
35
|
|
|
36
36
|
### addons
|
|
37
37
|
Starting with version 7.6.x, an addons architecture was added to eggs, allowing third parties to develop extensions. Note that currently we have an extension for the theme that includes both branding calamares, link and installer icon. In addition, also as an addon has been developed choose between GUI or CLI installation, adjust the video resolution, remote support, etc.
|
|
38
38
|
|
|
39
39
|
### backup
|
|
40
|
-
From version 8.0.
|
|
40
|
+
From version 8.0.10 You can use the backup mode by simply adding --backup in the produce command. This way eggs will save your users data and accounts and will not add a live user, you will have to log in with the main user of your system with the his password. **Note:** since eggs always configures autologin, you may have a security risk with valuable data. Use this option only for your personal stuff and do not share the iso on the network.
|
|
41
41
|
|
|
42
42
|
### krill
|
|
43
43
|
Starting with eggs 8.0.0 I included a new CLI installer named krill. krill let you to install your system in a nice CLI interface using the same, configuration created by eggs for [calamares](calamares.io). This lead to have "about the same" experience installing, from old distros to new one and for GUI and CLI. To force using krill in place of calamares in a GUI system just: **sudo eggs install --cli**
|
|
@@ -51,64 +51,69 @@ I suggest to leave the default values unchanged during the development of your r
|
|
|
51
51
|
yolk so called - staying on the subject of eggs - is a local repository included in the livecd that contains a minimum of indispensable packages during installation. Thanks to yolk, you can safely install your system without the need of an active internet connection.
|
|
52
52
|
|
|
53
53
|
## What distributions can I use?
|
|
54
|
-
eggs was born on Debian strecth/buster, but actually full support Debian from jessie to sid
|
|
54
|
+
eggs was born on Debian strecth/buster, but actually full support Debian from jessie to bookworm/sid, Devuan beowulf, chimaera, daedalus, Ubuntu bionic, focal, , hirsute, impish, jammy and all derivatives including Linux mint, Deepin, neon KDE, etc. I continuisly try it against Debian various versions, before releases, I tried it successfully in LMDE 4 debbie, and deepin. eggs, generally must work with all the derivates from Debian, Devuan and Ubuntu.
|
|
55
55
|
|
|
56
|
-
|
|
56
|
+
You can read more on the [blog](https://penguins-eggs.net/2021/11/02/distros-that-can-be-remastered-with-eggs/), some examples of iso images remastered with eggs are in the [sourceforge page of the project](https://sourceforge.net/projects/penguins-eggs/files/iso/).
|
|
57
57
|
|
|
58
58
|
## What architecture can I use?
|
|
59
|
-
From eggs v. 8.0.4 I'm releasing eggs in 4 differents architectures: **i386**, **amd64**, **arm64** and **armel**. eggs - at the moment - produce in i386 and amd64, but can be installed already on arm64 and armel. This mean who it is possible to install it in [raspberrypi](https://www.raspberrypi.org/), but again not possible to produce a [Raspberry Pi OS](https://www.raspberrypi.org/software/) egg in armel or arm64. I'm
|
|
59
|
+
From eggs v. 8.0.4 I'm releasing eggs in 4 differents architectures: **i386**, **amd64**, **arm64** and **armel**. eggs - at the moment - produce in i386 and amd64, but can be installed already on arm64 and armel. This mean who it is possible to install it in [raspberrypi](https://www.raspberrypi.org/), but again not possible to produce a [Raspberry Pi OS](https://www.raspberrypi.org/software/) egg in armel or arm64. I'm working to complete this step, but need help and experience.
|
|
60
60
|
|
|
61
61
|
**Note:** Of course it is possible to produce iso for [Raspberry Pi Desktop](https://downloads.raspberrypi.org/rpd_x86/images/) amd64 based.
|
|
62
62
|
|
|
63
63
|
# Packages
|
|
64
|
-
eggs is released
|
|
64
|
+
eggs is released deb packages for i386, amd64, armel and arm64 architectures. Due the characteristic of eggs, they can installed in Debian, Devuan or Ubuntu based distros, withouth worries about different versions, except for the architecture. It include standard scripts for preinst, postinst, prerm and postrm.
|
|
65
|
+
The packages usually go before in sourgeforce page of eggs, (unstable version) and later in ppa (stable version).
|
|
65
66
|
|
|
66
|
-
##
|
|
67
|
-
|
|
67
|
+
## Install eggs
|
|
68
|
+
There are more than a way to install eggs, the most common it's to use penguins-eggs-ppa.
|
|
68
69
|
|
|
69
|
-
###
|
|
70
|
-
This simplest way to install eggs is download the [package eggs](https://sourceforge.net/projects/penguins-eggs/files/packages-deb/) from [sourceforge page of the project](https://sourceforge.net/projects/penguins-eggs/) and install it
|
|
70
|
+
### Using penguins-eggs-ppa (stable version)
|
|
71
71
|
|
|
72
|
-
|
|
73
|
-
sudo dpkg -i eggs_8.0.0-1_amd64.deb
|
|
74
|
-
```
|
|
72
|
+
eggs have it's repository ppa, You can use it, copy and paste in a terminal window the following two lines:
|
|
75
73
|
|
|
76
|
-
or, on a i386 system:
|
|
77
74
|
```
|
|
78
|
-
|
|
75
|
+
curl -SsL https://pieroproietti.github.io/penguins-eggs-ppa/KEY.gpg | gpg --dearmor | sudo tee /usr/share/keyrings/penguins-eggs-ppa-keyring.gpg
|
|
76
|
+
sudo curl -s --compressed -o /etc/apt/sources.list.d/penguins-eggs-ppa.list "https://pieroproietti.github.io/penguins-eggs-ppa/penguins-eggs-ppa.list"
|
|
79
77
|
```
|
|
80
|
-
### update
|
|
81
|
-
The fastest way to use sudo eggs update and choose basket. Eggs let you to select the last 4 versions on the [basket](https://sourceforge.net/projects/penguins-eggs/files/packages-deb/) and install it.
|
|
82
78
|
|
|
83
|
-
|
|
79
|
+
Update your repositories: **sudo apt update** and install eggs: **sudo apt install eggs**.
|
|
84
80
|
|
|
85
|
-
|
|
81
|
+
### Download the package and install with dpkg
|
|
86
82
|
|
|
83
|
+
The simplest way to install eggs is download the [package eggs](https://sourceforge.net/projects/penguins-eggs/files/packages-deb/) from [sourceforge page of the project](https://sourceforge.net/projects/penguins-eggs/) and install it
|
|
87
84
|
|
|
88
|
-
|
|
85
|
+
```
|
|
86
|
+
sudo dpkg -i eggs_14.18.0-1_amd64.deb
|
|
87
|
+
```
|
|
89
88
|
|
|
90
|
-
|
|
89
|
+
or, on a i386 system:
|
|
90
|
+
```
|
|
91
|
+
sudo dpkg -i eggs_8.17.3-1_i386.deb
|
|
92
|
+
```
|
|
91
93
|
|
|
92
|
-
|
|
94
|
+
## Upgrade eggs
|
|
95
|
+
If you are using penguins-eggs-ppa You can ugrade eggs as others packages just: **sudo apt upgrade**.
|
|
93
96
|
|
|
94
|
-
Simply copy and past the following lines:
|
|
95
97
|
|
|
96
|
-
|
|
98
|
+
### Upgrade from basket
|
|
99
|
+
If you are using not the penguins-eggs-ppa, the fastest way to use sudo eggs update and choose basket. Eggs let you to select the last 4 versions on the [basket](https://sourceforge.net/projects/penguins-eggs/files/packages-deb/) and install it.
|
|
97
100
|
|
|
98
|
-
```sudo
|
|
101
|
+
```sudo eggs update```
|
|
99
102
|
|
|
100
|
-
###
|
|
103
|
+
### Manual upgrade
|
|
104
|
+
Simply download new versions of eggs from [sourgeforge page](https://sourceforge.net/projects/penguins-eggs/files/packages-deb/) and install it with the standard command **sudo dpkg -i eggs_8.17.x-1_amd64.deb**.
|
|
101
105
|
|
|
102
|
-
```sudo eggs update```
|
|
103
106
|
|
|
104
107
|
# Usage
|
|
108
|
+
In addition to the description of the commands in this README, you can consult the [Penguin's eggs official book](https://penguins-eggs.net/book/).
|
|
109
|
+
|
|
105
110
|
<!-- usage -->
|
|
106
111
|
```sh-session
|
|
107
112
|
$ npm install -g penguins-eggs
|
|
108
113
|
$ eggs COMMAND
|
|
109
114
|
running command...
|
|
110
|
-
$ eggs (
|
|
111
|
-
penguins-eggs/
|
|
115
|
+
$ eggs (--version|-v)
|
|
116
|
+
penguins-eggs/9.0.16 linux-x64 node-v16.13.2
|
|
112
117
|
$ eggs --help [COMMAND]
|
|
113
118
|
USAGE
|
|
114
119
|
$ eggs COMMAND
|
|
@@ -119,13 +124,15 @@ USAGE
|
|
|
119
124
|
# Commands
|
|
120
125
|
<!-- commands -->
|
|
121
126
|
* [`eggs adapt`](#eggs-adapt)
|
|
127
|
+
* [`eggs analyze`](#eggs-analyze)
|
|
122
128
|
* [`eggs autocomplete [SHELL]`](#eggs-autocomplete-shell)
|
|
129
|
+
* [`eggs bro`](#eggs-bro)
|
|
123
130
|
* [`eggs calamares`](#eggs-calamares)
|
|
124
131
|
* [`eggs config`](#eggs-config)
|
|
125
132
|
* [`eggs dad`](#eggs-dad)
|
|
126
|
-
* [`eggs export
|
|
127
|
-
* [`eggs export
|
|
128
|
-
* [`eggs export
|
|
133
|
+
* [`eggs export deb`](#eggs-export-deb)
|
|
134
|
+
* [`eggs export docs`](#eggs-export-docs)
|
|
135
|
+
* [`eggs export iso`](#eggs-export-iso)
|
|
129
136
|
* [`eggs help [COMMAND]`](#eggs-help-command)
|
|
130
137
|
* [`eggs info`](#eggs-info)
|
|
131
138
|
* [`eggs install`](#eggs-install)
|
|
@@ -133,12 +140,15 @@ USAGE
|
|
|
133
140
|
* [`eggs mom`](#eggs-mom)
|
|
134
141
|
* [`eggs produce`](#eggs-produce)
|
|
135
142
|
* [`eggs remove`](#eggs-remove)
|
|
136
|
-
* [`eggs
|
|
137
|
-
* [`eggs
|
|
138
|
-
* [`eggs tools
|
|
139
|
-
* [`eggs tools
|
|
140
|
-
* [`eggs tools
|
|
143
|
+
* [`eggs syncfrom`](#eggs-syncfrom)
|
|
144
|
+
* [`eggs syncto`](#eggs-syncto)
|
|
145
|
+
* [`eggs tools clean`](#eggs-tools-clean)
|
|
146
|
+
* [`eggs tools locales`](#eggs-tools-locales)
|
|
147
|
+
* [`eggs tools skel`](#eggs-tools-skel)
|
|
148
|
+
* [`eggs tools stat`](#eggs-tools-stat)
|
|
149
|
+
* [`eggs tools yolk`](#eggs-tools-yolk)
|
|
141
150
|
* [`eggs update`](#eggs-update)
|
|
151
|
+
* [`eggs version`](#eggs-version)
|
|
142
152
|
|
|
143
153
|
## `eggs adapt`
|
|
144
154
|
|
|
@@ -146,17 +156,41 @@ adapt monitor resolution for VM only
|
|
|
146
156
|
|
|
147
157
|
```
|
|
148
158
|
USAGE
|
|
149
|
-
$ eggs adapt
|
|
159
|
+
$ eggs adapt [-v] [-h]
|
|
150
160
|
|
|
151
|
-
|
|
152
|
-
-h, --help
|
|
161
|
+
FLAGS
|
|
162
|
+
-h, --help Show CLI help.
|
|
153
163
|
-v, --verbose
|
|
154
164
|
|
|
165
|
+
DESCRIPTION
|
|
166
|
+
adapt monitor resolution for VM only
|
|
167
|
+
|
|
155
168
|
ALIASES
|
|
156
169
|
$ eggs adjust
|
|
157
170
|
```
|
|
158
171
|
|
|
159
|
-
_See code: [src/commands/adapt.ts](https://github.com/pieroproietti/penguins-eggs/blob/
|
|
172
|
+
_See code: [src/commands/adapt.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.0.16/src/commands/adapt.ts)_
|
|
173
|
+
|
|
174
|
+
## `eggs analyze`
|
|
175
|
+
|
|
176
|
+
analyze situation
|
|
177
|
+
|
|
178
|
+
```
|
|
179
|
+
USAGE
|
|
180
|
+
$ eggs analyze [-h] [-v]
|
|
181
|
+
|
|
182
|
+
FLAGS
|
|
183
|
+
-h, --help Show CLI help.
|
|
184
|
+
-v, --verbose verbose
|
|
185
|
+
|
|
186
|
+
DESCRIPTION
|
|
187
|
+
analyze situation
|
|
188
|
+
|
|
189
|
+
EXAMPLES
|
|
190
|
+
$ sudo eggs analyze
|
|
191
|
+
```
|
|
192
|
+
|
|
193
|
+
_See code: [src/commands/analyze.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.0.16/src/commands/analyze.ts)_
|
|
160
194
|
|
|
161
195
|
## `eggs autocomplete [SHELL]`
|
|
162
196
|
|
|
@@ -164,22 +198,45 @@ display autocomplete installation instructions
|
|
|
164
198
|
|
|
165
199
|
```
|
|
166
200
|
USAGE
|
|
167
|
-
$ eggs autocomplete [SHELL]
|
|
201
|
+
$ eggs autocomplete [SHELL] [-r]
|
|
168
202
|
|
|
169
203
|
ARGUMENTS
|
|
170
204
|
SHELL shell type
|
|
171
205
|
|
|
172
|
-
|
|
206
|
+
FLAGS
|
|
173
207
|
-r, --refresh-cache Refresh cache (ignores displaying instructions)
|
|
174
208
|
|
|
209
|
+
DESCRIPTION
|
|
210
|
+
display autocomplete installation instructions
|
|
211
|
+
|
|
175
212
|
EXAMPLES
|
|
176
213
|
$ eggs autocomplete
|
|
214
|
+
|
|
177
215
|
$ eggs autocomplete bash
|
|
216
|
+
|
|
178
217
|
$ eggs autocomplete zsh
|
|
218
|
+
|
|
179
219
|
$ eggs autocomplete --refresh-cache
|
|
180
220
|
```
|
|
181
221
|
|
|
182
|
-
_See code: [@oclif/plugin-autocomplete](https://github.com/oclif/plugin-autocomplete/blob/
|
|
222
|
+
_See code: [@oclif/plugin-autocomplete](https://github.com/oclif/plugin-autocomplete/blob/v1.2.0/src/commands/autocomplete/index.ts)_
|
|
223
|
+
|
|
224
|
+
## `eggs bro`
|
|
225
|
+
|
|
226
|
+
bro: waydroid helper
|
|
227
|
+
|
|
228
|
+
```
|
|
229
|
+
USAGE
|
|
230
|
+
$ eggs bro [-h]
|
|
231
|
+
|
|
232
|
+
FLAGS
|
|
233
|
+
-h, --help Show CLI help.
|
|
234
|
+
|
|
235
|
+
DESCRIPTION
|
|
236
|
+
bro: waydroid helper
|
|
237
|
+
```
|
|
238
|
+
|
|
239
|
+
_See code: [src/commands/bro.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.0.16/src/commands/bro.ts)_
|
|
183
240
|
|
|
184
241
|
## `eggs calamares`
|
|
185
242
|
|
|
@@ -187,15 +244,18 @@ calamares or install or configure it
|
|
|
187
244
|
|
|
188
245
|
```
|
|
189
246
|
USAGE
|
|
190
|
-
$ eggs calamares
|
|
247
|
+
$ eggs calamares [-h] [-v] [-i] [-f] [-r] [--theme <value>]
|
|
191
248
|
|
|
192
|
-
|
|
193
|
-
-f, --final
|
|
194
|
-
-h, --help
|
|
195
|
-
-i, --install
|
|
196
|
-
-r, --remove
|
|
249
|
+
FLAGS
|
|
250
|
+
-f, --final final: remove calamares and all it's dependencies after the installation
|
|
251
|
+
-h, --help Show CLI help.
|
|
252
|
+
-i, --install install calamares and it's dependencies
|
|
253
|
+
-r, --remove remove calamares and it's dependencies
|
|
197
254
|
-v, --verbose
|
|
198
|
-
--theme
|
|
255
|
+
--theme=<value> theme/branding for eggs and calamares
|
|
256
|
+
|
|
257
|
+
DESCRIPTION
|
|
258
|
+
calamares or install or configure it
|
|
199
259
|
|
|
200
260
|
EXAMPLES
|
|
201
261
|
~$ sudo eggs calamares
|
|
@@ -205,7 +265,7 @@ EXAMPLES
|
|
|
205
265
|
install calamares and create it's configuration's files
|
|
206
266
|
```
|
|
207
267
|
|
|
208
|
-
_See code: [src/commands/calamares.ts](https://github.com/pieroproietti/penguins-eggs/blob/
|
|
268
|
+
_See code: [src/commands/calamares.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.0.16/src/commands/calamares.ts)_
|
|
209
269
|
|
|
210
270
|
## `eggs config`
|
|
211
271
|
|
|
@@ -213,23 +273,26 @@ Configure and install prerequisites deb packages to run it
|
|
|
213
273
|
|
|
214
274
|
```
|
|
215
275
|
USAGE
|
|
216
|
-
$ eggs config
|
|
276
|
+
$ eggs config [-n] [-c] [-h] [-v]
|
|
217
277
|
|
|
218
|
-
|
|
278
|
+
FLAGS
|
|
219
279
|
-c, --clean remove old configuration before to create new one
|
|
220
|
-
-h, --help
|
|
280
|
+
-h, --help Show CLI help.
|
|
221
281
|
-n, --nointeractive assume yes
|
|
222
282
|
-v, --verbose verbose
|
|
223
283
|
|
|
284
|
+
DESCRIPTION
|
|
285
|
+
Configure and install prerequisites deb packages to run it
|
|
286
|
+
|
|
224
287
|
ALIASES
|
|
225
288
|
$ eggs prerequisites
|
|
226
289
|
|
|
227
|
-
|
|
290
|
+
EXAMPLES
|
|
228
291
|
~$ sudo eggs config
|
|
229
292
|
Configure and install prerequisites deb packages to run it
|
|
230
293
|
```
|
|
231
294
|
|
|
232
|
-
_See code: [src/commands/config.ts](https://github.com/pieroproietti/penguins-eggs/blob/
|
|
295
|
+
_See code: [src/commands/config.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.0.16/src/commands/config.ts)_
|
|
233
296
|
|
|
234
297
|
## `eggs dad`
|
|
235
298
|
|
|
@@ -237,98 +300,110 @@ ask help from daddy - configuration helper
|
|
|
237
300
|
|
|
238
301
|
```
|
|
239
302
|
USAGE
|
|
240
|
-
$ eggs dad
|
|
303
|
+
$ eggs dad [-h] [-c] [-d] [-v]
|
|
241
304
|
|
|
242
|
-
|
|
305
|
+
FLAGS
|
|
243
306
|
-c, --clean remove old configuration before to create
|
|
244
307
|
-d, --default remove old configuration and force default
|
|
245
|
-
-h, --help
|
|
308
|
+
-h, --help Show CLI help.
|
|
246
309
|
-v, --verbose
|
|
310
|
+
|
|
311
|
+
DESCRIPTION
|
|
312
|
+
ask help from daddy - configuration helper
|
|
247
313
|
```
|
|
248
314
|
|
|
249
|
-
_See code: [src/commands/dad.ts](https://github.com/pieroproietti/penguins-eggs/blob/
|
|
315
|
+
_See code: [src/commands/dad.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.0.16/src/commands/dad.ts)_
|
|
250
316
|
|
|
251
|
-
## `eggs export
|
|
317
|
+
## `eggs export deb`
|
|
252
318
|
|
|
253
319
|
export deb/docs/iso to the destination host
|
|
254
320
|
|
|
255
321
|
```
|
|
256
322
|
USAGE
|
|
257
|
-
$ eggs export
|
|
323
|
+
$ eggs export deb [-h] [-c] [--amd64] [--i386] [--armel] [--arm64] [-a]
|
|
258
324
|
|
|
259
|
-
|
|
325
|
+
FLAGS
|
|
260
326
|
-a, --all export all archs
|
|
261
327
|
-c, --clean remove old .deb before to copy
|
|
262
|
-
-h, --help
|
|
328
|
+
-h, --help Show CLI help.
|
|
263
329
|
--amd64 export amd64 arch
|
|
264
330
|
--arm64 export arm64 arch
|
|
265
331
|
--armel export armel arch
|
|
266
332
|
--i386 export i386 arch
|
|
267
|
-
```
|
|
268
333
|
|
|
269
|
-
|
|
334
|
+
DESCRIPTION
|
|
335
|
+
export deb/docs/iso to the destination host
|
|
336
|
+
```
|
|
270
337
|
|
|
271
|
-
## `eggs export
|
|
338
|
+
## `eggs export docs`
|
|
272
339
|
|
|
273
340
|
remove and export docType documentation of the sources in the destination host
|
|
274
341
|
|
|
275
342
|
```
|
|
276
343
|
USAGE
|
|
277
|
-
$ eggs export
|
|
344
|
+
$ eggs export docs [-h]
|
|
278
345
|
|
|
279
|
-
|
|
280
|
-
-h, --help
|
|
281
|
-
```
|
|
346
|
+
FLAGS
|
|
347
|
+
-h, --help Show CLI help.
|
|
282
348
|
|
|
283
|
-
|
|
349
|
+
DESCRIPTION
|
|
350
|
+
remove and export docType documentation of the sources in the destination host
|
|
351
|
+
```
|
|
284
352
|
|
|
285
|
-
## `eggs export
|
|
353
|
+
## `eggs export iso`
|
|
286
354
|
|
|
287
355
|
export iso in the destination host
|
|
288
356
|
|
|
289
357
|
```
|
|
290
358
|
USAGE
|
|
291
|
-
$ eggs export
|
|
359
|
+
$ eggs export iso [-h] [-b] [-c]
|
|
292
360
|
|
|
293
|
-
|
|
361
|
+
FLAGS
|
|
294
362
|
-b, --backup export backup ISOs
|
|
295
363
|
-c, --clean delete old ISOs before to copy
|
|
296
|
-
-h, --help
|
|
297
|
-
```
|
|
364
|
+
-h, --help Show CLI help.
|
|
298
365
|
|
|
299
|
-
|
|
366
|
+
DESCRIPTION
|
|
367
|
+
export iso in the destination host
|
|
368
|
+
```
|
|
300
369
|
|
|
301
370
|
## `eggs help [COMMAND]`
|
|
302
371
|
|
|
303
|
-
|
|
372
|
+
Display help for eggs.
|
|
304
373
|
|
|
305
374
|
```
|
|
306
375
|
USAGE
|
|
307
|
-
$ eggs help [COMMAND]
|
|
376
|
+
$ eggs help [COMMAND] [-n]
|
|
308
377
|
|
|
309
378
|
ARGUMENTS
|
|
310
|
-
COMMAND
|
|
379
|
+
COMMAND Command to show help for.
|
|
311
380
|
|
|
312
|
-
|
|
313
|
-
--
|
|
381
|
+
FLAGS
|
|
382
|
+
-n, --nested-commands Include all nested commands in the output.
|
|
383
|
+
|
|
384
|
+
DESCRIPTION
|
|
385
|
+
Display help for eggs.
|
|
314
386
|
```
|
|
315
387
|
|
|
316
|
-
_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/
|
|
388
|
+
_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v5.1.10/src/commands/help.ts)_
|
|
317
389
|
|
|
318
390
|
## `eggs info`
|
|
319
391
|
|
|
320
|
-
thinking a different approach to CLI
|
|
392
|
+
re-thinking for a different approach to CLI
|
|
321
393
|
|
|
322
394
|
```
|
|
323
395
|
USAGE
|
|
324
|
-
$ eggs info
|
|
396
|
+
$ eggs info [-v] [-h]
|
|
325
397
|
|
|
326
|
-
|
|
327
|
-
-h, --help
|
|
398
|
+
FLAGS
|
|
399
|
+
-h, --help Show CLI help.
|
|
328
400
|
-v, --verbose
|
|
401
|
+
|
|
402
|
+
DESCRIPTION
|
|
403
|
+
re-thinking for a different approach to CLI
|
|
329
404
|
```
|
|
330
405
|
|
|
331
|
-
_See code: [src/commands/info.ts](https://github.com/pieroproietti/penguins-eggs/blob/
|
|
406
|
+
_See code: [src/commands/info.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.0.16/src/commands/info.ts)_
|
|
332
407
|
|
|
333
408
|
## `eggs install`
|
|
334
409
|
|
|
@@ -336,24 +411,27 @@ command-line system installer - the egg became a penguin!
|
|
|
336
411
|
|
|
337
412
|
```
|
|
338
413
|
USAGE
|
|
339
|
-
$ eggs install
|
|
414
|
+
$ eggs install [-c] [-k] [-h] [-v]
|
|
340
415
|
|
|
341
|
-
|
|
416
|
+
FLAGS
|
|
342
417
|
-c, --cli force use CLI installer
|
|
343
|
-
-h, --help
|
|
344
|
-
-
|
|
418
|
+
-h, --help Show CLI help.
|
|
419
|
+
-k, --crypted crypted CLI installation
|
|
345
420
|
-v, --verbose verbose
|
|
346
421
|
|
|
422
|
+
DESCRIPTION
|
|
423
|
+
command-line system installer - the egg became a penguin!
|
|
424
|
+
|
|
347
425
|
ALIASES
|
|
348
426
|
$ eggs hatch
|
|
349
427
|
$ eggs krill
|
|
350
428
|
|
|
351
|
-
|
|
429
|
+
EXAMPLES
|
|
352
430
|
$ eggs install
|
|
353
431
|
Install the system using GUI or CLI installer
|
|
354
432
|
```
|
|
355
433
|
|
|
356
|
-
_See code: [src/commands/install.ts](https://github.com/pieroproietti/penguins-eggs/blob/
|
|
434
|
+
_See code: [src/commands/install.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.0.16/src/commands/install.ts)_
|
|
357
435
|
|
|
358
436
|
## `eggs kill`
|
|
359
437
|
|
|
@@ -361,18 +439,21 @@ kill the eggs/free the nest
|
|
|
361
439
|
|
|
362
440
|
```
|
|
363
441
|
USAGE
|
|
364
|
-
$ eggs kill
|
|
442
|
+
$ eggs kill [-h] [-v]
|
|
365
443
|
|
|
366
|
-
|
|
367
|
-
-h, --help
|
|
444
|
+
FLAGS
|
|
445
|
+
-h, --help Show CLI help.
|
|
368
446
|
-v, --verbose verbose
|
|
369
447
|
|
|
370
|
-
|
|
448
|
+
DESCRIPTION
|
|
449
|
+
kill the eggs/free the nest
|
|
450
|
+
|
|
451
|
+
EXAMPLES
|
|
371
452
|
$ eggs kill
|
|
372
453
|
kill the eggs/free the nest
|
|
373
454
|
```
|
|
374
455
|
|
|
375
|
-
_See code: [src/commands/kill.ts](https://github.com/pieroproietti/penguins-eggs/blob/
|
|
456
|
+
_See code: [src/commands/kill.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.0.16/src/commands/kill.ts)_
|
|
376
457
|
|
|
377
458
|
## `eggs mom`
|
|
378
459
|
|
|
@@ -380,13 +461,16 @@ ask for mommy - gui helper
|
|
|
380
461
|
|
|
381
462
|
```
|
|
382
463
|
USAGE
|
|
383
|
-
$ eggs mom
|
|
464
|
+
$ eggs mom [-h]
|
|
465
|
+
|
|
466
|
+
FLAGS
|
|
467
|
+
-h, --help Show CLI help.
|
|
384
468
|
|
|
385
|
-
|
|
386
|
-
-
|
|
469
|
+
DESCRIPTION
|
|
470
|
+
ask for mommy - gui helper
|
|
387
471
|
```
|
|
388
472
|
|
|
389
|
-
_See code: [src/commands/mom.ts](https://github.com/pieroproietti/penguins-eggs/blob/
|
|
473
|
+
_See code: [src/commands/mom.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.0.16/src/commands/mom.ts)_
|
|
390
474
|
|
|
391
475
|
## `eggs produce`
|
|
392
476
|
|
|
@@ -394,22 +478,26 @@ the system produce an egg: iso image of your system
|
|
|
394
478
|
|
|
395
479
|
```
|
|
396
480
|
USAGE
|
|
397
|
-
$ eggs produce
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
-
|
|
402
|
-
-
|
|
403
|
-
-
|
|
404
|
-
-
|
|
405
|
-
-
|
|
406
|
-
-
|
|
407
|
-
-
|
|
408
|
-
-
|
|
409
|
-
--
|
|
410
|
-
--
|
|
411
|
-
--
|
|
412
|
-
--
|
|
481
|
+
$ eggs produce [-p <value>] [--basename <value>] [-b] [-f] [-n] [-m] [-v] [-y] [-s] [-h] [--theme <value>]
|
|
482
|
+
[--addons <value>] [--release]
|
|
483
|
+
|
|
484
|
+
FLAGS
|
|
485
|
+
-b, --backup backup mode
|
|
486
|
+
-f, --fast fast compression
|
|
487
|
+
-h, --help Show CLI help.
|
|
488
|
+
-m, --max max compression
|
|
489
|
+
-n, --normal normal compression
|
|
490
|
+
-p, --prefix=<value> prefix
|
|
491
|
+
-s, --script script mode. Generate scripts to manage iso build
|
|
492
|
+
-v, --verbose verbose
|
|
493
|
+
-y, --yolk -y force yolk renew
|
|
494
|
+
--addons=<value>... addons to be used: adapt, ichoice, pve, rsupport
|
|
495
|
+
--basename=<value> basename
|
|
496
|
+
--release release: configure GUI installer to remove eggs and calamares after installation
|
|
497
|
+
--theme=<value> theme for livecd, calamares branding and partitions
|
|
498
|
+
|
|
499
|
+
DESCRIPTION
|
|
500
|
+
the system produce an egg: iso image of your system
|
|
413
501
|
|
|
414
502
|
ALIASES
|
|
415
503
|
$ eggs spawn
|
|
@@ -447,7 +535,7 @@ EXAMPLES
|
|
|
447
535
|
in /home/eggs/ovarium and you can customize all you need
|
|
448
536
|
```
|
|
449
537
|
|
|
450
|
-
_See code: [src/commands/produce.ts](https://github.com/pieroproietti/penguins-eggs/blob/
|
|
538
|
+
_See code: [src/commands/produce.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.0.16/src/commands/produce.ts)_
|
|
451
539
|
|
|
452
540
|
## `eggs remove`
|
|
453
541
|
|
|
@@ -455,139 +543,213 @@ remove eggs and others stuff
|
|
|
455
543
|
|
|
456
544
|
```
|
|
457
545
|
USAGE
|
|
458
|
-
$ eggs remove
|
|
546
|
+
$ eggs remove [-p] [-a] [-h] [-v]
|
|
459
547
|
|
|
460
|
-
|
|
548
|
+
FLAGS
|
|
461
549
|
-a, --autoremove remove eggs packages dependencies
|
|
462
|
-
-h, --help
|
|
550
|
+
-h, --help Show CLI help.
|
|
463
551
|
-p, --purge remove eggs configurations files
|
|
464
552
|
-v, --verbose verbose
|
|
465
553
|
|
|
554
|
+
DESCRIPTION
|
|
555
|
+
remove eggs and others stuff
|
|
556
|
+
|
|
466
557
|
EXAMPLES
|
|
467
558
|
$ sudo eggs remove
|
|
468
559
|
remove eggs
|
|
469
560
|
|
|
470
561
|
$ sudo eggs remove --purge
|
|
471
|
-
remove eggs, eggs configurations,
|
|
562
|
+
remove eggs, eggs configurations, configuration's files
|
|
563
|
+
|
|
564
|
+
$ sudo eggs remove --autoremove
|
|
565
|
+
remove eggs, eggs configurations, packages dependencies
|
|
566
|
+
```
|
|
567
|
+
|
|
568
|
+
_See code: [src/commands/remove.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.0.16/src/commands/remove.ts)_
|
|
569
|
+
|
|
570
|
+
## `eggs syncfrom`
|
|
571
|
+
|
|
572
|
+
Restore users, server and datas from luks-eggs-backup
|
|
573
|
+
|
|
574
|
+
```
|
|
575
|
+
USAGE
|
|
576
|
+
$ eggs syncfrom [-f <value>] [-r <value>] [-h] [-v]
|
|
577
|
+
|
|
578
|
+
FLAGS
|
|
579
|
+
-f, --file=<value> file with LUKS volume encrypted
|
|
580
|
+
-h, --help Show CLI help.
|
|
581
|
+
-r, --rootdir=<value> rootdir of the installed system, when used from live
|
|
582
|
+
-v, --verbose verbose
|
|
583
|
+
|
|
584
|
+
DESCRIPTION
|
|
585
|
+
Restore users, server and datas from luks-eggs-backup
|
|
586
|
+
|
|
587
|
+
ALIASES
|
|
588
|
+
$ eggs restore
|
|
589
|
+
|
|
590
|
+
EXAMPLES
|
|
591
|
+
$ sudo eggs restore
|
|
592
|
+
```
|
|
593
|
+
|
|
594
|
+
_See code: [src/commands/syncfrom.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.0.16/src/commands/syncfrom.ts)_
|
|
595
|
+
|
|
596
|
+
## `eggs syncto`
|
|
597
|
+
|
|
598
|
+
Backup users, server and datas to luks-eggs-backup
|
|
599
|
+
|
|
600
|
+
```
|
|
601
|
+
USAGE
|
|
602
|
+
$ eggs syncto [-k] [-f <value>] [-h] [-v]
|
|
603
|
+
|
|
604
|
+
FLAGS
|
|
605
|
+
-f, --file=<value> file LUKS volume encrypted
|
|
606
|
+
-h, --help Show CLI help.
|
|
607
|
+
-k, --krill krill
|
|
608
|
+
-v, --verbose verbose
|
|
609
|
+
|
|
610
|
+
DESCRIPTION
|
|
611
|
+
Backup users, server and datas to luks-eggs-backup
|
|
612
|
+
|
|
613
|
+
ALIASES
|
|
614
|
+
$ eggs backup
|
|
615
|
+
|
|
616
|
+
EXAMPLES
|
|
617
|
+
$ sudo eggs restore
|
|
472
618
|
```
|
|
473
619
|
|
|
474
|
-
_See code: [src/commands/
|
|
620
|
+
_See code: [src/commands/syncto.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.0.16/src/commands/syncto.ts)_
|
|
475
621
|
|
|
476
|
-
## `eggs tools
|
|
622
|
+
## `eggs tools clean`
|
|
477
623
|
|
|
478
624
|
clean system log, apt, etc
|
|
479
625
|
|
|
480
626
|
```
|
|
481
627
|
USAGE
|
|
482
|
-
$ eggs tools
|
|
628
|
+
$ eggs tools clean [-h] [-v]
|
|
483
629
|
|
|
484
|
-
|
|
485
|
-
-h, --help
|
|
630
|
+
FLAGS
|
|
631
|
+
-h, --help Show CLI help.
|
|
486
632
|
-v, --verbose verbose
|
|
487
633
|
|
|
634
|
+
DESCRIPTION
|
|
635
|
+
clean system log, apt, etc
|
|
636
|
+
|
|
488
637
|
ALIASES
|
|
489
638
|
$ eggs clean
|
|
490
639
|
```
|
|
491
640
|
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
## `eggs tools:locales`
|
|
641
|
+
## `eggs tools locales`
|
|
495
642
|
|
|
496
643
|
install/clean locales
|
|
497
644
|
|
|
498
645
|
```
|
|
499
646
|
USAGE
|
|
500
|
-
$ eggs tools
|
|
647
|
+
$ eggs tools locales [-h] [-r] [-v]
|
|
501
648
|
|
|
502
|
-
|
|
503
|
-
-h, --help
|
|
649
|
+
FLAGS
|
|
650
|
+
-h, --help Show CLI help.
|
|
504
651
|
-r, --reinstall reinstall locales
|
|
505
652
|
-v, --verbose verbose
|
|
506
|
-
```
|
|
507
653
|
|
|
508
|
-
|
|
654
|
+
DESCRIPTION
|
|
655
|
+
install/clean locales
|
|
656
|
+
```
|
|
509
657
|
|
|
510
|
-
## `eggs tools
|
|
658
|
+
## `eggs tools skel`
|
|
511
659
|
|
|
512
660
|
update skel from home configuration
|
|
513
661
|
|
|
514
662
|
```
|
|
515
663
|
USAGE
|
|
516
|
-
$ eggs tools
|
|
664
|
+
$ eggs tools skel [-h] [-u <value>] [-v]
|
|
517
665
|
|
|
518
|
-
|
|
519
|
-
-h, --help
|
|
520
|
-
-u, --user
|
|
666
|
+
FLAGS
|
|
667
|
+
-h, --help Show CLI help.
|
|
668
|
+
-u, --user=<value> user to be used
|
|
521
669
|
-v, --verbose
|
|
522
670
|
|
|
671
|
+
DESCRIPTION
|
|
672
|
+
update skel from home configuration
|
|
673
|
+
|
|
523
674
|
ALIASES
|
|
524
675
|
$ eggs skel
|
|
525
676
|
|
|
526
|
-
|
|
677
|
+
EXAMPLES
|
|
527
678
|
$ eggs skel --user mauro
|
|
528
679
|
desktop configuration of user mauro will get used as default
|
|
529
680
|
```
|
|
530
681
|
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
## `eggs tools:stat`
|
|
682
|
+
## `eggs tools stat`
|
|
534
683
|
|
|
535
684
|
get statistics from sourceforge
|
|
536
685
|
|
|
537
686
|
```
|
|
538
687
|
USAGE
|
|
539
|
-
$ eggs tools
|
|
688
|
+
$ eggs tools stat [-h] [-m] [-y]
|
|
540
689
|
|
|
541
|
-
|
|
542
|
-
-h, --help
|
|
690
|
+
FLAGS
|
|
691
|
+
-h, --help Show CLI help.
|
|
543
692
|
-m, --month current month
|
|
544
693
|
-y, --year current year
|
|
545
694
|
|
|
695
|
+
DESCRIPTION
|
|
696
|
+
get statistics from sourceforge
|
|
697
|
+
|
|
546
698
|
ALIASES
|
|
547
699
|
$ eggs stat
|
|
548
700
|
```
|
|
549
701
|
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
## `eggs tools:yolk`
|
|
702
|
+
## `eggs tools yolk`
|
|
553
703
|
|
|
554
704
|
configure eggs to install without internet
|
|
555
705
|
|
|
556
706
|
```
|
|
557
707
|
USAGE
|
|
558
|
-
$ eggs tools
|
|
708
|
+
$ eggs tools yolk [-h] [-v]
|
|
559
709
|
|
|
560
|
-
|
|
561
|
-
-h, --help
|
|
710
|
+
FLAGS
|
|
711
|
+
-h, --help Show CLI help.
|
|
562
712
|
-v, --verbose
|
|
563
713
|
|
|
564
|
-
|
|
714
|
+
DESCRIPTION
|
|
715
|
+
configure eggs to install without internet
|
|
716
|
+
|
|
717
|
+
EXAMPLES
|
|
565
718
|
$ eggs yolk -v
|
|
566
719
|
```
|
|
567
720
|
|
|
568
|
-
_See code: [src/commands/tools/yolk.ts](https://github.com/pieroproietti/penguins-eggs/blob/v8.1.3/src/commands/tools/yolk.ts)_
|
|
569
|
-
|
|
570
721
|
## `eggs update`
|
|
571
722
|
|
|
572
723
|
update the penguin's eggs tool
|
|
573
724
|
|
|
574
725
|
```
|
|
575
726
|
USAGE
|
|
576
|
-
$ eggs update
|
|
727
|
+
$ eggs update [-h] [-a] [-b] [-v]
|
|
577
728
|
|
|
578
|
-
|
|
729
|
+
FLAGS
|
|
579
730
|
-a, --apt if eggs package is .deb, update from distro repositories
|
|
580
731
|
-b, --basket if eggs package is .deb, update from eggs basket
|
|
581
|
-
-h, --help
|
|
582
|
-
-n, --npm if eggs package is .npm, update from npmjs.com
|
|
732
|
+
-h, --help Show CLI help.
|
|
583
733
|
-v, --verbose verbose
|
|
584
734
|
|
|
585
|
-
|
|
735
|
+
DESCRIPTION
|
|
736
|
+
update the penguin's eggs tool
|
|
737
|
+
|
|
738
|
+
EXAMPLES
|
|
586
739
|
$ eggs update
|
|
587
740
|
update/upgrade the penguin's eggs tool
|
|
588
741
|
```
|
|
589
742
|
|
|
590
|
-
_See code: [src/commands/update.ts](https://github.com/pieroproietti/penguins-eggs/blob/
|
|
743
|
+
_See code: [src/commands/update.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.0.16/src/commands/update.ts)_
|
|
744
|
+
|
|
745
|
+
## `eggs version`
|
|
746
|
+
|
|
747
|
+
```
|
|
748
|
+
USAGE
|
|
749
|
+
$ eggs version
|
|
750
|
+
```
|
|
751
|
+
|
|
752
|
+
_See code: [@oclif/plugin-version](https://github.com/oclif/plugin-version/blob/v1.0.4/src/commands/version.ts)_
|
|
591
753
|
<!-- commandsstop -->
|
|
592
754
|
|
|
593
755
|
# Terminal samples
|
|
@@ -598,11 +760,13 @@ _See code: [src/commands/update.ts](https://github.com/pieroproietti/penguins-eg
|
|
|
598
760
|
No need other configurations, penguins-eggs are battery included or better, as in the real, live is inside! :-D
|
|
599
761
|
|
|
600
762
|
## More informations
|
|
601
|
-
There is [
|
|
763
|
+
There is a [Penguin's eggs official book](https://penguins-eggs.net/book/) and same other documentation - mostly for developers - on [penguins-eggs repo](https://github.com/pieroproietti/penguins-eggs) under **documents** and **i386**, in particular we have [hens, differents species](https://github.com/pieroproietti/penguins-eggs/blob/master/documents/hens-different-species.md) who descrive how to use eggs in manjaro.
|
|
602
764
|
|
|
603
|
-
* [
|
|
765
|
+
* [blog](https://penguins-eggs.net)
|
|
604
766
|
* [facebook penguin's eggs group](https://www.facebook.com/groups/128861437762355/)
|
|
605
767
|
* [sources](https://github.com/pieroproietti/penguins-krill)
|
|
768
|
+
* [telegram](telegram.me/PieroProietti)
|
|
769
|
+
* [twitter](https://twitter.com/pieroproietti)
|
|
606
770
|
|
|
607
771
|
You can contact me at pieroproietti@gmail.com or [meet me](https://meet.jit.si/PenguinsEggsMeeting)
|
|
608
772
|
|