penguins-eggs 9.2.2 → 9.2.4

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.
Files changed (87) hide show
  1. package/README.md +145 -130
  2. package/addons/eggs/theme/livecd/isolinux.theme.cfg +36 -41
  3. package/conf/eggs.yaml +41 -73
  4. package/conf/exclude.list +1 -0
  5. package/conf/krill.yaml +38 -0
  6. package/lib/classes/daddy.d.ts +2 -2
  7. package/lib/classes/distro.d.ts +2 -0
  8. package/lib/classes/distro.js +6 -0
  9. package/lib/classes/incubation/fisherman.js +1 -1
  10. package/lib/classes/pacman.js +3 -2
  11. package/lib/classes/pxe.d.ts +42 -0
  12. package/lib/classes/pxe.js +242 -0
  13. package/lib/classes/settings.d.ts +3 -3
  14. package/lib/classes/settings.js +2 -1
  15. package/lib/classes/tools.d.ts +2 -2
  16. package/lib/classes/utils.d.ts +1 -1
  17. package/lib/classes/utils.js +1 -1
  18. package/lib/commands/cuckoo.d.ts +24 -0
  19. package/lib/commands/cuckoo.js +69 -0
  20. package/lib/commands/install.d.ts +2 -2
  21. package/lib/commands/install.js +8 -14
  22. package/lib/commands/produce.js +3 -3
  23. package/lib/commands/{info.d.ts → status.d.ts} +1 -1
  24. package/lib/commands/{info.js → status.js} +5 -5
  25. package/lib/components/summary.d.ts +6 -1
  26. package/lib/components/summary.js +25 -8
  27. package/lib/components/users.js +3 -4
  28. package/lib/interfaces/i-config-tools.d.ts +1 -1
  29. package/lib/interfaces/i-distro.d.ts +2 -0
  30. package/lib/interfaces/{i-config.d.ts → i-eggs-config.d.ts} +2 -4
  31. package/lib/interfaces/{i-config.js → i-eggs-config.js} +0 -0
  32. package/lib/interfaces/i-krill-config.d.ts +26 -0
  33. package/lib/interfaces/i-krill-config.js +2 -0
  34. package/lib/interfaces/i-packages.d.ts +6 -9
  35. package/lib/interfaces/i-packages.js +3 -0
  36. package/lib/interfaces/index.d.ts +1 -1
  37. package/lib/krill/krill-prepare.d.ts +5 -3
  38. package/lib/krill/krill-prepare.js +159 -35
  39. package/lib/krill/krill-sequence.d.ts +5 -3
  40. package/lib/krill/krill-sequence.js +26 -12
  41. package/lib/krill/modules/fstab.d.ts +5 -0
  42. package/lib/krill/modules/fstab.js +5 -0
  43. package/lib/krill/modules/grubcfg.d.ts +5 -0
  44. package/lib/krill/modules/grubcfg.js +5 -0
  45. package/lib/krill/modules/hostname.d.ts +5 -0
  46. package/lib/krill/modules/hostname.js +5 -0
  47. package/lib/krill/modules/hosts.d.ts +5 -0
  48. package/lib/krill/modules/hosts.js +5 -0
  49. package/lib/krill/modules/initramfs-cfg.d.ts +5 -0
  50. package/lib/krill/modules/initramfs-cfg.js +5 -0
  51. package/lib/krill/modules/initramfs.d.ts +5 -0
  52. package/lib/krill/modules/initramfs.js +5 -0
  53. package/lib/krill/modules/locale-cfg.d.ts +5 -0
  54. package/lib/krill/modules/locale-cfg.js +5 -0
  55. package/lib/krill/modules/locale.d.ts +5 -0
  56. package/lib/krill/modules/locale.js +5 -0
  57. package/lib/krill/modules/machine-id.d.ts +5 -0
  58. package/lib/krill/modules/machine-id.js +5 -0
  59. package/lib/krill/modules/mkfs.d.ts +5 -0
  60. package/lib/krill/modules/mkfs.js +5 -0
  61. package/lib/krill/modules/mount-fs.d.ts +5 -0
  62. package/lib/krill/modules/mount-fs.js +5 -0
  63. package/lib/krill/modules/mount-vfs.d.ts +5 -0
  64. package/lib/krill/modules/mount-vfs.js +5 -0
  65. package/lib/krill/modules/network-cfg.d.ts +5 -0
  66. package/lib/krill/modules/network-cfg.js +5 -0
  67. package/lib/krill/modules/packages.d.ts +14 -0
  68. package/lib/krill/modules/packages.js +65 -0
  69. package/lib/krill/modules/{partitions.d.ts → partition.d.ts} +5 -0
  70. package/lib/krill/modules/{partitions.js → partition.js} +5 -0
  71. package/lib/krill/modules/remove-installer-link.d.ts +5 -0
  72. package/lib/krill/modules/remove-installer-link.js +5 -0
  73. package/lib/krill/modules/set-keyboard.d.ts +5 -0
  74. package/lib/krill/modules/set-keyboard.js +37 -18
  75. package/lib/krill/modules/set-timezone.d.ts +5 -0
  76. package/lib/krill/modules/set-timezone.js +5 -0
  77. package/lib/krill/modules/umount.d.ts +5 -0
  78. package/lib/krill/modules/umount.js +5 -0
  79. package/lib/krill/modules/unpackfs.d.ts +5 -0
  80. package/lib/krill/modules/unpackfs.js +5 -0
  81. package/manpages/doc/man/eggs.1.gz +0 -0
  82. package/manpages/doc/man/eggs.html +72 -83
  83. package/package.json +6 -2
  84. package/scripts/_eggs +23 -24
  85. package/scripts/eggs.bash +4 -4
  86. package/scripts/mom-cli.sh +11 -11
  87. package/manpages/doc/man/eggs.roll.gz +0 -0
