penguins-eggs 25.10.6 → 25.10.19

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 (84) hide show
  1. package/.oclif.manifest.json +51 -145
  2. package/README.md +3 -829
  3. package/addons/eggs/theme/livecd/isolinux.main.simple.cfg +3 -3
  4. package/conf/distros/trixie/calamares/modules/shellprocess@boot_deploy.yml +3 -4
  5. package/conf/love.yaml +1 -1
  6. package/dist/classes/distro.js +9 -2
  7. package/dist/classes/diversions.d.ts +1 -1
  8. package/dist/classes/diversions.js +27 -8
  9. package/dist/classes/incubation/incubator.d/archlinux.js +1 -0
  10. package/dist/classes/incubation/incubator.d/trixie.js +7 -10
  11. package/dist/classes/ovary.d/edit-live-fs.d.ts +1 -1
  12. package/dist/classes/ovary.d/edit-live-fs.js +1 -7
  13. package/dist/classes/ovary.d/fertilization.js +1 -0
  14. package/dist/classes/ovary.d/finished.js +1 -5
  15. package/dist/classes/ovary.d/initrd.d.ts +1 -1
  16. package/dist/classes/ovary.d/initrd.js +17 -19
  17. package/dist/classes/ovary.d/live-create-structure.js +1 -4
  18. package/dist/classes/ovary.d/luks-get-password.d.ts +12 -0
  19. package/dist/classes/ovary.d/luks-get-password.js +57 -0
  20. package/dist/classes/ovary.d/luks-home-support.d.ts +12 -0
  21. package/dist/classes/ovary.d/luks-home-support.js +75 -0
  22. package/dist/classes/ovary.d/luks-home.d.ts +15 -0
  23. package/dist/classes/ovary.d/luks-home.js +140 -0
  24. package/dist/classes/ovary.d/luks-root-bootstrap-builder.d.ts +11 -0
  25. package/dist/classes/ovary.d/luks-root-bootstrap-builder.js +45 -0
  26. package/dist/classes/ovary.d/luks-root.d.ts +15 -0
  27. package/dist/classes/ovary.d/luks-root.js +126 -0
  28. package/dist/classes/ovary.d/make-efi.js +1 -1
  29. package/dist/classes/ovary.d/make-squashfs.d.ts +1 -1
  30. package/dist/classes/ovary.d/make-squashfs.js +7 -3
  31. package/dist/classes/ovary.d/produce.d.ts +3 -3
  32. package/dist/classes/ovary.d/produce.js +76 -48
  33. package/dist/classes/ovary.d/syslinux.js +1 -1
  34. package/dist/classes/ovary.d/xorriso-command.d.ts +2 -2
  35. package/dist/classes/ovary.d/xorriso-command.js +27 -29
  36. package/dist/classes/ovary.d.ts +35 -16
  37. package/dist/classes/ovary.js +42 -16
  38. package/dist/classes/utils.d.ts +1 -0
  39. package/dist/classes/utils.js +3 -0
  40. package/dist/commands/config.d.ts +1 -1
  41. package/dist/commands/config.js +2 -2
  42. package/dist/commands/love.d.ts +3 -0
  43. package/dist/commands/love.js +40 -2
  44. package/dist/commands/produce.d.ts +3 -2
  45. package/dist/commands/produce.js +14 -17
  46. package/dist/commands/tools/{ppa.d.ts → repo.d.ts} +2 -2
  47. package/dist/commands/tools/{ppa.js → repo.js} +69 -67
  48. package/dracut/create-symlink +71 -0
  49. package/dracut/dracut-log.txt +3 -0
  50. package/dracut/dracut.conf.d/50-live.conf +24 -6
  51. package/dracut/dracut.conf.d/README.md +10 -0
  52. package/dracut/export +4 -0
  53. package/dracut/export-dracut-analysis +51 -0
  54. package/dracut/export-dracut-log +2 -0
  55. package/dracut/mkisofs +10 -0
  56. package/dracut/modules.d/00debug-shell/debug-hook.sh +13 -0
  57. package/dracut/modules.d/00debug-shell/module-setup.sh +20 -0
  58. package/dracut/modules.d/90block/README.md +7 -0
  59. package/dracut/modules.d/90block/block-cmdline.sh +3 -0
  60. package/dracut/modules.d/90block/module-setup.sh +15 -0
  61. package/dracut/modules.d/95iso-scan/README.md +3 -0
  62. package/dracut/modules.d/95iso-scan/iso-scan-fallback.sh +12 -0
  63. package/dracut/modules.d/95iso-scan/iso-scan.sh +92 -0
  64. package/dracut/modules.d/95iso-scan/module-setup.sh +18 -0
  65. package/dracut/modules.d/95luks-loop/README.md +9 -0
  66. package/dracut/modules.d/95luks-loop/luks-loop.sh +90 -0
  67. package/dracut/modules.d/95luks-loop/module-setup.sh +17 -0
  68. package/dracut/renew-initramfs +17 -0
  69. package/dracut/sbin2bin +10 -0
  70. package/dracut/update-dracut-conf-d +2 -0
  71. package/dracut/update-dracut-modules +62 -0
  72. package/manpages/doc/man/eggs.1.gz +0 -0
  73. package/manpages/doc/man/eggs.html +7 -661
  74. package/package.json +9 -8
  75. package/perrisbrewery/template/dependencies.yaml +6 -5
  76. package/scripts/_eggs +16 -31
  77. package/scripts/eggs.bash +4 -6
  78. package/scripts/luks-root-bootstrap-create.sh +235 -0
  79. package/scripts/luks-root-unlock.sh +172 -0
  80. package/scripts/mount-encrypted-home.sh +223 -0
  81. package/dist/commands/syncfrom.d.ts +0 -45
  82. package/dist/commands/syncfrom.js +0 -152
  83. package/dist/commands/syncto.d.ts +0 -40
  84. package/dist/commands/syncto.js +0 -175
