penguins-eggs 9.1.30 → 9.1.35
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 +59 -18
- package/addons/eggs/theme/applications/install-debian.desktop +2 -2
- package/conf/distros/buster/calamares/modules/locale.yml +3 -3
- package/conf/distros/rolling/calamares/modules/packages.yml +1 -0
- package/conf/eggs.yaml +2 -2
- package/conf/exclude.list +81 -96
- package/lib/classes/bleach.js +8 -1
- package/lib/classes/compressors.d.ts +7 -0
- package/lib/classes/compressors.js +38 -1
- package/lib/classes/daddy.js +6 -29
- package/lib/classes/distro.js +18 -4
- package/lib/classes/incubation/fisherman-helper/packages.js +7 -4
- package/lib/classes/keyboards.d.ts +10 -12
- package/lib/classes/keyboards.js +19 -23
- package/lib/classes/locales.js +15 -10
- package/lib/classes/ovary.js +18 -6
- package/lib/classes/utils.js +19 -6
- package/lib/commands/{install.d.ts → krill.d.ts} +1 -0
- package/lib/commands/{install.js → krill.js} +2 -2
- package/lib/commands/produce.js +8 -30
- package/lib/components/elements/information.js +0 -2
- package/lib/{classes/krill_prepare.d.ts → krill/krill-prepare.d.ts} +9 -2
- package/lib/{classes/krill_prepare.js → krill/krill-prepare.js} +62 -12
- package/lib/krill/krill-sequence.d.ts +148 -0
- package/lib/krill/krill-sequence.js +533 -0
- package/lib/krill/modules/add-user.d.ts +15 -0
- package/lib/krill/modules/add-user.js +41 -0
- package/lib/krill/modules/bootloader-config-arch.d.ts +9 -0
- package/lib/krill/modules/bootloader-config-arch.js +13 -0
- package/lib/krill/modules/bootloader-config-ubuntu.d.ts +9 -0
- package/lib/krill/modules/bootloader-config-ubuntu.js +93 -0
- package/lib/krill/modules/bootloader-config.d.ts +9 -0
- package/lib/krill/modules/bootloader-config.js +23 -0
- package/lib/krill/modules/bootloader.d.ts +10 -0
- package/lib/krill/modules/bootloader.js +17 -0
- package/lib/krill/modules/change-password.d.ts +10 -0
- package/lib/krill/modules/change-password.js +16 -0
- package/lib/krill/modules/del-live-user.d.ts +9 -0
- package/lib/krill/modules/del-live-user.js +37 -0
- package/lib/krill/modules/fstab.d.ts +9 -0
- package/lib/krill/modules/fstab.js +93 -0
- package/lib/krill/modules/grubcfg.d.ts +12 -0
- package/lib/krill/modules/grubcfg.js +33 -0
- package/lib/krill/modules/hostname.d.ts +8 -0
- package/lib/krill/modules/hostname.js +13 -0
- package/lib/krill/modules/hosts.d.ts +9 -0
- package/lib/krill/modules/hosts.js +30 -0
- package/lib/krill/modules/initramfs-cfg.d.ts +9 -0
- package/lib/krill/modules/initramfs-cfg.js +29 -0
- package/lib/krill/modules/initramfs.d.ts +8 -0
- package/lib/krill/modules/initramfs.js +30 -0
- package/lib/krill/modules/locale.d.ts +8 -0
- package/lib/krill/modules/locale.js +47 -0
- package/lib/krill/modules/l/303/262cale-cfg.d.ts +5 -0
- package/lib/krill/modules/l/303/262cale-cfg.js +58 -0
- package/lib/krill/modules/machine-id.d.ts +10 -0
- package/lib/krill/modules/machine-id.js +21 -0
- package/lib/krill/modules/mkfs.d.ts +8 -0
- package/lib/krill/modules/mkfs.js +33 -0
- package/lib/krill/modules/mount-fs.d.ts +12 -0
- package/lib/krill/modules/mount-fs.js +63 -0
- package/lib/krill/modules/mount-vfs.d.ts +12 -0
- package/lib/krill/modules/mount-vfs.js +40 -0
- package/lib/krill/modules/network-cfg.d.ts +14 -0
- package/lib/krill/modules/network-cfg.js +49 -0
- package/lib/krill/modules/partitions.d.ts +15 -0
- package/lib/krill/modules/partitions.js +307 -0
- package/lib/krill/modules/remove-installer-link.d.ts +8 -0
- package/lib/krill/modules/remove-installer-link.js +34 -0
- package/lib/krill/modules/set-keyboard.d.ts +5 -0
- package/lib/krill/modules/set-keyboard.js +50 -0
- package/lib/krill/modules/set-timezone.d.ts +9 -0
- package/lib/krill/modules/set-timezone.js +21 -0
- package/lib/krill/modules/umount.d.ts +9 -0
- package/lib/krill/modules/umount.js +26 -0
- package/lib/krill/modules/unpackfs.d.ts +8 -0
- package/lib/krill/modules/unpackfs.js +17 -0
- package/lib/lib/cli-autologin.js +3 -3
- package/lib/lib/select_keyboard_variant.js +1 -0
- package/manpages/doc/man/eggs.html +122 -90
- package/mkinitcpio/README.md +6 -67
- package/mkinitcpio/archlinux/mkinitcpio-install.conf +5 -0
- package/mkinitcpio/archlinux/mkinitcpio-produce.conf +13 -0
- package/mkinitcpio/manjaro/README.md +31 -0
- package/mkinitcpio/manjaro/mkinitcpio-install.conf +7 -0
- package/mkinitcpio/manjaro/mkinitcpio-produce.conf +7 -0
- package/package.json +10 -11
- package/scripts/_eggs +8 -8
- package/scripts/eggs.bash +1 -1
- package/scripts/mom-cli.sh +8 -8
- package/lib/classes/i18n.d.ts +0 -34
- package/lib/classes/i18n.js +0 -126
- package/lib/classes/krill_install.d.ts +0 -227
- package/lib/classes/krill_install.js +0 -1370
- package/mkinitcpio/manjaro/mkinitcpio.conf +0 -4
|
@@ -6,10 +6,10 @@
|
|
|
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 v9.
|
|
9
|
+
<h1>eggs(1) -- the reproductive system of penguins: eggs v9.1.32</h1>
|
|
10
10
|
<h1>SYNOPSIS</h1>
|
|
11
11
|
<p>deb package</p>
|
|
12
|
-
<pre><code>$ sudo dpkg -i eggs_9.
|
|
12
|
+
<pre><code>$ sudo dpkg -i eggs_9.1.32_amd64.deb
|
|
13
13
|
</code></pre>
|
|
14
14
|
<p>npm package</p>
|
|
15
15
|
<pre><code>$ npm install -g penguins-eggs
|
|
@@ -17,7 +17,7 @@ $ eggs COMMAND
|
|
|
17
17
|
running command...
|
|
18
18
|
$ eggs (-v|--version|version)
|
|
19
19
|
|
|
20
|
-
penguins-eggs/9.
|
|
20
|
+
penguins-eggs/9.1.32 linux-x64 node-v16.15.1
|
|
21
21
|
$ eggs --help [COMMAND]
|
|
22
22
|
|
|
23
23
|
USAGE
|
|
@@ -42,7 +42,6 @@ sudo eggs dad
|
|
|
42
42
|
<li><a href="#eggs-adapt"><code>eggs adapt</code></a></li>
|
|
43
43
|
<li><a href="#eggs-analyze"><code>eggs analyze</code></a></li>
|
|
44
44
|
<li><a href="#eggs-autocomplete-shell"><code>eggs autocomplete [SHELL]</code></a></li>
|
|
45
|
-
<li><a href="#eggs-bro"><code>eggs bro</code></a></li>
|
|
46
45
|
<li><a href="#eggs-calamares"><code>eggs calamares</code></a></li>
|
|
47
46
|
<li><a href="#eggs-config"><code>eggs config</code></a></li>
|
|
48
47
|
<li><a href="#eggs-dad"><code>eggs dad</code></a></li>
|
|
@@ -51,20 +50,24 @@ sudo eggs dad
|
|
|
51
50
|
<li><a href="#eggs-export-iso"><code>eggs export iso</code></a></li>
|
|
52
51
|
<li><a href="#eggs-help-command"><code>eggs help [COMMAND]</code></a></li>
|
|
53
52
|
<li><a href="#eggs-info"><code>eggs info</code></a></li>
|
|
54
|
-
<li><a href="#eggs-install"><code>eggs install</code></a></li>
|
|
55
53
|
<li><a href="#eggs-kill"><code>eggs kill</code></a></li>
|
|
54
|
+
<li><a href="#eggs-krill"><code>eggs krill</code></a></li>
|
|
56
55
|
<li><a href="#eggs-mom"><code>eggs mom</code></a></li>
|
|
57
56
|
<li><a href="#eggs-produce"><code>eggs produce</code></a></li>
|
|
58
57
|
<li><a href="#eggs-remove"><code>eggs remove</code></a></li>
|
|
59
58
|
<li><a href="#eggs-syncfrom"><code>eggs syncfrom</code></a></li>
|
|
60
59
|
<li><a href="#eggs-syncto"><code>eggs syncto</code></a></li>
|
|
61
60
|
<li><a href="#eggs-tools-clean"><code>eggs tools clean</code></a></li>
|
|
62
|
-
<li><a href="#eggs-tools-locales"><code>eggs tools locales</code></a></li>
|
|
63
61
|
<li><a href="#eggs-tools-skel"><code>eggs tools skel</code></a></li>
|
|
64
62
|
<li><a href="#eggs-tools-stat"><code>eggs tools stat</code></a></li>
|
|
65
63
|
<li><a href="#eggs-tools-yolk"><code>eggs tools yolk</code></a></li>
|
|
66
64
|
<li><a href="#eggs-update"><code>eggs update</code></a></li>
|
|
67
65
|
<li><a href="#eggs-version"><code>eggs version</code></a></li>
|
|
66
|
+
<li><a href="#eggs-wardrobe-get-repo"><code>eggs wardrobe get [REPO]</code></a></li>
|
|
67
|
+
<li><a href="#eggs-wardrobe-ironing-costume"><code>eggs wardrobe ironing [COSTUME]</code></a></li>
|
|
68
|
+
<li><a href="#eggs-wardrobe-list-wardrobe"><code>eggs wardrobe list [WARDROBE]</code></a></li>
|
|
69
|
+
<li><a href="#eggs-wardrobe-show-costume"><code>eggs wardrobe show [COSTUME]</code></a></li>
|
|
70
|
+
<li><a href="#eggs-wardrobe-wear-costume"><code>eggs wardrobe wear [COSTUME]</code></a></li>
|
|
68
71
|
</ul>
|
|
69
72
|
<h2><code>eggs adapt</code></h2>
|
|
70
73
|
<p>adapt monitor resolution for VM only</p>
|
|
@@ -77,12 +80,9 @@ FLAGS
|
|
|
77
80
|
|
|
78
81
|
DESCRIPTION
|
|
79
82
|
adapt monitor resolution for VM only
|
|
80
|
-
|
|
81
|
-
ALIASES
|
|
82
|
-
$ eggs adjust
|
|
83
83
|
</code></pre>
|
|
84
84
|
<h2><code>eggs analyze</code></h2>
|
|
85
|
-
<p>analyze
|
|
85
|
+
<p>analyze for syncto</p>
|
|
86
86
|
<pre><code>USAGE
|
|
87
87
|
$ eggs analyze [-h] [-v]
|
|
88
88
|
|
|
@@ -91,7 +91,7 @@ FLAGS
|
|
|
91
91
|
-v, --verbose verbose
|
|
92
92
|
|
|
93
93
|
DESCRIPTION
|
|
94
|
-
analyze
|
|
94
|
+
analyze for syncto
|
|
95
95
|
|
|
96
96
|
EXAMPLES
|
|
97
97
|
$ sudo eggs analyze
|
|
@@ -118,29 +118,18 @@ EXAMPLES
|
|
|
118
118
|
$ eggs autocomplete zsh
|
|
119
119
|
|
|
120
120
|
$ eggs autocomplete --refresh-cache
|
|
121
|
-
</code></pre>
|
|
122
|
-
<h2><code>eggs bro</code></h2>
|
|
123
|
-
<p>bro: waydroid helper</p>
|
|
124
|
-
<pre><code>USAGE
|
|
125
|
-
$ eggs bro [-h]
|
|
126
|
-
|
|
127
|
-
FLAGS
|
|
128
|
-
-h, --help Show CLI help.
|
|
129
|
-
|
|
130
|
-
DESCRIPTION
|
|
131
|
-
bro: waydroid helper
|
|
132
121
|
</code></pre>
|
|
133
122
|
<h2><code>eggs calamares</code></h2>
|
|
134
123
|
<p>calamares or install or configure it</p>
|
|
135
124
|
<pre><code>USAGE
|
|
136
|
-
$ eggs calamares [-h] [-v] [-i] [-
|
|
125
|
+
$ eggs calamares [-h] [-v] [-i] [-r] [--remove] [--theme <value>]
|
|
137
126
|
|
|
138
127
|
FLAGS
|
|
139
|
-
-f, --final final: remove calamares and all it's dependencies after the installation
|
|
140
128
|
-h, --help Show CLI help.
|
|
141
129
|
-i, --install install calamares and it's dependencies
|
|
142
|
-
-r, --remove
|
|
130
|
+
-r, --release release: remove calamares and all it's dependencies after the installation
|
|
143
131
|
-v, --verbose
|
|
132
|
+
--remove remove calamares and it's dependencies
|
|
144
133
|
--theme=<value> theme/branding for eggs and calamares
|
|
145
134
|
|
|
146
135
|
DESCRIPTION
|
|
@@ -167,9 +156,6 @@ FLAGS
|
|
|
167
156
|
DESCRIPTION
|
|
168
157
|
Configure and install prerequisites deb packages to run it
|
|
169
158
|
|
|
170
|
-
ALIASES
|
|
171
|
-
$ eggs prerequisites
|
|
172
|
-
|
|
173
159
|
EXAMPLES
|
|
174
160
|
~$ sudo eggs config
|
|
175
161
|
Configure and install prerequisites deb packages to run it
|
|
@@ -244,7 +230,7 @@ DESCRIPTION
|
|
|
244
230
|
Display help for eggs.
|
|
245
231
|
</code></pre>
|
|
246
232
|
<h2><code>eggs info</code></h2>
|
|
247
|
-
<p>
|
|
233
|
+
<p>informations about eggs configuration</p>
|
|
248
234
|
<pre><code>USAGE
|
|
249
235
|
$ eggs info [-v] [-h]
|
|
250
236
|
|
|
@@ -253,45 +239,42 @@ FLAGS
|
|
|
253
239
|
-v, --verbose
|
|
254
240
|
|
|
255
241
|
DESCRIPTION
|
|
256
|
-
|
|
242
|
+
informations about eggs configuration
|
|
257
243
|
</code></pre>
|
|
258
|
-
<h2><code>eggs
|
|
259
|
-
<p>
|
|
244
|
+
<h2><code>eggs kill</code></h2>
|
|
245
|
+
<p>kill the eggs/free the nest</p>
|
|
260
246
|
<pre><code>USAGE
|
|
261
|
-
$ eggs
|
|
247
|
+
$ eggs kill [-h] [-v]
|
|
262
248
|
|
|
263
249
|
FLAGS
|
|
264
|
-
-c, --cli force use CLI installer
|
|
265
250
|
-h, --help Show CLI help.
|
|
266
|
-
-k, --crypted crypted CLI installation
|
|
267
251
|
-v, --verbose verbose
|
|
268
252
|
|
|
269
253
|
DESCRIPTION
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
ALIASES
|
|
273
|
-
$ eggs hatch
|
|
274
|
-
$ eggs krill
|
|
254
|
+
kill the eggs/free the nest
|
|
275
255
|
|
|
276
256
|
EXAMPLES
|
|
277
|
-
$ eggs
|
|
278
|
-
|
|
257
|
+
$ eggs kill
|
|
258
|
+
kill the eggs/free the nest
|
|
279
259
|
</code></pre>
|
|
280
|
-
<h2><code>eggs
|
|
281
|
-
<p>
|
|
260
|
+
<h2><code>eggs krill</code></h2>
|
|
261
|
+
<p>command-line system installer - the egg became a penguin!</p>
|
|
282
262
|
<pre><code>USAGE
|
|
283
|
-
$ eggs
|
|
263
|
+
$ eggs krill [-c] [-k] [-p] [-h] [-v]
|
|
284
264
|
|
|
285
265
|
FLAGS
|
|
266
|
+
-c, --cli force use CLI installer
|
|
286
267
|
-h, --help Show CLI help.
|
|
268
|
+
-k, --crypted crypted CLI installation
|
|
269
|
+
-p, --pve Proxmox VE install
|
|
287
270
|
-v, --verbose verbose
|
|
288
271
|
|
|
289
272
|
DESCRIPTION
|
|
290
|
-
|
|
273
|
+
command-line system installer - the egg became a penguin!
|
|
291
274
|
|
|
292
275
|
EXAMPLES
|
|
293
|
-
$ eggs
|
|
294
|
-
|
|
276
|
+
$ eggs install
|
|
277
|
+
Install the system using GUI or CLI installer
|
|
295
278
|
</code></pre>
|
|
296
279
|
<h2><code>eggs mom</code></h2>
|
|
297
280
|
<p>ask for mommy - gui helper</p>
|
|
@@ -328,10 +311,6 @@ FLAGS
|
|
|
328
311
|
DESCRIPTION
|
|
329
312
|
produce a live image from your system whithout your data
|
|
330
313
|
|
|
331
|
-
ALIASES
|
|
332
|
-
$ eggs spawn
|
|
333
|
-
$ eggs lay
|
|
334
|
-
|
|
335
314
|
EXAMPLES
|
|
336
315
|
$ sudo eggs produce
|
|
337
316
|
produce an ISO called [hostname]-[arch]-YYYY-MM-DD_HHMM.iso, compressed xz (standard compression).
|
|
@@ -390,42 +369,37 @@ EXAMPLES
|
|
|
390
369
|
<h2><code>eggs syncfrom</code></h2>
|
|
391
370
|
<p>Restore users, server and datas from luks-eggs-backup</p>
|
|
392
371
|
<pre><code>USAGE
|
|
393
|
-
$ eggs syncfrom [-f <value>] [-r <value>] [-h] [-v]
|
|
372
|
+
$ eggs syncfrom [--delete <value>] [-f <value>] [-r <value>] [-h] [-v]
|
|
394
373
|
|
|
395
374
|
FLAGS
|
|
396
|
-
-f, --file=<value> file
|
|
375
|
+
-f, --file=<value> file LUKS volume encrypted
|
|
397
376
|
-h, --help Show CLI help.
|
|
398
377
|
-r, --rootdir=<value> rootdir of the installed system, when used from live
|
|
399
378
|
-v, --verbose verbose
|
|
379
|
+
--delete=<value> rsync --delete delete extraneous files from dest dirs
|
|
400
380
|
|
|
401
381
|
DESCRIPTION
|
|
402
382
|
Restore users, server and datas from luks-eggs-backup
|
|
403
383
|
|
|
404
|
-
ALIASES
|
|
405
|
-
$ eggs restore
|
|
406
|
-
|
|
407
384
|
EXAMPLES
|
|
408
385
|
$ sudo eggs restore
|
|
409
386
|
</code></pre>
|
|
410
387
|
<h2><code>eggs syncto</code></h2>
|
|
411
|
-
<p>
|
|
388
|
+
<p>saving users' datas and accounts on LUKS volume</p>
|
|
412
389
|
<pre><code>USAGE
|
|
413
|
-
$ eggs syncto [
|
|
390
|
+
$ eggs syncto [--delete <value>] [-f <value>] [-h] [-v]
|
|
414
391
|
|
|
415
392
|
FLAGS
|
|
416
393
|
-f, --file=<value> file LUKS volume encrypted
|
|
417
394
|
-h, --help Show CLI help.
|
|
418
|
-
-k, --krill krill
|
|
419
395
|
-v, --verbose verbose
|
|
396
|
+
--delete=<value> rsync --delete delete extraneous files from dest dirs
|
|
420
397
|
|
|
421
398
|
DESCRIPTION
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
ALIASES
|
|
425
|
-
$ eggs backup
|
|
399
|
+
saving users' datas and accounts on LUKS volume
|
|
426
400
|
|
|
427
401
|
EXAMPLES
|
|
428
|
-
$ sudo eggs
|
|
402
|
+
$ sudo eggs syncto
|
|
429
403
|
</code></pre>
|
|
430
404
|
<h2><code>eggs tools clean</code></h2>
|
|
431
405
|
<p>clean system log, apt, etc</p>
|
|
@@ -438,22 +412,6 @@ FLAGS
|
|
|
438
412
|
|
|
439
413
|
DESCRIPTION
|
|
440
414
|
clean system log, apt, etc
|
|
441
|
-
|
|
442
|
-
ALIASES
|
|
443
|
-
$ eggs clean
|
|
444
|
-
</code></pre>
|
|
445
|
-
<h2><code>eggs tools locales</code></h2>
|
|
446
|
-
<p>install/clean locales</p>
|
|
447
|
-
<pre><code>USAGE
|
|
448
|
-
$ eggs tools locales [-h] [-r] [-v]
|
|
449
|
-
|
|
450
|
-
FLAGS
|
|
451
|
-
-h, --help Show CLI help.
|
|
452
|
-
-r, --reinstall reinstall locales
|
|
453
|
-
-v, --verbose verbose
|
|
454
|
-
|
|
455
|
-
DESCRIPTION
|
|
456
|
-
install/clean locales
|
|
457
415
|
</code></pre>
|
|
458
416
|
<h2><code>eggs tools skel</code></h2>
|
|
459
417
|
<p>update skel from home configuration</p>
|
|
@@ -468,9 +426,6 @@ FLAGS
|
|
|
468
426
|
DESCRIPTION
|
|
469
427
|
update skel from home configuration
|
|
470
428
|
|
|
471
|
-
ALIASES
|
|
472
|
-
$ eggs skel
|
|
473
|
-
|
|
474
429
|
EXAMPLES
|
|
475
430
|
$ eggs skel --user mauro
|
|
476
431
|
desktop configuration of user mauro will get used as default
|
|
@@ -487,9 +442,6 @@ FLAGS
|
|
|
487
442
|
|
|
488
443
|
DESCRIPTION
|
|
489
444
|
get statistics from sourceforge
|
|
490
|
-
|
|
491
|
-
ALIASES
|
|
492
|
-
$ eggs stat
|
|
493
445
|
</code></pre>
|
|
494
446
|
<h2><code>eggs tools yolk</code></h2>
|
|
495
447
|
<p>configure eggs to install without internet</p>
|
|
@@ -509,11 +461,9 @@ EXAMPLES
|
|
|
509
461
|
<h2><code>eggs update</code></h2>
|
|
510
462
|
<p>update the penguin's eggs tool</p>
|
|
511
463
|
<pre><code>USAGE
|
|
512
|
-
$ eggs update [-h] [-
|
|
464
|
+
$ eggs update [-h] [-v]
|
|
513
465
|
|
|
514
466
|
FLAGS
|
|
515
|
-
-a, --apt if eggs package is .deb, update from distro repositories
|
|
516
|
-
-b, --basket if eggs package is .deb, update from eggs basket
|
|
517
467
|
-h, --help Show CLI help.
|
|
518
468
|
-v, --verbose verbose
|
|
519
469
|
|
|
@@ -527,6 +477,88 @@ EXAMPLES
|
|
|
527
477
|
<h2><code>eggs version</code></h2>
|
|
528
478
|
<pre><code>USAGE
|
|
529
479
|
$ eggs version
|
|
480
|
+
</code></pre>
|
|
481
|
+
<h2><code>eggs wardrobe get [REPO]</code></h2>
|
|
482
|
+
<p>get warorobe</p>
|
|
483
|
+
<pre><code>USAGE
|
|
484
|
+
$ eggs wardrobe get [REPO] [-v] [-h]
|
|
485
|
+
|
|
486
|
+
ARGUMENTS
|
|
487
|
+
REPO repository to get
|
|
488
|
+
|
|
489
|
+
FLAGS
|
|
490
|
+
-h, --help Show CLI help.
|
|
491
|
+
-v, --verbose
|
|
492
|
+
|
|
493
|
+
DESCRIPTION
|
|
494
|
+
get warorobe
|
|
495
|
+
</code></pre>
|
|
496
|
+
<h2><code>eggs wardrobe ironing [COSTUME]</code></h2>
|
|
497
|
+
<p>ordered show of costumes or accessories in wardrobe</p>
|
|
498
|
+
<pre><code>USAGE
|
|
499
|
+
$ eggs wardrobe ironing [COSTUME] [-w <value>] [-v] [-h]
|
|
500
|
+
|
|
501
|
+
ARGUMENTS
|
|
502
|
+
COSTUME costume
|
|
503
|
+
|
|
504
|
+
FLAGS
|
|
505
|
+
-h, --help Show CLI help.
|
|
506
|
+
-v, --verbose
|
|
507
|
+
-w, --wardrobe=<value> wardrobe
|
|
508
|
+
|
|
509
|
+
DESCRIPTION
|
|
510
|
+
ordered show of costumes or accessories in wardrobe
|
|
511
|
+
</code></pre>
|
|
512
|
+
<h2><code>eggs wardrobe list [WARDROBE]</code></h2>
|
|
513
|
+
<p>list costumes and accessoires in wardrobe</p>
|
|
514
|
+
<pre><code>USAGE
|
|
515
|
+
$ eggs wardrobe list [WARDROBE] [-v] [-h]
|
|
516
|
+
|
|
517
|
+
ARGUMENTS
|
|
518
|
+
WARDROBE wardrobe
|
|
519
|
+
|
|
520
|
+
FLAGS
|
|
521
|
+
-h, --help Show CLI help.
|
|
522
|
+
-v, --verbose
|
|
523
|
+
|
|
524
|
+
DESCRIPTION
|
|
525
|
+
list costumes and accessoires in wardrobe
|
|
526
|
+
</code></pre>
|
|
527
|
+
<h2><code>eggs wardrobe show [COSTUME]</code></h2>
|
|
528
|
+
<p>show costumes/accessories in wardrobe</p>
|
|
529
|
+
<pre><code>USAGE
|
|
530
|
+
$ eggs wardrobe show [COSTUME] [-w <value>] [-j] [-v] [-h]
|
|
531
|
+
|
|
532
|
+
ARGUMENTS
|
|
533
|
+
COSTUME costume
|
|
534
|
+
|
|
535
|
+
FLAGS
|
|
536
|
+
-h, --help Show CLI help.
|
|
537
|
+
-j, --json output JSON
|
|
538
|
+
-v, --verbose
|
|
539
|
+
-w, --wardrobe=<value> wardrobe
|
|
540
|
+
|
|
541
|
+
DESCRIPTION
|
|
542
|
+
show costumes/accessories in wardrobe
|
|
543
|
+
</code></pre>
|
|
544
|
+
<h2><code>eggs wardrobe wear [COSTUME]</code></h2>
|
|
545
|
+
<p>wear costume/accessories from wardrobe</p>
|
|
546
|
+
<pre><code>USAGE
|
|
547
|
+
$ eggs wardrobe wear [COSTUME] [-w <value>] [-a] [-f] [-s] [-v] [-h]
|
|
548
|
+
|
|
549
|
+
ARGUMENTS
|
|
550
|
+
COSTUME costume
|
|
551
|
+
|
|
552
|
+
FLAGS
|
|
553
|
+
-a, --no_accessories not install accessories
|
|
554
|
+
-f, --no_firmwares not install firmwares
|
|
555
|
+
-h, --help Show CLI help.
|
|
556
|
+
-s, --silent
|
|
557
|
+
-v, --verbose
|
|
558
|
+
-w, --wardrobe=<value> wardrobe
|
|
559
|
+
|
|
560
|
+
DESCRIPTION
|
|
561
|
+
wear costume/accessories from wardrobe
|
|
530
562
|
</code></pre>
|
|
531
563
|
<h1>FILES</h1>
|
|
532
564
|
<pre><code> /etc/penguins-eggs.d
|
package/mkinitcpio/README.md
CHANGED
|
@@ -1,77 +1,16 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Hic sunt leones...
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
* ```cd mkinitcpio-squashfs/dist/archlinux```
|
|
6
|
-
* ```makepkg -si```
|
|
3
|
+
After Debian/Devuan/Ubuntu I decided to bring eggs under Arch and thanx to the collaboration of stefano@manjaro.com
|
|
4
|
+
we was able to remaster linuxmanjaro since january 2022.
|
|
7
5
|
|
|
8
|
-
|
|
9
|
-
edit ```/etc/mkinitcpio.conf``` replaca HOOKS with:
|
|
6
|
+
eggs was on AUR from an age, thanx someone create the PKGBUILD from the amd64 Debian edition.
|
|
10
7
|
|
|
11
|
-
|
|
8
|
+
eggs was in manjaro community until June 2022, after it [was removed](https://forum.manjaro.org/t/penguins-eggs-help-needed-for-manjaro-compatibility/96799/20?u=artisan).
|
|
12
9
|
|
|
13
|
-
|
|
10
|
+
Unfortunately I have not mantainer authorizations in manjaro, so I started to buld a new PKGBUILD here because want optimize PKGBUILD of eggs amd have it complete, streamlined, and compliant with manjaro policies and eggs.
|
|
14
11
|
|
|
15
|
-
## show hooks availables
|
|
16
|
-
``` ls /usr/lib/initcpio/install/ ```
|
|
17
|
-
``` mkinitcpio -L```
|
|
18
12
|
|
|
19
|
-
## initramfs creation
|
|
20
|
-
```mkinitcpio -g initramfs-5.13-x86_64.img```
|
|
21
13
|
|
|
22
|
-
## copy initramfs-5.13-x86_64.img on iso
|
|
23
|
-
```sudo cp initramfs-5.13-x86_64.img /home/eggs/ovarium/iso/live/```
|
|
24
14
|
|
|
25
|
-
## change the kernel parameters in isolinux.cfg
|
|
26
15
|
|
|
27
|
-
edit ```isolinux.cfg```, as follow:
|
|
28
16
|
|
|
29
|
-
```sudo nano /home/eggs/ovarium/iso/live/isolinux/isolinux.cfg```
|
|
30
|
-
and delete, or comment the follow line
|
|
31
|
-
|
|
32
|
-
```
|
|
33
|
-
...
|
|
34
|
-
squashfs=LABEL={{{volid}}}:/live/filesystem.squashfs
|
|
35
|
-
```
|
|
36
|
-
|
|
37
|
-
in ```{{{volid}}}``` replace with the content of ```.disk/info```
|
|
38
|
-
|
|
39
|
-
The folder ```.disk``` is present under folder ```iso``` in ```ovarium```. Example:
|
|
40
|
-
|
|
41
|
-
```
|
|
42
|
-
say "Booting GNU/Linux Live (kernel 5.13.19-2-MANJARO)..."
|
|
43
|
-
linux /live/vmlinuz-5.13-x86_64
|
|
44
|
-
append initrd=/live/initramfs-5.13-x86_64.img squashfs=LABEL=xfce:/live/filesystem.squashfs boot=live components locales=it_IT.utf8
|
|
45
|
-
```
|
|
46
|
-
|
|
47
|
-
## Remove previous iso image
|
|
48
|
-
```sudo rm /home/eggs/egg-of-*```
|
|
49
|
-
|
|
50
|
-
## rebuild a new iso image
|
|
51
|
-
```sudo /home/eggs/ovarium/mkisofs```
|
|
52
|
-
|
|
53
|
-
## export the new iso image to test
|
|
54
|
-
We have in ```/etc/penguins-eggs.d/tools.yml``` the follow lines,
|
|
55
|
-
|
|
56
|
-
```
|
|
57
|
-
remoteHost: 192.168.61.2
|
|
58
|
-
remotePathIso: /home/artisan/sourceforge/iso/
|
|
59
|
-
```
|
|
60
|
-
|
|
61
|
-
I use a Proxmox VE installation to manage my VMs, so we need to export our iso to the host, under
|
|
62
|
-
the path ```/var/lib/vz/template/so```. It is a repetitive task for me, and boring enouth digit the
|
|
63
|
-
commands to delete previous images and copy the new ones, so I add a command ```eggs export iso -c```
|
|
64
|
-
to automatize that. Sorry, the address of remote host configuration and remoteIso path are hard
|
|
65
|
-
coded in eggs, but you can edit ```/etc/penguins-eggs.d/tools.yml``` and place your needs.
|
|
66
|
-
|
|
67
|
-
So: ```./eggs export iso -c```
|
|
68
|
-
|
|
69
|
-
At this point we can boot our image.
|
|
70
|
-
|
|
71
|
-
Probably there are situations where you are usig qemu and this command it's not necessary or different.
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
# Garuda
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# archlinux mkinitcpio-produce.conf
|
|
2
|
+
# it is used producing live: using archiso-mkinitcpio
|
|
3
|
+
MODULES=()
|
|
4
|
+
BINARIES=()
|
|
5
|
+
FILES=()
|
|
6
|
+
HOOKS=(base udev modconf memdisk archiso archiso_loop_mnt archiso_pxe_common archiso_pxe_nbd archiso_pxe_http archiso_pxe_nfs archiso_kms block filesystems keyboard)
|
|
7
|
+
COMPRESSION="zsd"
|
|
8
|
+
#COMPRESSION_OPTIONS=()
|
|
9
|
+
|
|
10
|
+
# manjaro mkinitcpio-produce.conf
|
|
11
|
+
# MODULES="loop dm-snapshot"
|
|
12
|
+
# HOOKS="base udev miso_shutdown miso miso_loop_mnt miso_kms modconf block filesystems keyboard keymap"
|
|
13
|
+
# COMPRESSION="zstd"
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# penguins-eggs manjaro
|
|
2
|
+
|
|
3
|
+
## Build and install penguins-eggs
|
|
4
|
+
|
|
5
|
+
Copy and paste follow instructions
|
|
6
|
+
```
|
|
7
|
+
git clone https://github.com/pieroproietti/penguins-eggs-manjaro
|
|
8
|
+
cd penguins-eggs-manjaro
|
|
9
|
+
makepkg -srcCi
|
|
10
|
+
```
|
|
11
|
+
## Create your first iso: CLI installer krill
|
|
12
|
+
* ```sudo eggs produce --fast```
|
|
13
|
+
|
|
14
|
+
## Create your first desktop iso: GUI installer calamares
|
|
15
|
+
* ```sudo eggs calamares --install```
|
|
16
|
+
* ```sudo eggs produce --fast```
|
|
17
|
+
|
|
18
|
+
## Copy your iso image and boot the son of your system
|
|
19
|
+
You can use simple USB or USB with ventoy, iso file with proxmox ve, virtualbox, vmware etc.
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
# Developer and collaboration links
|
|
23
|
+
* penguins-eggs discussion on [manjaro-forum](https://forum.manjaro.org/t/penguins-eggs-help-needed-for-manjaro-compatibility/96799)
|
|
24
|
+
* penguins-eggs PKGBUILD on [community](https://gitlab.manjaro.org/packages/community/penguins-eggs)
|
|
25
|
+
* penguins-eggs PKGBUILD [my way](https://github.com/pieroproietti/penguins-eggs-manjaro) (*)
|
|
26
|
+
* penguins-eggs [sources](https://github.com/pieroproietti/penguins-eggs)
|
|
27
|
+
* penguins-eggs [book](https://penguins-eggs.net/book/)
|
|
28
|
+
* penguins-eggs [blog](https://penguins-eggs.net)
|
|
29
|
+
|
|
30
|
+
(*) Here we refere always to that, but I hope with same help to solve the problems and have it in community again.
|
|
31
|
+
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# manjaro linux Qono mkinitpip-install.conf krill installing
|
|
2
|
+
MODULES=(qxl virtio-gpu virtio virtio_scsi virtio_blk virtio_pci virtio_net virtio_ring)
|
|
3
|
+
HOOKS="base udev modconf block keyboard keymap consolefont filesystems fsck"
|
|
4
|
+
COMPRESSION="zstd"
|
|
5
|
+
|
|
6
|
+
# removed: bochs_drm
|
|
7
|
+
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# manjaro linux Qono krill producing iso
|
|
2
|
+
MODULES="loop dm-snapshot"
|
|
3
|
+
HOOKS="base udev miso_shutdown miso miso_loop_mnt miso_kms modconf block filesystems keyboard keymap"
|
|
4
|
+
COMPRESSION="zstd"
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
# HOOKS="base udev pe_miso_shutdown pe_miso pe_miso_loop_mnt pe_miso_kms modconf block filesystems keyboard keymap"
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "penguins-eggs",
|
|
3
3
|
"description": "Perri's Brewery edition: remaster your system and distribuite it",
|
|
4
|
-
"version": "9.1.
|
|
4
|
+
"version": "9.1.35",
|
|
5
5
|
"author": "Piero Proietti @pieroproietti",
|
|
6
6
|
"bin": {
|
|
7
7
|
"eggs": "bin/run"
|
|
8
8
|
},
|
|
9
9
|
"bugs": "https://github.com/pieroproietti/penguins-eggs/issues",
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@oclif/core": "^1.
|
|
11
|
+
"@oclif/core": "^1.9.0",
|
|
12
12
|
"@oclif/plugin-autocomplete": "^1.3.0",
|
|
13
13
|
"@oclif/plugin-help": "^5.1.12",
|
|
14
14
|
"@oclif/plugin-not-found": "^2.3.1",
|
|
@@ -35,11 +35,11 @@
|
|
|
35
35
|
"@types/inquirer": "^8.2.1",
|
|
36
36
|
"@types/js-yaml": "^4.0.5",
|
|
37
37
|
"@types/mocha": "^9.1.1",
|
|
38
|
-
"@types/mustache": "^4.1.
|
|
39
|
-
"@types/node": "^17.0.
|
|
40
|
-
"@types/react": "^18.0.
|
|
38
|
+
"@types/mustache": "^4.1.3",
|
|
39
|
+
"@types/node": "^17.0.42",
|
|
40
|
+
"@types/react": "^18.0.12",
|
|
41
41
|
"@types/shelljs": "^0.8.11",
|
|
42
|
-
"@typescript-eslint/parser": "^5.
|
|
42
|
+
"@typescript-eslint/parser": "^5.27.1",
|
|
43
43
|
"chai": "^4.3.6",
|
|
44
44
|
"eslint": "^7.32.0",
|
|
45
45
|
"eslint-config-oclif": "^4.0.0",
|
|
@@ -48,9 +48,9 @@
|
|
|
48
48
|
"mocha": "^10.0.0",
|
|
49
49
|
"nyc": "^15.1.0",
|
|
50
50
|
"perrisbrewery": "^0.6.3-1",
|
|
51
|
-
"ts-node": "^10.
|
|
52
|
-
"typedoc": "^0.22.
|
|
53
|
-
"typescript": "^4.
|
|
51
|
+
"ts-node": "^10.8.1",
|
|
52
|
+
"typedoc": "^0.22.17",
|
|
53
|
+
"typescript": "^4.7.3"
|
|
54
54
|
},
|
|
55
55
|
"peerDependencies": {
|
|
56
56
|
"@typescript-eslint/parser": "^5.0.0",
|
|
@@ -68,8 +68,7 @@
|
|
|
68
68
|
"/lib",
|
|
69
69
|
"/manpages",
|
|
70
70
|
"mkinitcpio",
|
|
71
|
-
"/scripts"
|
|
72
|
-
"/templates"
|
|
71
|
+
"/scripts"
|
|
73
72
|
],
|
|
74
73
|
"homepage": "https://penguins-eggs.net/",
|
|
75
74
|
"keywords": [
|
package/scripts/_eggs
CHANGED
|
@@ -16,8 +16,8 @@ _eggs () {
|
|
|
16
16
|
"export\:docs:remove and export docType documentation of the sources in the destination host"
|
|
17
17
|
"export\:iso:export iso in the destination host"
|
|
18
18
|
"info:informations about eggs configuration"
|
|
19
|
-
"install:command-line system installer - the egg became a penguin!"
|
|
20
19
|
"kill:kill the eggs/free the nest"
|
|
20
|
+
"krill:command-line system installer - the egg became a penguin!"
|
|
21
21
|
"mom:ask for mommy - gui helper"
|
|
22
22
|
"produce:produce a live image from your system whithout your data"
|
|
23
23
|
"remove:remove eggs and others stuff"
|
|
@@ -116,19 +116,19 @@ info)
|
|
|
116
116
|
)
|
|
117
117
|
;;
|
|
118
118
|
|
|
119
|
-
|
|
119
|
+
kill)
|
|
120
120
|
_command_flags=(
|
|
121
|
-
"--
|
|
122
|
-
"--crypted[crypted CLI installation]"
|
|
123
|
-
"--pve[Proxmox VE install]"
|
|
124
|
-
"--help[Show CLI help.]"
|
|
121
|
+
"--help[Show CLI help.]"
|
|
125
122
|
"--verbose[verbose]"
|
|
126
123
|
)
|
|
127
124
|
;;
|
|
128
125
|
|
|
129
|
-
|
|
126
|
+
krill)
|
|
130
127
|
_command_flags=(
|
|
131
|
-
"--
|
|
128
|
+
"--cli[force use CLI installer]"
|
|
129
|
+
"--crypted[crypted CLI installation]"
|
|
130
|
+
"--pve[Proxmox VE install]"
|
|
131
|
+
"--help[Show CLI help.]"
|
|
132
132
|
"--verbose[verbose]"
|
|
133
133
|
)
|
|
134
134
|
;;
|
package/scripts/eggs.bash
CHANGED
|
@@ -20,8 +20,8 @@ export:deb --help --clean --amd64 --i386 --armel --arm64 --all
|
|
|
20
20
|
export:docs --help
|
|
21
21
|
export:iso --help --backup --clean
|
|
22
22
|
info --verbose --help
|
|
23
|
-
install --cli --crypted --pve --help --verbose
|
|
24
23
|
kill --help --verbose
|
|
24
|
+
krill --cli --crypted --pve --help --verbose
|
|
25
25
|
mom --help
|
|
26
26
|
produce --prefix --basename --backup --fast --normal --max --verbose --yolk --script --help --theme --addons --release
|
|
27
27
|
remove --purge --autoremove --help --verbose
|