package/README.md CHANGED
@@ -4,61 +4,53 @@ penguins-eggs
4
4
  =============
5
5
 
6
6
  ### Penguin's eggs are generated and new birds are ready to fly...
7
- [![sources](https://img.shields.io/badge/github-sources-blue)](https://github.com/pieroproietti/penguins-eggs)
8
- [![blog](https://img.shields.io/badge/blog-penguin's%20eggs-blue)](https://penguins-eggs.net)
9
- [![sources-documentation](https://img.shields.io/badge/sources-documentation-blue)](https://penguins-eggs.sourceforge.io/)
10
- [![guide](https://img.shields.io/badge/guide-penguin's%20eggs-blue)](https://penguins-eggs.net/book/)
7
+ [![sources](https://img.shields.io/badge/github-sources-cyan)](https://github.com/pieroproietti/penguins-eggs)
8
+ [![blog](https://img.shields.io/badge/blog-penguin's%20eggs-cyan)](https://penguins-eggs.net)
9
+ [![sources-documentation](https://img.shields.io/badge/sources-documentation-cyan)](https://penguins-eggs.sourceforge.io/)
10
+ [![guide](https://img.shields.io/badge/guide-penguin's%20eggs-cyan)](https://penguins-eggs.net/book/)
11
11
  [![npm version](https://img.shields.io/npm/v/penguins-eggs.svg)](https://npmjs.org/package/penguins-eggs)
12
- [![deb](https://img.shields.io/badge/deb-packages-orange)](https://sourceforge.net/projects/penguins-eggs/files/packages-deb)
13
- [![iso](https://img.shields.io/badge/iso-images-orange)](https://sourceforge.net/projects/penguins-eggs/files/iso)
12
+ [![deb](https://img.shields.io/badge/deb-packages-blue)](https://sourceforge.net/projects/penguins-eggs/files/DEBS)
13
+ [![pkgbuild](https://img.shields.io/badge/pkgbuild-packages-blue)](https://sourceforge.net/projects/penguins-eggs/files/PKGBUILD)
14
+ [![iso](https://img.shields.io/badge/iso-images-cyan)](https://sourceforge.net/projects/penguins-eggs/files/ISOS)
14
15
 
15
16
 
16
17
  # Index
17
18
  <!-- toc -->
18
19
  * [Index](#index)
19
20
  * [Presentation](#presentation)
21
+ * [Tecnology](#tecnology)
22
+ * [Features](#features)
20
23
  * [Packages](#packages)
21
24
  * [Usage](#usage)
22
25
  * [Commands](#commands)
23
- * [Terminal samples](#terminal-samples)
26
+ * [Manual](#manual)
24
27
  * [That's all Folks!](#thats-all-folks)
25
28
  <!-- tocstop -->
26
29
 
27
30
  # Presentation
28
- penguins-eggs is a console utility, under continuous development, that allows you to remaster your system and redistribute it as iso images or via remote boot PXE.
31
+ penguins-eggs is a console utility, under continuous development, that allows you to remaster your system and redistribute it as iso images.
29
32
 
30
- The purpose of this project is to implement the process of remastering your own version of Linux, generate it as an ISO image to burn to a CD/DVD or copy to a USB stick to boot your system. You can also boot your "egg" via remote booting-on your LAN. You can easily install your live system with the calamares installer or the eggs TUI installer.
33
+ The purpose of this project is to implement the process of remastering your own version of Linux, generate it as an ISO image to burn to a CD/DVD or copy to a USB stick to boot your system. The default behavior is total removal of the system's data and users, but it is also possible to remaster the system including the data and accounts of present users, use flag **--clone**. It is also possible to keep the users and files present under an encrypted LUKS file within the same resulting iso file, flag **--backup**.
31
34
 
32
- Also, thanks to the wardrobe, you can create or use scripts to switch from a "naked" version - with only a CLI interface - and "wear" it with a GUI or server configurations. See [penguins-wardrobe](https://github.com/pieroproietti/penguins-wardrobe), fork it and adapt it to yours needs.
35
+ You can easily install the resulting live system with the calamares installer or the internal TUI krill installer. It is possible to have also unattended installation using --unattended flag.
33
36
 
34
- The whole thing is written in pure typescript, so ideally it can be used with different Linux distributions. Yes, there are major differences in terms of the package manager used, but not so much in the way bash works and the various programs used to build the isos.
37
+ Thanks to the wardrobe, you can create or use scripts to switch from a "naked" version - with only a CLI interface - and "wear" it with a full GUI or server configurations. See [penguins-wardrobe](https://github.com/pieroproietti/penguins-wardrobe), fork it and adapt it to yours needs.
35
38
 
36
- penguins-eggs, as of May 2022, is a mature tool and is extremely powerful: you can easily create your own custom version of Linux for your organization/school and distribute it on your LAN, give it to your friends as a usb key, or post your images on the Internet!
37
39
 
38
- Have no fear, yes eggs is a console utility - without a graphical user interface - but it is really simple - if you are able to open a terminal, you can use it and your end users will enjoy a complete help and fully graphical installation procedure.
40
+ # Tecnology
39
41
 
40
- ### mom and dad
41
- I've added two lightweight assistants integrated with eggs: mom and dad. While mom is a bash script with whiptail - and guides the user to the various commands and documentation, dad started as a short way to create isos. All you have to do is type **sudo eggs dad** and follow simple instructions. You can also shortcut the way to reset the configuration **sudo dad -c** or - even faster - reset the configuration, load defaults, kill created isos: simply type **sudo eggs dad -d** and you will immediately be able to produce the egg in the default /home/eggs nest.
42
-
43
- ### yolk
44
- 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.
45
-
46
- ### wardrobe
47
- wardrobe was added to eggs on april 2022, it's is a way to guide and consolidate the process of creating a custom version of Linux, starting from a CLI system. All my personal editions are passed to use wardrobe for their convenience, in that way I can organize, consolidate and manage better my work. I used birds names for my customizations, we have: colibri, duck, eagle, owl, wagtail and warbier.
42
+ The whole thing is written in pure typescript, so ideally it can be used with different Linux distributions. Yes, there are major differences in terms of the package manager used, but not so much on the way the various programs used to build the isos work. Actually eggs support: Debian, Devuan, Ubuntu, Arch and ManjaroLinux.
48
43
 
49
- I hope peoples will be interested in wardrobe and you will end to fork the main repository and add your customizations: together will be possibile to make great steps impossible for a single developer.
50
-
51
- You can read more in wardrobe on [penguin's eggs blog](https://penguins-eggs.net/2022/04/12/wardrobe-colibri-duck-eagle-and-owl/). The results of mine customizations are mostly under [Debian bullseye](https://sourceforge.net/projects/penguins-eggs/files/iso/debian/bullseye/), [Devuan chimaera](ttps://sourceforge.net/projects/penguins-eggs/files/iso/devuan/chimaera/) and [Ubuntu jammy](https://sourceforge.net/projects/penguins-eggs/files/iso/ubuntu/jammy/) on my sourgeforce page.
44
+ 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/).
52
45
 
53
- ### krill
54
- eggs include a CLI installer named krill, this let you to produce and install servers configurations. krill use a nice TUI 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 ones and for GUI and CLI. To force using krill in place of calamares in a GUI system just: **sudo eggs install --cli**
46
+ # Features
55
47
 
56
- ### addons and themes
57
- Addons are used mostly to let 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, adapt the video resolution, link to remote support, etc.
48
+ ## helper: mom and dad
49
+ I've added two lightweight assistants integrated with eggs: mom and dad. While mom is a bash script with whiptail - and guides the user to the various commands and documentation, dad started as a short way to create isos. All you have to do is type **sudo eggs dad** and follow simple instructions. You can also shortcut the way to reset the configuration **sudo dad -c** or - even faster - reset the configuration, load defaults, kill created isos: simply type **sudo eggs dad -d** and you will immediately be able to produce the egg in the default /home/eggs nest.
58
50
 
59
- ### backup/clone
51
+ ## backup/clone
60
52
 
61
- We have two methods to save in the live systema all our data: clone and backup.
53
+ We have two methods to save in the live system all our data: clone and backup.
62
54
 
63
55
  ```eggs produces --fast --clone``` saves our users and our data directly in the generated iso. The data will be visible directly from the live and accessible to anyone who gets a copy.
64
56
 
@@ -69,25 +61,37 @@ We have two methods to save in the live systema all our data: clone and backup.
69
61
  * ```eggs produce --backup``` include all users data CRYPTED on a LUKS volume inside the iso.
70
62
 
71
63
  **NOTE:**
72
- Using ```sudo eggs krill --cli``` will restore your CRYPTED backup automatically. Of course the original passphrase will be request.
64
+ Using ```sudo eggs install``` will automaticaly restore your CRYPTED backup automatically. Of course the original passphrase will be request.
73
65
 
66
+ ## cuckoo
67
+ The cuckoo lays its eggs in the nests of other birds, and the eggs are hatched by the latter. Similarly eggs can start a self-configuring PXE service to allow you to boot and install your iso on third party networked computers. Command cuckoo can be used either to deploy a newly created iso on an installed system or by live booting the iso itself.
74
68
 
75
- ## What distributions can I use?
76
- eggs was born on Debian strecth, buster and followinng. Actually full support Debian from jessie to bookworm/sid, Devuan beowulf, chimaera, daedalus, Ubuntu bionic, focal, jammy - and all derivatives from them including Linux mint, Deepin, neon KDE, etc - ManjaroLinux and finally Arch, the last distro added.
69
+ ## yolk
70
+ 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. Yolk, It is used only for Debian families and derivated.
77
71
 
78
- 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/).
72
+ ## krill installer
73
+ eggs include a CLI installer named krill, this let you to produce and install servers configurations. krill use a nice TUI 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 ones and for GUI and CLI. It's possible with krill to do unattended installations, simply add ```--unattended``` flag and the values in ```/etc/penguins-eggs.d/krill.yaml``` will be used for installation.
79
74
 
80
- ## What architecture can I use?
81
- Eggs, can be released for differents architectures: **amd64**, **arm64** and **armel**. Actually I'm producing mainly for PCs (amd64) and armel. Someone want to contribute to bring eggs on [raspberrypi](https://www.raspberrypi.org/)?
75
+ ## addons and themes
76
+ Addons are used mostly to let 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, adapt the video resolution, link to remote support, etc.
77
+
78
+ ## wardrobe
79
+ wardrobe was added to eggs on april 2022, it's is a way to guide and consolidate the process of creating a custom version of Linux, starting from a CLI system. All my personal editions are passed to use wardrobe for their convenience, in that way I can organize, consolidate and manage better my work. I used birds names for my customizations, we have: colibri, duck, eagle, owl, wagtail and warbier.
80
+
81
+ I hope peoples will be interested in wardrobe and you will end to fork the main repository and add your customizations: together will be possibile to make great steps impossible for a single developer.
82
+
83
+ You can read more in wardrobe on [penguin's eggs blog](https://penguins-eggs.net/2022/04/12/wardrobe-colibri-duck-eagle-and-owl/). The results of mine customizations are mostly under [Debian bullseye](https://sourceforge.net/projects/penguins-eggs/files/ISOS/debian/bullseye/), [Devuan chimaera](ttps://sourceforge.net/projects/penguins-eggs/files/ISOS/devuan/chimaera/) and [Ubuntu jammy](https://sourceforge.net/projects/penguins-eggs/files/ISOS/ubuntu/jammy/) on my sourgeforce page.
82
84
 
83
85
  # Packages
84
- 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.
85
- The packages usually go before in sourgeforce page of eggs, (unstable version) and later in ppa (stable version).
86
+ Supporting various distributions, we need to have different packages. Debian, Devuan and Ubuntu share the .deb packages of eggs, while for Arch Linux and ManjaroLinux they use their PKGBUILD.
86
87
 
87
- ## Install eggs
88
- There are more than a way to install eggs, the most common it's to use penguins-eggs-ppa.
88
+ ## Debian families
89
+ eggs is released deb packages for 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.
89
90
 
90
- ### Using penguins-eggs-ppa (stable version)
91
+ ### Install eggs
92
+ There are more than a way to install eggs as .deb package, the most common it's to add and use penguins-eggs-ppa.
93
+
94
+ #### Using penguins-eggs-ppa (stable version)
91
95
 
92
96
  eggs have it's repository ppa, You can use it, copy and paste in a terminal window the following two lines:
93
97
 
@@ -98,12 +102,12 @@ sudo curl -s --compressed -o /etc/apt/sources.list.d/penguins-eggs-ppa.list "htt
98
102
 
99
103
  Update your repositories: **sudo apt update** and install eggs: **sudo apt install eggs**.
100
104
 
101
- ### Download the package and install with dpkg
105
+ #### Download the package and install with dpkg
102
106
 
103
- 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
107
+ The simplest way to install eggs is download the [package eggs](https://sourceforge.net/projects/penguins-eggs/files/DEBS/) from [sourceforge page of the project](https://sourceforge.net/projects/penguins-eggs/) and install it
104
108
 
105
109
  ```
106
- sudo dpkg -i eggs_9.1.26_amd64.deb
110
+ sudo dpkg -i eggs_9.2.2_amd64.deb
107
111
  ```
108
112
 
109
113
  or, on a i386 system:
@@ -111,29 +115,39 @@ or, on a i386 system:
111
115
  sudo dpkg -i eggs_8.17.17-1_i386.deb
112
116
  ```
113
117
 
114
- ## Upgrade eggs
115
- If you are using penguins-eggs-ppa You can ugrade eggs as others packages just: **sudo apt upgrade**.
118
+ ### Upgrade eggs
119
+ If you are using penguins-eggs-ppa You can ugrade eggs as others packages just: **sudo apt upgrade**, else simply download new versions of eggs from [sourgeforge page](https://sourceforge.net/projects/penguins-eggs/files/DEBS/) and install it with the standard command **sudo dpkg -i eggs_.9.2.2-1_amd64.deb**.
120
+
121
+ ## Arch families: Arch and ManjaroLinux
122
+ eggs has been present in AUR for a long time, even without my knowledge thanks the support of Arch peoples. I am currently directly maintaining the AUR version of [penguins-eggs](https://aur.archlinux.org/packages/penguins-eggs) for Arch linux, however you can refer to the versions for Arch and manjaroLinux in their respective repositories on github.
123
+
124
+ To install eggs on Arch, simply ```git clone https://github.com/pieroproietti/penguins-eggs-arch```, ```cd penguins-eggs-arch```, then ```makepkg -si```.
116
125
 
117
- ### Manual upgrade
118
- 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**.
119
126
 
127
+ The same for manjaroLinux: ```git clone https://github.com/pieroproietti/penguins-eggs-manjaro```, ```cd penguins-eggs-manjaro```, then ```makepkg -si```.
120
128
 
121
129
  # Usage
130
+
131
+ Once the package has been installed, you can have the new ```eggs``` command. Typing ```eggs``` will get the list of commands, typing ```eggs produces --help``` will get the eggs produce command help screen. You can also use the command autocomplete with the TABS key, you will get the possible choices for each command. In addition, there is a man page, so by typing ```man eggs``` you will get that help as well. A more guided approach can be made usind ```eggs mom```, will present a menu with various commands.
132
+
133
+ ## Examples
134
+
135
+ * Create a live system without user data:
136
+
137
+ ```sudo eggs produce --fast```
138
+
139
+ * Create a live system with user data uncrypted.
140
+
141
+ ```sudo eggs produce --fast --clone```
142
+
143
+ * Create a live system with the encrypted user data.
144
+
145
+ ```sudo eggs produce --fast --backup```
146
+
147
+ Especially during the first trials, you should always use the ```--fast``` flag that will ensure a fast creation of the ISO, later you can use ```--max``` flag and get ISOs more compressed.
148
+
122
149
  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/).
123
150
 
124
- <!-- usage -->
125
- ```sh-session
126
- $ npm install -g penguins-eggs
127
- $ eggs COMMAND
128
- running command...
129
- $ eggs (--version|-v)
130
- penguins-eggs/9.2.2 linux-x64 node-v16.16.0
131
- $ eggs --help [COMMAND]
132
- USAGE
133
- $ eggs COMMAND
134
- ...
135
- ```
136
- <!-- usagestop -->
137
151
 
138
152
  # Commands
139
153
  <!-- commands -->
@@ -142,17 +156,17 @@ USAGE
142
156
  * [`eggs autocomplete [SHELL]`](#eggs-autocomplete-shell)
143
157
  * [`eggs calamares`](#eggs-calamares)
144
158
  * [`eggs config`](#eggs-config)
159
+ * [`eggs cuckoo`](#eggs-cuckoo)
145
160
  * [`eggs dad`](#eggs-dad)
146
161
  * [`eggs export deb`](#eggs-export-deb)
147
162
  * [`eggs export docs`](#eggs-export-docs)
148
163
  * [`eggs export iso`](#eggs-export-iso)
149
164
  * [`eggs help [COMMAND]`](#eggs-help-command)
150
- * [`eggs info`](#eggs-info)
151
165
  * [`eggs install`](#eggs-install)
152
166
  * [`eggs kill`](#eggs-kill)
153
- * [`eggs krill`](#eggs-krill)
154
167
  * [`eggs mom`](#eggs-mom)
155
168
  * [`eggs produce`](#eggs-produce)
169
+ * [`eggs status`](#eggs-status)
156
170
  * [`eggs syncfrom`](#eggs-syncfrom)
157
171
  * [`eggs syncto`](#eggs-syncto)
158
172
  * [`eggs tools clean`](#eggs-tools-clean)
@@ -183,7 +197,7 @@ DESCRIPTION
183
197
  adapt monitor resolution for VM only
184
198
  ```
185
199
 
186
- _See code: [src/commands/adapt.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.2/src/commands/adapt.ts)_
200
+ _See code: [src/commands/adapt.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.4/src/commands/adapt.ts)_
187
201
 
188
202
  ## `eggs analyze`
189
203
 
@@ -204,7 +218,7 @@ EXAMPLES
204
218
  $ sudo eggs analyze
205
219
  ```
206
220
 
207
- _See code: [src/commands/analyze.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.2/src/commands/analyze.ts)_
221
+ _See code: [src/commands/analyze.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.4/src/commands/analyze.ts)_
208
222
 
209
223
  ## `eggs autocomplete [SHELL]`
210
224
 
@@ -262,7 +276,7 @@ EXAMPLES
262
276
  install calamares and create it's configuration's files
263
277
  ```
264
278
 
265
- _See code: [src/commands/calamares.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.2/src/commands/calamares.ts)_
279
+ _See code: [src/commands/calamares.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.4/src/commands/calamares.ts)_
266
280
 
267
281
  ## `eggs config`
268
282
 
@@ -286,7 +300,30 @@ EXAMPLES
286
300
  Configure and install prerequisites deb packages to run it
287
301
  ```
288
302
 
289
- _See code: [src/commands/config.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.2/src/commands/config.ts)_
303
+ _See code: [src/commands/config.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.4/src/commands/config.ts)_
304
+
305
+ ## `eggs cuckoo`
306
+
307
+ cuckoo start a PXE boot server serving the live image
308
+
309
+ ```
310
+ USAGE
311
+ $ eggs cuckoo [-f] [-h] [-v]
312
+
313
+ FLAGS
314
+ -f, --full
315
+ -h, --help Show CLI help.
316
+ -v, --verbose verbose
317
+
318
+ DESCRIPTION
319
+ cuckoo start a PXE boot server serving the live image
320
+
321
+ EXAMPLES
322
+ $ sudo eggs cuckoo
323
+ start a PXE boot server
324
+ ```
325
+
326
+ _See code: [src/commands/cuckoo.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.4/src/commands/cuckoo.ts)_
290
327
 
291
328
  ## `eggs dad`
292
329
 
@@ -306,7 +343,7 @@ DESCRIPTION
306
343
  ask help from daddy - configuration helper
307
344
  ```
308
345
 
309
- _See code: [src/commands/dad.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.2/src/commands/dad.ts)_
346
+ _See code: [src/commands/dad.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.4/src/commands/dad.ts)_
310
347
 
311
348
  ## `eggs export deb`
312
349
 
@@ -381,50 +418,30 @@ DESCRIPTION
381
418
 
382
419
  _See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v5.1.12/src/commands/help.ts)_
383
420
 
384
- ## `eggs info`
385
-
386
- informations about eggs configuration
387
-
388
- ```
389
- USAGE
390
- $ eggs info [-v] [-h]
391
-
392
- FLAGS
393
- -h, --help Show CLI help.
394
- -v, --verbose
395
-
396
- DESCRIPTION
397
- informations about eggs configuration
398
- ```
399
-
400
- _See code: [src/commands/info.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.2/src/commands/info.ts)_
401
-
402
421
  ## `eggs install`
403
422
 
404
423
  command-line system installer - the egg became a penguin!
405
424
 
406
425
  ```
407
426
  USAGE
408
- $ eggs install [-k] [-p] [-h] [-v]
427
+ $ eggs install [-u] [-k] [-p] [-h] [-v]
409
428
 
410
429
  FLAGS
411
- -h, --help Show CLI help.
412
- -k, --crypted crypted CLI installation
413
- -p, --pve Proxmox VE install
414
- -v, --verbose verbose
430
+ -h, --help Show CLI help.
431
+ -k, --crypted crypted CLI installation
432
+ -p, --pve Proxmox VE install
433
+ -u, --unattended unattended CLI installation
434
+ -v, --verbose verbose
415
435
 
416
436
  DESCRIPTION
417
437
  command-line system installer - the egg became a penguin!
418
438
 
419
- ALIASES
420
- $ eggs krill
421
-
422
439
  EXAMPLES
423
440
  $ eggs install
424
441
  Install the system using krill installer
425
442
  ```
426
443
 
427
- _See code: [src/commands/install.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.2/src/commands/install.ts)_
444
+ _See code: [src/commands/install.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.4/src/commands/install.ts)_
428
445
 
429
446
  ## `eggs kill`
430
447
 
@@ -446,32 +463,7 @@ EXAMPLES
446
463
  kill the eggs/free the nest
447
464
  ```
448
465
 
449
- _See code: [src/commands/kill.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.2/src/commands/kill.ts)_
450
-
451
- ## `eggs krill`
452
-
453
- command-line system installer - the egg became a penguin!
454
-
455
- ```
456
- USAGE
457
- $ eggs krill [-k] [-p] [-h] [-v]
458
-
459
- FLAGS
460
- -h, --help Show CLI help.
461
- -k, --crypted crypted CLI installation
462
- -p, --pve Proxmox VE install
463
- -v, --verbose verbose
464
-
465
- DESCRIPTION
466
- command-line system installer - the egg became a penguin!
467
-
468
- ALIASES
469
- $ eggs krill
470
-
471
- EXAMPLES
472
- $ eggs install
473
- Install the system using krill installer
474
- ```
466
+ _See code: [src/commands/kill.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.4/src/commands/kill.ts)_
475
467
 
476
468
  ## `eggs mom`
477
469
 
@@ -488,7 +480,7 @@ DESCRIPTION
488
480
  ask for mommy - gui helper
489
481
  ```
490
482
 
491
- _See code: [src/commands/mom.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.2/src/commands/mom.ts)_
483
+ _See code: [src/commands/mom.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.4/src/commands/mom.ts)_
492
484
 
493
485
  ## `eggs produce`
494
486
 
@@ -550,7 +542,25 @@ EXAMPLES
550
542
  in /home/eggs/ovarium and you can customize all you need
551
543
  ```
552
544
 
553
- _See code: [src/commands/produce.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.2/src/commands/produce.ts)_
545
+ _See code: [src/commands/produce.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.4/src/commands/produce.ts)_
546
+
547
+ ## `eggs status`
548
+
549
+ informations about eggs status
550
+
551
+ ```
552
+ USAGE
553
+ $ eggs status [-v] [-h]
554
+
555
+ FLAGS
556
+ -h, --help Show CLI help.
557
+ -v, --verbose
558
+
559
+ DESCRIPTION
560
+ informations about eggs status
561
+ ```
562
+
563
+ _See code: [src/commands/status.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.4/src/commands/status.ts)_
554
564
 
555
565
  ## `eggs syncfrom`
556
566
 
@@ -574,7 +584,7 @@ EXAMPLES
574
584
  $ sudo eggs restore
575
585
  ```
576
586
 
577
- _See code: [src/commands/syncfrom.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.2/src/commands/syncfrom.ts)_
587
+ _See code: [src/commands/syncfrom.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.4/src/commands/syncfrom.ts)_
578
588
 
579
589
  ## `eggs syncto`
580
590
 
@@ -597,7 +607,7 @@ EXAMPLES
597
607
  $ sudo eggs syncto
598
608
  ```
599
609
 
600
- _See code: [src/commands/syncto.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.2/src/commands/syncto.ts)_
610
+ _See code: [src/commands/syncto.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.4/src/commands/syncto.ts)_
601
611
 
602
612
  ## `eggs tools clean`
603
613
 
@@ -692,7 +702,7 @@ EXAMPLES
692
702
  update/upgrade the penguin's eggs tool
693
703
  ```
694
704
 
695
- _See code: [src/commands/update.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.2/src/commands/update.ts)_
705
+ _See code: [src/commands/update.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.4/src/commands/update.ts)_
696
706
 
697
707
  ## `eggs version`
698
708
 
@@ -817,7 +827,12 @@ DESCRIPTION
817
827
  ```
818
828
  <!-- commandsstop -->
819
829
 
820
- # Terminal samples
830
+ # Manual
831
+ The original edition of the eggs manual is released in Italian, of course other languages can be accessed using machine translation.
832
+
833
+ * [Manuale in italiano 9.2.x](https://penguins-eggs.net/book/italiano9.2.html)
834
+ * [English manual 9.2.x](https://penguins--eggs-net.translate.goog/book/italiano9.2?_x_tr_sl=auto&_x_tr_tl=en&_x_tr_hl=en)
835
+
821
836
 
822
837
  ![terminal samples](https://github.com/pieroproietti/penguins-eggs/blob/master/documents/terminal-lessons/eggs_help.gif?raw=true)
823
838
 
@@ -829,11 +844,11 @@ There is a [Penguin's eggs official book](https://penguins-eggs.net/book/) and s
829
844
 
830
845
  * [blog](https://penguins-eggs.net)
831
846
  * [facebook penguin's eggs group](https://www.facebook.com/groups/128861437762355/)
832
- * [sources](https://github.com/pieroproietti/penguins-krill)
833
- * [telegram](https://t.me/penguins_eggs) penguin's eggs channel
847
+ * [telegram penguin's eggs channel](https://t.me/penguins_eggs)
834
848
  * [twitter](https://twitter.com/pieroproietti)
849
+ * [sources](https://github.com/pieroproietti/penguins-krill)
835
850
 
836
851
  You can contact me at pieroproietti@gmail.com or [meet me](https://meet.jit.si/PenguinsEggsMeeting)
837
852
 
838
853
  ## Copyright and licenses
839
- Copyright (c) 2017, 2021 [Piero Proietti](https://penguins-eggs.net/about-me.html), dual licensed under the MIT or GPL Version 2 licenses.
854
+ Copyright (c) 2017, 2022 [Piero Proietti](https://penguins-eggs.net/about-me.html), dual licensed under the MIT or GPL Version 2 licenses.
@@ -1,46 +1,41 @@
1
1
  #
2
2
  # eggs: isolinux.theme
3
3
  #
4
- MENU TITLE Penguin's eggs - Perri's brewery edition
5
- MENU BACKGROUND splash.png
4
+ menu color screen * #80ffffff #00000000 none
5
+ menu color border * #40000000 #00000000 none
6
+ menu color title * #ffffffff #429ad6 none
7
+ menu color sel * #fffafafa #ff4dd0e1 none
8
+ menu color unsel * #ff231f20 #00000000 none
9
+ menu color hotsel * #e0400000 #20ff8000 none
10
+ menu color disabled * #60cccccc #00000000 none
11
+ menu color scrollbar * #40000000 #00000000 none
12
+ menu color tabmsg * #0808ea #ffffffff none
13
+ menu color cmdline * #ff231f20 #ffffffff none
14
+ menu color cmdmark * #c000ffff #00000000 none
15
+ menu color pwdborder * #80ffffff #20ffffff none
16
+ menu color pwdheader * #80ff8080 #20ffffff none
17
+ menu color pwdentry * #80ffffff #20ffffff none
18
+ menu color timeout_msg * #80ffffff #00000000 none
19
+ menu color timeout * #c0ffffff #00000000 none
20
+ menu color help * #c0ffffff #00000000 none
21
+ menu color msg07 * #ffffffff #00000000 none
6
22
 
7
- # MENU COLOR element backgound foreground shadow
8
- # background and foreground are hexadecimal digits for alpha (opacity), red, green and blue,
9
- # respectively. #00000000 represents fully transparent, and #ffffffff represents opaque white.
10
- # shadow none/std
11
- MENU COLOR screen 37;40 #80ffffff #00000000 std
12
- MENU COLOR border 30;44 #40000000 #00000000 std
13
- MENU COLOR title 1;36;44 #c00090f0 #00000000 std
14
- MENU COLOR unsel 37;44 #90ffffff #00000000 std
15
- MENU COLOR sel 7;37;40 #e0000000 #20ff8000 all
16
- MENU COLOR hotsel 1;7;37;40 #e0400000 #20ff8000 all
17
- MENU COLOR disabled 1;30;44 #60cccccc #00000000 std
18
- MENU COLOR scrollbar 30;44 #40000000 #00000000 std
19
- MENU COLOR tabmsg 31;40 #90ffff00 #00000000 std
20
- MENU COLOR cmdmark 1;36;40 #c000ffff #00000000 std
21
- MENU COLOR cmdline 37;40 #c0ffffff #00000000 std
22
- MENU COLOR pwdborder 30;47 #80ffffff #20ffffff std
23
- MENU COLOR pwdheader 31;47 #80ff8080 #20ffffff std
24
- MENU COLOR pwdentry 30;47 #80ffffff #20ffffff std
25
- MENU COLOR timeout_msg 37;40 #80ffffff #00000000 std
26
- MENU COLOR timeout 1;37;40 #c0ffffff #00000000 std
27
- MENU COLOR help 37;40 #c0ffffff #00000000 std
28
- MENU COLOR msg07 37;40 #90ffffff #00000000 std
29
23
 
30
- # POSIZIONE
31
- MENU WIDTH 80
32
- MENU MARGIN 10
33
- MENU PASSWORDMARGIN 3
34
- MENU ROWS 12
35
- MENU TABMSGROW 18
36
- MENU CMDLINEROW 18
37
- MENU ENDROW -1
38
- MENU PASSWORDROW 11
39
- MENU TIMEOUTROW 20
40
- MENU HELPMSGROW 22
41
- MENU HELPMSGENDROW -1
42
- MENU HIDDENROW -2
43
- MENU HSHIFT 0
44
- MENU VSHIFT 0
45
-
46
- MENU tabmsg Press ENTER to boot or TAB to edit a menu entry
24
+ # Position
25
+ menu width 80
26
+ menu margin 10
27
+ #menu passwordmargin 3
28
+ menu rows 12
29
+ menu tabmsgrow 18
30
+ menu cmdlinegrow 18
31
+ menu endrow -1
32
+ menu passwordrow 11
33
+ menu timeout 20
34
+ menu helpmsggrow 22
35
+ menu helpmsgendrow -1
36
+ menu hiddenrow -2
37
+ menu hshift 0
38
+ menu vshift 0
39
+ menu title Penguin's eggs - Perri's brewery edition
40
+ menu background splash.png
41
+ menu tabmsg Press ENTER to boot or TAB to edit a menu entry