@@ -6,7 +6,7 @@
6
6
  <meta name="viewport" content="width=device-width, initial-scale=1">
7
7
  </head>
8
8
  <body>
9
- <h1>eggs(1) -- the reproductive system of penguins: eggs v25.9.27</h1>
9
+ <h1>eggs(1) -- the reproductive system of penguins: eggs v25.10.16</h1>
10
10
  <h1>SYNOPSIS</h1>
11
11
  <p>eggs is a console utility, in active development, who let you to remaster your system and redistribuite it as live ISO image.</p>
12
12
  <h1>INSTALL</h1>
@@ -14,30 +14,30 @@
14
14
  <pre><code>$ doas apk add penguins-eggs@testing
15
15
  </code></pre>
16
16
  <p>AlmaLinux/RockyLinux</p>
17
- <pre><code>$ sudo dnf install ./penguins-eggs_25.9.27-1_amd64-1rocky9.5..x86_64.rpm
17
+ <pre><code>$ sudo dnf install ./penguins-eggs_25.10.16-1_amd64-1rocky9.5..x86_64.rpm
18
18
 
19
19
  </code></pre>
20
20
  <p>Arch</p>
21
21
  <pre><code>$ sudo pacman -S penguins-eggs
22
- $ sudo pacman -U penguins-eggs_25.9.27-1_amd64-1-x86_64.pkg.tar.zst
22
+ $ sudo pacman -U penguins-eggs_25.10.16-1_amd64-1-x86_64.pkg.tar.zst
23
23
  </code></pre>
24
24
  <p>Debian/Devuan/Ubuntu</p>
25
25
  <pre><code>$ sudo apt install penguins-eggs
26
- $ sudo dpkg -i penguins-eggs_25.9.27-1_amd64.deb
26
+ $ sudo dpkg -i penguins-eggs_25.10.16-1_amd64.deb
27
27
  </code></pre>
28
28
  <p>Fedora</p>
29
- <pre><code>$ sudo dnf install ./penguins-eggs_25.9.27-1_amd64-1fedora.x86_64.rpm
29
+ <pre><code>$ sudo dnf install ./penguins-eggs_25.10.16-1_amd64-1fedora.x86_64.rpm
30
30
  </code></pre>
31
31
  <p>Manjaro</p>
32
32
  <pre><code>$ sudo pamac install penguins-eggs
33
33
  </code></pre>
34
34
  <p>OpenMamba</p>
35
- <pre><code>$ sudo dnf install ./penguins-eggs_25.9.27-1_amd64-1mamba.x86_64.rpm
35
+ <pre><code>$ sudo dnf install ./penguins-eggs_25.10.16-1_amd64-1mamba.x86_64.rpm
36
36
  </code></pre>
37
37
  <h1>USAGE</h1>
38
38
  <pre><code>$ eggs (-v|--version|version)
39
39
 
40
- penguins-eggs/25.9.27
40
+ penguins-eggs/25.10.16
41
41
  $ eggs --help [COMMAND]
42
42
 
43
43
  USAGE
@@ -58,69 +58,10 @@ sudo eggs dad
58
58
  <p>The scope of this project is to implement the process of remastering your version of Linux, generate it as ISO image, to burn on a CD/DVD or copy to a usb key, to boot your system live. Of course, You can easily install your live image using GUI installer (calamares) or CLI installer (krill) always included.</p>
59
59
  <h1>COMMANDS</h1>
60
60
  <ul>
61
- <li><a href="#eggs-adapt"><code>eggs adapt</code></a></li>
62
- <li><a href="#eggs-analyze"><code>eggs analyze</code></a></li>
63
61
  <li><a href="#eggs-autocomplete-shell"><code>eggs autocomplete [SHELL]</code></a></li>
64
- <li><a href="#eggs-calamares"><code>eggs calamares</code></a></li>
65
- <li><a href="#eggs-config"><code>eggs config</code></a></li>
66
- <li><a href="#eggs-cuckoo"><code>eggs cuckoo</code></a></li>
67
- <li><a href="#eggs-dad"><code>eggs dad</code></a></li>
68
- <li><a href="#eggs-export-iso"><code>eggs export iso</code></a></li>
69
- <li><a href="#eggs-export-pkg"><code>eggs export pkg</code></a></li>
70
- <li><a href="#eggs-export-tarballs"><code>eggs export tarballs</code></a></li>
71
62
  <li><a href="#eggs-help-command"><code>eggs help [COMMAND]</code></a></li>
72
- <li><a href="#eggs-install"><code>eggs install</code></a></li>
73
- <li><a href="#eggs-kill"><code>eggs kill</code></a></li>
74
- <li><a href="#eggs-krill"><code>eggs krill</code></a></li>
75
- <li><a href="#eggs-love"><code>eggs love</code></a></li>
76
- <li><a href="#eggs-mom"><code>eggs mom</code></a></li>
77
- <li><a href="#eggs-pods-distro"><code>eggs pods [DISTRO]</code></a></li>
78
- <li><a href="#eggs-produce"><code>eggs produce</code></a></li>
79
- <li><a href="#eggs-status"><code>eggs status</code></a></li>
80
- <li><a href="#eggs-syncfrom"><code>eggs syncfrom</code></a></li>
81
- <li><a href="#eggs-syncto"><code>eggs syncto</code></a></li>
82
- <li><a href="#eggs-tools-clean"><code>eggs tools clean</code></a></li>
83
- <li><a href="#eggs-tools-ppa"><code>eggs tools ppa</code></a></li>
84
- <li><a href="#eggs-tools-skel"><code>eggs tools skel</code></a></li>
85
- <li><a href="#eggs-tools-stat"><code>eggs tools stat</code></a></li>
86
- <li><a href="#eggs-tools-yolk"><code>eggs tools yolk</code></a></li>
87
- <li><a href="#eggs-update"><code>eggs update</code></a></li>
88
63
  <li><a href="#eggs-version"><code>eggs version</code></a></li>
89
- <li><a href="#eggs-wardrobe-get-repo"><code>eggs wardrobe get [REPO]</code></a></li>
90
- <li><a href="#eggs-wardrobe-list-repo"><code>eggs wardrobe list [REPO]</code></a></li>
91
- <li><a href="#eggs-wardrobe-show-repo"><code>eggs wardrobe show [REPO]</code></a></li>
92
- <li><a href="#eggs-wardrobe-wear-repo"><code>eggs wardrobe wear [REPO]</code></a></li>
93
64
  </ul>
94
- <h2><code>eggs adapt</code></h2>
95
- <p>adapt monitor resolution for VM only</p>
96
- <pre><code>USAGE
97
- $ eggs adapt [-h] [-v]
98
-
99
- FLAGS
100
- -h, --help Show CLI help.
101
- -v, --verbose
102
-
103
- DESCRIPTION
104
- adapt monitor resolution for VM only
105
-
106
- EXAMPLES
107
- $ eggs adapt
108
- </code></pre>
109
- <h2><code>eggs analyze</code></h2>
110
- <p>analyze for syncto</p>
111
- <pre><code>USAGE
112
- $ eggs analyze [-h] [-v]
113
-
114
- FLAGS
115
- -h, --help Show CLI help.
116
- -v, --verbose verbose
117
-
118
- DESCRIPTION
119
- analyze for syncto
120
-
121
- EXAMPLES
122
- sudo eggs analyze
123
- </code></pre>
124
65
  <h2><code>eggs autocomplete [SHELL]</code></h2>
125
66
  <p>Display autocomplete installation instructions.</p>
126
67
  <pre><code>USAGE
@@ -145,150 +86,6 @@ EXAMPLES
145
86
  $ eggs autocomplete powershell
146
87
 
147
88
  $ eggs autocomplete --refresh-cache
148
- </code></pre>
149
- <h2><code>eggs calamares</code></h2>
150
- <p>configure calamares or install or configure it</p>
151
- <pre><code>USAGE
152
- $ eggs calamares [-h] [-i] [-n] [-p] [-r] [--remove] [--theme &#x3C;value>] [-v]
153
-
154
- FLAGS
155
- -h, --help Show CLI help.
156
- -i, --install install calamares and its dependencies
157
- -n, --nointeractive no user interaction
158
- -p, --policies configure calamares policies
159
- -r, --release release: remove calamares and all its dependencies after the installation
160
- -v, --verbose
161
- --remove remove calamares and its dependencies
162
- --theme=&#x3C;value> theme/branding for eggs and calamares
163
-
164
- DESCRIPTION
165
- configure calamares or install or configure it
166
-
167
- EXAMPLES
168
- sudo eggs calamares
169
-
170
- sudo eggs calamares --install
171
-
172
- sudo eggs calamares --install --theme=/path/to/theme
173
-
174
- sudo eggs calamares --remove
175
- </code></pre>
176
- <h2><code>eggs config</code></h2>
177
- <p>Configure eggs to run it</p>
178
- <pre><code>USAGE
179
- $ eggs config [-c] [-h] [-n] [-v]
180
-
181
- FLAGS
182
- -c, --clean remove old configuration before to create new one
183
- -h, --help Show CLI help.
184
- -n, --nointeractive no user interaction
185
- -v, --verbose verbose
186
-
187
- DESCRIPTION
188
- Configure eggs to run it
189
-
190
- EXAMPLES
191
- sudo eggs config
192
-
193
- sudo eggs config --clean
194
-
195
- sudo eggs config --clean --nointeractive
196
- </code></pre>
197
- <h2><code>eggs cuckoo</code></h2>
198
- <p>PXE start with proxy-dhcp</p>
199
- <pre><code>USAGE
200
- $ eggs cuckoo [-h] [-v]
201
-
202
- FLAGS
203
- -h, --help Show CLI help.
204
- -v, --verbose verbose
205
-
206
- DESCRIPTION
207
- PXE start with proxy-dhcp
208
-
209
- EXAMPLES
210
- sudo eggs cuckoo
211
- </code></pre>
212
- <h2><code>eggs dad</code></h2>
213
- <p>ask help from daddy - TUI configuration helper</p>
214
- <pre><code>USAGE
215
- $ eggs dad [-c] [-d] [-f &#x3C;value>] [-n] [-h] [-v]
216
-
217
- FLAGS
218
- -c, --clean remove old configuration before to create
219
- -d, --default reset to default values
220
- -f, --file=&#x3C;value> use a file configuration custom
221
- -h, --help Show CLI help.
222
- -n, --nointeractive no user interaction
223
- -v, --verbose
224
-
225
- DESCRIPTION
226
- ask help from daddy - TUI configuration helper
227
-
228
- EXAMPLES
229
- sudo dad
230
-
231
- sudo dad --clean
232
-
233
- sudo dad --default
234
- </code></pre>
235
- <h2><code>eggs export iso</code></h2>
236
- <p>export iso in the destination host</p>
237
- <pre><code>USAGE
238
- $ eggs export iso [-C] [-c] [-h] [-v]
239
-
240
- FLAGS
241
- -C, --checksum export checksums md5 and sha256
242
- -c, --clean delete old ISOs before to copy
243
- -h, --help Show CLI help.
244
- -v, --verbose verbose
245
-
246
- DESCRIPTION
247
- export iso in the destination host
248
-
249
- EXAMPLES
250
- $ eggs export iso
251
-
252
- $ eggs export iso --clean
253
- </code></pre>
254
- <h2><code>eggs export pkg</code></h2>
255
- <p>export pkg/iso to the destination host</p>
256
- <pre><code>USAGE
257
- $ eggs export pkg [-a] [-c] [-h] [-v]
258
-
259
- FLAGS
260
- -a, --all export all archs
261
- -c, --clean remove old .deb before to copy
262
- -h, --help Show CLI help.
263
- -v, --verbose verbose
264
-
265
- DESCRIPTION
266
- export pkg/iso to the destination host
267
-
268
- EXAMPLES
269
- $ eggs export pkg
270
-
271
- $ eggs export pkg --clean
272
-
273
- $ eggs export pkg --all
274
- </code></pre>
275
- <h2><code>eggs export tarballs</code></h2>
276
- <p>export pkg/iso/tarballs to the destination host</p>
277
- <pre><code>USAGE
278
- $ eggs export tarballs [-c] [-h] [-v]
279
-
280
- FLAGS
281
- -c, --clean remove old .deb before to copy
282
- -h, --help Show CLI help.
283
- -v, --verbose verbose
284
-
285
- DESCRIPTION
286
- export pkg/iso/tarballs to the destination host
287
-
288
- EXAMPLES
289
- $ eggs export tarballs
290
-
291
- $ eggs export tarballs --clean
292
89
  </code></pre>
293
90
  <h2><code>eggs help [COMMAND]</code></h2>
294
91
  <p>Display help for eggs.</p>
@@ -303,365 +100,6 @@ FLAGS
303
100
 
304
101
  DESCRIPTION
305
102
  Display help for eggs.
306
- </code></pre>
307
- <h2><code>eggs install</code></h2>
308
- <p>krill: the CLI system installer - the egg became a penguin!</p>
309
- <pre><code>USAGE
310
- $ eggs install [-b] [-c] [-k] [-d &#x3C;value>] [-H] [-h] [-i] [-n] [-N] [-p] [-r] [-R &#x3C;value>] [-s] [-S] [-t]
311
- [-u] [-v]
312
-
313
- FLAGS
314
- -H, --halt Halt the system after installation
315
- -N, --none Swap none: 256M
316
- -R, --replace=&#x3C;value> Replace partition. eg: --replace /dev/sda3
317
- -S, --suspend Swap suspend: RAM x 2
318
- -b, --btrfs Format btrfs
319
- -c, --chroot chroot before to end
320
- -d, --domain=&#x3C;value> Domain name, defult: .local
321
- -h, --help Show CLI help.
322
- -i, --ip hostname as ip, eg: ip-192-168-1-33
323
- -k, --crypted Crypted CLI installation
324
- -n, --nointeractive no user interaction
325
- -p, --pve Proxmox VE install
326
- -r, --random Add random to hostname, eg: colibri-ay412dt
327
- -s, --small Swap small: RAM
328
- -t, --testing Just testing krill
329
- -u, --unattended Unattended installation
330
- -v, --verbose Verbose
331
-
332
- DESCRIPTION
333
- krill: the CLI system installer - the egg became a penguin!
334
-
335
- ALIASES
336
- $ eggs krill
337
-
338
- EXAMPLES
339
- sudo eggs install
340
-
341
- sudo eggs install --unattended --halt
342
-
343
- sudo eggs install --chroot
344
- </code></pre>
345
- <h2><code>eggs kill</code></h2>
346
- <p>kill the eggs/free the nest</p>
347
- <pre><code>USAGE
348
- $ eggs kill [-h] [-i] [-n] [-v]
349
-
350
- FLAGS
351
- -h, --help Show CLI help.
352
- -i, --isos erase all ISOs on remote mount
353
- -n, --nointeractive no user interaction
354
- -v, --verbose verbose
355
-
356
- DESCRIPTION
357
- kill the eggs/free the nest
358
-
359
- EXAMPLES
360
- sudo eggs kill
361
- </code></pre>
362
- <h2><code>eggs krill</code></h2>
363
- <p>krill: the CLI system installer - the egg became a penguin!</p>
364
- <pre><code>USAGE
365
- $ eggs krill [-b] [-c] [-k] [-d &#x3C;value>] [-H] [-h] [-i] [-n] [-N] [-p] [-r] [-R &#x3C;value>] [-s] [-S] [-t]
366
- [-u] [-v]
367
-
368
- FLAGS
369
- -H, --halt Halt the system after installation
370
- -N, --none Swap none: 256M
371
- -R, --replace=&#x3C;value> Replace partition. eg: --replace /dev/sda3
372
- -S, --suspend Swap suspend: RAM x 2
373
- -b, --btrfs Format btrfs
374
- -c, --chroot chroot before to end
375
- -d, --domain=&#x3C;value> Domain name, defult: .local
376
- -h, --help Show CLI help.
377
- -i, --ip hostname as ip, eg: ip-192-168-1-33
378
- -k, --crypted Crypted CLI installation
379
- -n, --nointeractive no user interaction
380
- -p, --pve Proxmox VE install
381
- -r, --random Add random to hostname, eg: colibri-ay412dt
382
- -s, --small Swap small: RAM
383
- -t, --testing Just testing krill
384
- -u, --unattended Unattended installation
385
- -v, --verbose Verbose
386
-
387
- DESCRIPTION
388
- krill: the CLI system installer - the egg became a penguin!
389
-
390
- ALIASES
391
- $ eggs krill
392
-
393
- EXAMPLES
394
- sudo eggs install
395
-
396
- sudo eggs install --unattended --halt
397
-
398
- sudo eggs install --chroot
399
- </code></pre>
400
- <h2><code>eggs love</code></h2>
401
- <p>the simplest way to get an egg!</p>
402
- <pre><code>USAGE
403
- $ eggs love [-h] [-v] [-n]
404
-
405
- FLAGS
406
- -h, --help Show CLI help.
407
- -n, --nointeractive no user interaction
408
- -v, --verbose
409
-
410
- DESCRIPTION
411
- the simplest way to get an egg!
412
-
413
- EXAMPLES
414
- $ eggs auto
415
- </code></pre>
416
- <h2><code>eggs mom</code></h2>
417
- <p>ask help from mommy - TUI helper</p>
418
- <pre><code>USAGE
419
- $ eggs mom [-h]
420
-
421
- FLAGS
422
- -h, --help Show CLI help.
423
-
424
- DESCRIPTION
425
- ask help from mommy - TUI helper
426
-
427
- EXAMPLES
428
- $ eggs mom
429
- </code></pre>
430
- <h2><code>eggs pods [DISTRO]</code></h2>
431
- <p>eggs pods: build ISOs from containers</p>
432
- <pre><code>USAGE
433
- $ eggs pods [DISTRO] [-h]
434
-
435
- ARGUMENTS
436
- DISTRO distro to build
437
-
438
- FLAGS
439
- -h, --help Show CLI help.
440
-
441
- DESCRIPTION
442
- eggs pods: build ISOs from containers
443
-
444
- EXAMPLES
445
- $ eggs pods archlinux
446
-
447
- $ eggs pods debian
448
-
449
- $ eggs pods ubuntu
450
- </code></pre>
451
- <h2><code>eggs produce</code></h2>
452
- <p>produce a live image from your system whithout your data</p>
453
- <pre><code>USAGE
454
- $ eggs produce [--addons &#x3C;value>...] [--basename &#x3C;value>] [-c] [-C] [--excludes &#x3C;value>...] [-h] [-k
455
- &#x3C;value>] [--links &#x3C;value>...] [-m] [-N] [-n] [-p] [-P &#x3C;value>] [--release] [-s] [-S] [--theme &#x3C;value>] [-u] [-v]
456
- [-y]
457
-
458
- FLAGS
459
- -C, --cryptedclone crypted clone
460
- -N, --noicon no icon eggs on desktop
461
- -P, --prefix=&#x3C;value> prefix
462
- -S, --standard standard compression: xz -b 1M
463
- -c, --clone clone
464
- -h, --help Show CLI help.
465
- -k, --kernel=&#x3C;value> kernel version
466
- -m, --max max compression: xz -Xbcj ...
467
- -n, --nointeractive no user interaction
468
- -p, --pendrive optimized for pendrive: zstd -b 1M -Xcompression-level 15
469
- -s, --script script mode. Generate scripts to manage iso build
470
- -u, --unsecure /root contents are included on live
471
- -v, --verbose verbose
472
- -y, --yolk force yolk renew
473
- --addons=&#x3C;value>... addons to be used: adapt, pve, rsupport
474
- --basename=&#x3C;value> basename
475
- --excludes=&#x3C;value>... use: static, homes, home
476
- --links=&#x3C;value>... desktop links
477
- --release release: remove penguins-eggs, calamares and dependencies after installation
478
- --theme=&#x3C;value> theme for livecd, calamares branding and partitions
479
-
480
- DESCRIPTION
481
- produce a live image from your system whithout your data
482
-
483
- EXAMPLES
484
- sudo eggs produce # zstd fast compression
485
-
486
- sudo eggs produce --standard # xz compression
487
-
488
- sudo eggs produce --max # xz max compression
489
-
490
- sudo eggs produce --pendrive # zstd compression optimized pendrive
491
-
492
- sudo eggs produce --clone # clone
493
-
494
- sudo eggs produce --cryptedclone # crypted clone
495
-
496
- sudo eggs produce --basename=colibri
497
-
498
- sudo eggs produce --theme lastos
499
-
500
- sudo eggs produce --excludes static # you can customize it
501
-
502
- sudo eggs produce --excludes homes # exclude /home/*
503
-
504
- sudo eggs produce --excludes home # exclude ~/*
505
- </code></pre>
506
- <h2><code>eggs status</code></h2>
507
- <p>informations about eggs status</p>
508
- <pre><code>USAGE
509
- $ eggs status [-h] [-v]
510
-
511
- FLAGS
512
- -h, --help Show CLI help.
513
- -v, --verbose
514
-
515
- DESCRIPTION
516
- informations about eggs status
517
-
518
- EXAMPLES
519
- $ eggs status
520
- </code></pre>
521
- <h2><code>eggs syncfrom</code></h2>
522
- <p>restore users and user data from a LUKS volumes</p>
523
- <pre><code>USAGE
524
- $ eggs syncfrom [--delete &#x3C;value>] [-f &#x3C;value>] [-h] [-r &#x3C;value>] [-v]
525
-
526
- FLAGS
527
- -f, --file=&#x3C;value> file containing luks-volume encrypted
528
- -h, --help Show CLI help.
529
- -r, --rootdir=&#x3C;value> rootdir of the installed system, when used from live
530
- -v, --verbose verbose
531
- --delete=&#x3C;value> rsync --delete delete extraneous files from dest dirs
532
-
533
- DESCRIPTION
534
- restore users and user data from a LUKS volumes
535
-
536
- EXAMPLES
537
- sudo eggs syncfrom
538
-
539
- sudo eggs syncfrom --file /path/to/luks-volume
540
- </code></pre>
541
- <h2><code>eggs syncto</code></h2>
542
- <p>Save users and users' data ENCRYPTED</p>
543
- <pre><code>USAGE
544
- $ eggs syncto [-e] [-f &#x3C;value>] [-h] [-v]
545
-
546
- FLAGS
547
- -e, --excludes use: exclude.list.d/home.list
548
- -f, --file=&#x3C;value> file luks-volume encrypted
549
- -h, --help Show CLI help.
550
- -v, --verbose verbose
551
-
552
- DESCRIPTION
553
- Save users and users' data ENCRYPTED
554
-
555
- EXAMPLES
556
- sudo eggs syncto
557
-
558
- sudo eggs syncto --file /path/to/luks-volume
559
-
560
- sudo eggs syncto --excludes
561
- </code></pre>
562
- <h2><code>eggs tools clean</code></h2>
563
- <p>clean system log, apt, etc</p>
564
- <pre><code>USAGE
565
- $ eggs tools clean [-h] [-n] [-v]
566
-
567
- FLAGS
568
- -h, --help Show CLI help.
569
- -n, --nointeractive no user interaction
570
- -v, --verbose verbose
571
-
572
- DESCRIPTION
573
- clean system log, apt, etc
574
-
575
- EXAMPLES
576
- sudo eggs tools clean
577
- </code></pre>
578
- <h2><code>eggs tools ppa</code></h2>
579
- <p>add/remove repo</p>
580
- <pre><code>USAGE
581
- $ eggs tools ppa [-a] [-h] [-n] [-r] [-v]
582
-
583
- FLAGS
584
- -a, --add add penguins-eggs PPA repository
585
- -h, --help Show CLI help.
586
- -n, --nointeractive no user interaction
587
- -r, --remove remove penguins-eggs PPA repository
588
- -v, --verbose verbose
589
-
590
- DESCRIPTION
591
- add/remove repo
592
-
593
- EXAMPLES
594
- sudo eggs tools ppa --add
595
-
596
- sudo eggs tools ppa --remove
597
- </code></pre>
598
- <h2><code>eggs tools skel</code></h2>
599
- <p>update skel from home configuration</p>
600
- <pre><code>USAGE
601
- $ eggs tools skel [-h] [-u &#x3C;value>] [-v]
602
-
603
- FLAGS
604
- -h, --help Show CLI help.
605
- -u, --user=&#x3C;value> user to be used
606
- -v, --verbose
607
-
608
- DESCRIPTION
609
- update skel from home configuration
610
-
611
- EXAMPLES
612
- sudo eggs tools skel
613
-
614
- sudo eggs tools skel --user user-to-be-copied
615
- </code></pre>
616
- <h2><code>eggs tools stat</code></h2>
617
- <p>get statistics from sourceforge</p>
618
- <pre><code>USAGE
619
- $ eggs tools stat [-h] [-m] [-y]
620
-
621
- FLAGS
622
- -h, --help Show CLI help.
623
- -m, --month current month
624
- -y, --year current year
625
-
626
- DESCRIPTION
627
- get statistics from sourceforge
628
-
629
- EXAMPLES
630
- $ eggs tools stat
631
-
632
- $ eggs tools stat --month
633
-
634
- $ eggs tools stat --year
635
- </code></pre>
636
- <h2><code>eggs tools yolk</code></h2>
637
- <p>configure eggs to install without internet</p>
638
- <pre><code>USAGE
639
- $ eggs tools yolk [-h] [-v]
640
-
641
- FLAGS
642
- -h, --help Show CLI help.
643
- -v, --verbose
644
-
645
- DESCRIPTION
646
- configure eggs to install without internet
647
-
648
- EXAMPLES
649
- sudo eggs tools yolk
650
- </code></pre>
651
- <h2><code>eggs update</code></h2>
652
- <p>update the Penguins' eggs tool</p>
653
- <pre><code>USAGE
654
- $ eggs update [-h] [-v]
655
-
656
- FLAGS
657
- -h, --help Show CLI help.
658
- -v, --verbose verbose
659
-
660
- DESCRIPTION
661
- update the Penguins' eggs tool
662
-
663
- EXAMPLES
664
- $ eggs update
665
103
  </code></pre>
666
104
  <h2><code>eggs version</code></h2>
667
105
  <pre><code>USAGE
@@ -677,98 +115,6 @@ FLAG DESCRIPTIONS
677
115
  --verbose Show additional information about the CLI.
678
116
 
679
117
  Additionally shows the architecture, node version, operating system, and versions of plugins that the CLI is using.
680
- </code></pre>
681
- <h2><code>eggs wardrobe get [REPO]</code></h2>
682
- <p>get warorobe</p>
683
- <pre><code>USAGE
684
- $ eggs wardrobe get [REPO] [-h] [-v]
685
-
686
- ARGUMENTS
687
- REPO repository to get
688
-
689
- FLAGS
690
- -h, --help Show CLI help.
691
- -v, --verbose
692
-
693
- DESCRIPTION
694
- get warorobe
695
-
696
- EXAMPLES
697
- $ eggs wardrobe get
698
-
699
- $ eggs wardrobe get your-wardrobe
700
- </code></pre>
701
- <h2><code>eggs wardrobe list [REPO]</code></h2>
702
- <p>list costumes and accessoires in wardrobe</p>
703
- <pre><code>USAGE
704
- $ eggs wardrobe list [REPO] [-d &#x3C;value>] [-h] [-v]
705
-
706
- ARGUMENTS
707
- REPO wardrobe to get
708
-
709
- FLAGS
710
- -d, --distro=&#x3C;value> distro
711
- -h, --help Show CLI help.
712
- -v, --verbose
713
-
714
- DESCRIPTION
715
- list costumes and accessoires in wardrobe
716
-
717
- EXAMPLES
718
- $ eggs wardrobe list
719
-
720
- $ eggs wardrobe list your-wardrobe
721
-
722
- $ eggs wardrobe list --distro arch
723
- </code></pre>
724
- <h2><code>eggs wardrobe show [REPO]</code></h2>
725
- <p>show costumes/accessories in wardrobe</p>
726
- <pre><code>USAGE
727
- $ eggs wardrobe show [REPO] [-h] [-j] [-v] [-w &#x3C;value>]
728
-
729
- ARGUMENTS
730
- REPO costume to show
731
-
732
- FLAGS
733
- -h, --help Show CLI help.
734
- -j, --json output JSON
735
- -v, --verbose
736
- -w, --wardrobe=&#x3C;value> wardrobe
737
-
738
- DESCRIPTION
739
- show costumes/accessories in wardrobe
740
-
741
- EXAMPLES
742
- $ eggs wardrobe show colibri
743
-
744
- $ eggs wardrobe show accessories/firmwares
745
-
746
- $ eggs wardrobe show accessories/
747
- </code></pre>
748
- <h2><code>eggs wardrobe wear [REPO]</code></h2>
749
- <p>wear costume/accessories from wardrobe</p>
750
- <pre><code>USAGE
751
- $ eggs wardrobe wear [REPO] [-h] [-a] [-f] [-v] [-w &#x3C;value>]
752
-
753
- ARGUMENTS
754
- REPO costume to wear
755
-
756
- FLAGS
757
- -a, --no_accessories not install accessories
758
- -f, --no_firmwares not install firmwares
759
- -h, --help Show CLI help.
760
- -v, --verbose
761
- -w, --wardrobe=&#x3C;value> wardrobe
762
-
763
- DESCRIPTION
764
- wear costume/accessories from wardrobe
765
-
766
- EXAMPLES
767
- sudo eggs wardrobe wear duck
768
-
769
- sudo eggs wardrobe wear accessories/firmwares
770
-
771
- sudo eggs wardrobe wear wagtail/waydroid
772
118
  </code></pre>
773
119
  <h1>FILES</h1>
774
120
  <pre><code> /etc/penguins-eggs.d