penguins-eggs 9.1.29 → 9.1.34

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 (99) hide show
  1. package/README.md +59 -18
  2. package/conf/distros/buster/calamares/modules/locale.yml +3 -3
  3. package/conf/distros/focal/calamares/modules/before_bootloader_context.yml +6 -6
  4. package/conf/distros/focal/calamares/modules/unpackfs.yml +3 -2
  5. package/conf/distros/focal/calamares/modules/users.yml +37 -17
  6. package/conf/distros/rolling/calamares/modules/packages.yml +1 -0
  7. package/conf/eggs.yaml +2 -2
  8. package/lib/classes/bleach.js +8 -1
  9. package/lib/classes/compressors.d.ts +7 -0
  10. package/lib/classes/compressors.js +38 -1
  11. package/lib/classes/daddy.js +6 -29
  12. package/lib/classes/distro.js +15 -6
  13. package/lib/classes/incubation/fisherman-helper/packages.js +8 -5
  14. package/lib/classes/keyboards.d.ts +10 -12
  15. package/lib/classes/keyboards.js +19 -23
  16. package/lib/classes/locales.js +15 -10
  17. package/lib/classes/ovary.js +9 -4
  18. package/lib/classes/utils.js +19 -6
  19. package/lib/classes/xdg.js +4 -3
  20. package/lib/classes/yolk.js +1 -1
  21. package/lib/commands/{install.d.ts → krill.d.ts} +1 -0
  22. package/lib/commands/{install.js → krill.js} +2 -2
  23. package/lib/commands/produce.js +8 -30
  24. package/lib/{classes/krill_prepare.d.ts → krill/krill-prepare.d.ts} +9 -2
  25. package/lib/{classes/krill_prepare.js → krill/krill-prepare.js} +62 -12
  26. package/lib/krill/krill-sequence.d.ts +148 -0
  27. package/lib/krill/krill-sequence.js +533 -0
  28. package/lib/krill/modules/add-user.d.ts +15 -0
  29. package/lib/krill/modules/add-user.js +41 -0
  30. package/lib/krill/modules/bootloader-config-arch.d.ts +9 -0
  31. package/lib/krill/modules/bootloader-config-arch.js +13 -0
  32. package/lib/krill/modules/bootloader-config-ubuntu.d.ts +9 -0
  33. package/lib/krill/modules/bootloader-config-ubuntu.js +93 -0
  34. package/lib/krill/modules/bootloader-config.d.ts +9 -0
  35. package/lib/krill/modules/bootloader-config.js +23 -0
  36. package/lib/krill/modules/bootloader.d.ts +10 -0
  37. package/lib/krill/modules/bootloader.js +17 -0
  38. package/lib/krill/modules/change-password.d.ts +10 -0
  39. package/lib/krill/modules/change-password.js +16 -0
  40. package/lib/krill/modules/del-live-user.d.ts +9 -0
  41. package/lib/krill/modules/del-live-user.js +37 -0
  42. package/lib/krill/modules/fstab.d.ts +9 -0
  43. package/lib/krill/modules/fstab.js +93 -0
  44. package/lib/krill/modules/grubcfg.d.ts +12 -0
  45. package/lib/krill/modules/grubcfg.js +33 -0
  46. package/lib/krill/modules/hostname.d.ts +8 -0
  47. package/lib/krill/modules/hostname.js +13 -0
  48. package/lib/krill/modules/hosts.d.ts +9 -0
  49. package/lib/krill/modules/hosts.js +30 -0
  50. package/lib/krill/modules/initramfs-cfg.d.ts +9 -0
  51. package/lib/krill/modules/initramfs-cfg.js +29 -0
  52. package/lib/krill/modules/initramfs.d.ts +8 -0
  53. package/lib/krill/modules/initramfs.js +30 -0
  54. package/lib/krill/modules/locale.d.ts +8 -0
  55. package/lib/krill/modules/locale.js +47 -0
  56. package/lib/krill/modules/l/303/262cale-cfg.d.ts +5 -0
  57. package/lib/krill/modules/l/303/262cale-cfg.js +58 -0
  58. package/lib/krill/modules/machine-id.d.ts +10 -0
  59. package/lib/krill/modules/machine-id.js +21 -0
  60. package/lib/krill/modules/mkfs.d.ts +8 -0
  61. package/lib/krill/modules/mkfs.js +33 -0
  62. package/lib/krill/modules/mount-fs.d.ts +12 -0
  63. package/lib/krill/modules/mount-fs.js +63 -0
  64. package/lib/krill/modules/mount-vfs.d.ts +12 -0
  65. package/lib/krill/modules/mount-vfs.js +40 -0
  66. package/lib/krill/modules/network-cfg.d.ts +14 -0
  67. package/lib/krill/modules/network-cfg.js +49 -0
  68. package/lib/krill/modules/partitions.d.ts +15 -0
  69. package/lib/krill/modules/partitions.js +307 -0
  70. package/lib/krill/modules/remove-installer-link.d.ts +8 -0
  71. package/lib/krill/modules/remove-installer-link.js +34 -0
  72. package/lib/krill/modules/set-keyboard.d.ts +5 -0
  73. package/lib/krill/modules/set-keyboard.js +50 -0
  74. package/lib/krill/modules/set-timezone.d.ts +9 -0
  75. package/lib/krill/modules/set-timezone.js +21 -0
  76. package/lib/krill/modules/umount.d.ts +9 -0
  77. package/lib/krill/modules/umount.js +26 -0
  78. package/lib/krill/modules/unpackfs.d.ts +8 -0
  79. package/lib/krill/modules/unpackfs.js +17 -0
  80. package/lib/lib/cli-autologin.js +3 -3
  81. package/lib/lib/dependencies.js +4 -13
  82. package/lib/lib/select_keyboard_variant.js +1 -0
  83. package/manpages/doc/man/eggs.html +122 -90
  84. package/mkinitcpio/README.md +16 -0
  85. package/mkinitcpio/archlinux/mkinitcpio-install.conf +5 -0
  86. package/mkinitcpio/archlinux/mkinitcpio-produce.conf +13 -0
  87. package/mkinitcpio/garuda/README.md +29 -0
  88. package/mkinitcpio/manjaro/README.md +31 -0
  89. package/mkinitcpio/manjaro/mkinitcpio-install.conf +7 -0
  90. package/mkinitcpio/manjaro/mkinitcpio-produce.conf +7 -0
  91. package/package.json +14 -17
  92. package/scripts/_eggs +13 -13
  93. package/scripts/eggs.bash +2 -2
  94. package/scripts/mom-cli.sh +8 -8
  95. package/lib/classes/i18n.d.ts +0 -34
  96. package/lib/classes/i18n.js +0 -126
  97. package/lib/classes/krill_install.d.ts +0 -227
  98. package/lib/classes/krill_install.js +0 -1370
  99. package/oclif.manifest.json +0 -1
@@ -0,0 +1,50 @@
1
+ "use strict";
2
+ /**
3
+ * https://stackoverflow.com/questions/23876782/how-do-i-split-a-typescript-class-into-multiple-files
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ const tslib_1 = require("tslib");
7
+ const utils_1 = tslib_1.__importDefault(require("../../classes/utils"));
8
+ const utils_2 = require("../../lib/utils");
9
+ async function setKeyboard() {
10
+ /**
11
+ * influence: - /etc/default/keyboard (x11)
12
+ * - /etc/vconsole.conf (console)
13
+ * - /etc/X11/xorg.conf.d/00-keyboard.conf
14
+ *
15
+ * Problem: Actually don't update /etc/default/keyboard (x11)s
16
+ * /etc/vconsole.conf is update in installed syste,
17
+ */
18
+ // systemd as default
19
+ let cmd = `chroot ${this.installTarget} localectl set-keymap ${this.keyboardLayout} ${this.toNull}`;
20
+ if (!utils_1.default.isSystemd()) {
21
+ cmd = `chroot ${this.installTarget} setupcon ${this.toNull}`;
22
+ }
23
+ try {
24
+ await (0, utils_2.exec)(cmd, this.echo);
25
+ }
26
+ catch (error) {
27
+ console.log(error);
28
+ utils_1.default.pressKeyToExit(cmd, true);
29
+ }
30
+ /**
31
+ * this must to be not necessary but...
32
+ *
33
+ * force change /etc/default/keyboard (x11)
34
+ * force change /etc/vconsole.conf
35
+ */
36
+ let content = '# KEYBOARD CONFIGURATION FILE\n\n';
37
+ content += '# Consult the keyboard(5) manual page.\n\n';
38
+ content += 'XKBMODEL="' + this.keyboardModel + '"\n';
39
+ content += 'XKBLAYOUT="' + this.keyboardLayout + '"\n';
40
+ content += 'XKBVARIANT="' + this.keyboardVariant + '"\n';
41
+ content += 'XKBOPTIONS=""\n';
42
+ content += '\n';
43
+ content += 'BACKSPACE="guess"\n';
44
+ utils_1.default.write(this.installTarget + '/etc/default/keyboard', content);
45
+ content = 'KEYMAP=' + +this.keyboardModel + '"\n';
46
+ content += 'FONT=\n';
47
+ content += 'FONT_MAP=\n';
48
+ utils_1.default.write(this.installTarget + '/etc/vconsole.conf', content);
49
+ }
50
+ exports.default = setKeyboard;
@@ -0,0 +1,9 @@
1
+ /**
2
+ * https://stackoverflow.com/questions/23876782/how-do-i-split-a-typescript-class-into-multiple-files
3
+ */
4
+ import Sequence from '../krill-sequence';
5
+ /**
6
+ *
7
+ * @param this
8
+ */
9
+ export default function setTimezone(this: Sequence): Promise<void>;
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ /**
3
+ * https://stackoverflow.com/questions/23876782/how-do-i-split-a-typescript-class-into-multiple-files
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ const tslib_1 = require("tslib");
7
+ const utils_1 = require("../../lib/utils");
8
+ const fs_1 = tslib_1.__importDefault(require("fs"));
9
+ /**
10
+ *
11
+ * @param this
12
+ */
13
+ async function setTimezone() {
14
+ if (fs_1.default.existsSync('/etc/localtime')) {
15
+ const cmd = `chroot ${this.installTarget} unlink /etc/localtime`;
16
+ await (0, utils_1.exec)(cmd, this.echo);
17
+ }
18
+ const cmd = `chroot ${this.installTarget} ln -sf /usr/share/zoneinfo/${this.region}/${this.zone} /etc/localtime`;
19
+ await (0, utils_1.exec)(cmd, this.echo);
20
+ }
21
+ exports.default = setTimezone;
@@ -0,0 +1,9 @@
1
+ /**
2
+ * https://stackoverflow.com/questions/23876782/how-do-i-split-a-typescript-class-into-multiple-files
3
+ */
4
+ import Sequence from '../krill-sequence';
5
+ /**
6
+ *
7
+ * @param mountpoint
8
+ */
9
+ export default function umount(this: Sequence, mountPoint?: string): Promise<void>;
@@ -0,0 +1,26 @@
1
+ "use strict";
2
+ /**
3
+ * https://stackoverflow.com/questions/23876782/how-do-i-split-a-typescript-class-into-multiple-files
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ const tslib_1 = require("tslib");
7
+ const utils_1 = tslib_1.__importDefault(require("../../classes/utils"));
8
+ const utils_2 = require("../../lib/utils");
9
+ /**
10
+ *
11
+ * @param mountpoint
12
+ */
13
+ async function umount(mountPoint = '') {
14
+ let message = 'umount: ' + mountPoint;
15
+ if (utils_1.default.isMountpoint(mountPoint)) {
16
+ try {
17
+ await (0, utils_2.exec)(`umount ${mountPoint} ${this.toNull}`, this.echo);
18
+ await (0, utils_2.exec)('sleep 1', this.echo);
19
+ }
20
+ catch (error) {
21
+ message += +mountPoint + JSON.stringify(error);
22
+ await utils_1.default.pressKeyToExit(message);
23
+ }
24
+ }
25
+ }
26
+ exports.default = umount;
@@ -0,0 +1,8 @@
1
+ /**
2
+ * https://stackoverflow.com/questions/23876782/how-do-i-split-a-typescript-class-into-multiple-files
3
+ */
4
+ import Sequence from '../krill-sequence';
5
+ /**
6
+ * unpackfs
7
+ */
8
+ export default function unpackfs(this: Sequence): Promise<void>;
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ /**
3
+ * https://stackoverflow.com/questions/23876782/how-do-i-split-a-typescript-class-into-multiple-files
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ const tslib_1 = require("tslib");
7
+ const utils_1 = tslib_1.__importDefault(require("../../classes/utils"));
8
+ const utils_2 = require("../../lib/utils");
9
+ /**
10
+ * unpackfs
11
+ */
12
+ async function unpackfs() {
13
+ const cmd = `unsquashfs -d ${this.installTarget} -f ${this.distro.mountpointSquashFs}`;
14
+ const echoYes = utils_1.default.setEcho(true);
15
+ await (0, utils_2.exec)(cmd, echoYes);
16
+ }
17
+ exports.default = unpackfs;
@@ -110,13 +110,13 @@ exports.remove = remove;
110
110
  */
111
111
  async function addMotd(distro, version, user, userPasswd, rootPasswd, chroot = '/') {
112
112
  const fileMotd = `${chroot}/etc/motd`;
113
- let installer = 'sudo eggs install';
113
+ let installer = 'sudo eggs krill';
114
114
  if (pacman_1.default.packageIsInstalled('calamares')) {
115
115
  if (pacman_1.default.packageIsInstalled('plasma-desktop')) {
116
- installer = 'startplasma-wayland to run GUI and launch calamares, or from terminal sudo eggs install -c';
116
+ installer = 'startplasma-wayland to run GUI and launch calamares, or from terminal sudo eggs krill -c';
117
117
  }
118
118
  else if (pacman_1.default.packageIsInstalled('xfce4')) {
119
- installer = 'startxfce4 to run GUI and launch calamares, or from terminal sudo eggs install -c';
119
+ installer = 'startxfce4 to run GUI and launch calamares, or from terminal sudo eggs krill -c';
120
120
  }
121
121
  }
122
122
  if (!fs_1.default.existsSync(fileMotd)) {
@@ -43,29 +43,20 @@ exports.array2spaced = array2spaced;
43
43
  */
44
44
  exports.depCommon = [
45
45
  'cryptsetup',
46
+ 'curl',
46
47
  'dosfstools',
47
48
  'dpkg-dev',
48
49
  'isolinux',
49
- /**
50
- * live-boot-initramfs-tools, live-boot
51
- */
50
+ 'git',
52
51
  'live-boot',
53
52
  'live-boot-initramfs-tools',
54
- /**
55
- * dracut
56
- */
57
- // 'dracut',
53
+ 'lvm2',
58
54
  'parted',
59
55
  'rsync',
60
56
  'squashfs-tools',
61
57
  'syslinux-common',
62
58
  'coreutils',
63
- 'xorriso',
64
- /**
65
- * wardorbe
66
- */
67
- 'git',
68
- 'curl'
59
+ 'xorriso' // eggs
69
60
  ];
70
61
  /**
71
62
  * Dependencies for architectures
@@ -15,6 +15,7 @@ async function selectKeyboardVariant(keyboardLayout = '') {
15
15
  const keyboards = new keyboards_1.default();
16
16
  const variants = keyboards.getVariants(keyboardLayout);
17
17
  const supported = [];
18
+ supported.push(''); // inserisce una varian nulla
18
19
  for (const v of variants) {
19
20
  supported.push(v.code);
20
21
  }
@@ -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.0.18-1</h1>
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.0.18-1_amd64.deb
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.0.18-1 linux-x64 node-v16.13.2
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 situation</p>
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 situation
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] [-f] [-r] [--theme &#x3C;value>]
125
+ $ eggs calamares [-h] [-v] [-i] [-r] [--remove] [--theme &#x3C;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 remove calamares and it's dependencies
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=&#x3C;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>re-thinking for a different approach to CLI</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
- re-thinking for a different approach to CLI
242
+ informations about eggs configuration
257
243
  </code></pre>
258
- <h2><code>eggs install</code></h2>
259
- <p>command-line system installer - the egg became a penguin!</p>
244
+ <h2><code>eggs kill</code></h2>
245
+ <p>kill the eggs/free the nest</p>
260
246
  <pre><code>USAGE
261
- $ eggs install [-c] [-k] [-h] [-v]
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
- command-line system installer - the egg became a penguin!
271
-
272
- ALIASES
273
- $ eggs hatch
274
- $ eggs krill
254
+ kill the eggs/free the nest
275
255
 
276
256
  EXAMPLES
277
- $ eggs install
278
- Install the system using GUI or CLI installer
257
+ $ eggs kill
258
+ kill the eggs/free the nest
279
259
  </code></pre>
280
- <h2><code>eggs kill</code></h2>
281
- <p>kill the eggs/free the nest</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 kill [-h] [-v]
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
- kill the eggs/free the nest
273
+ command-line system installer - the egg became a penguin!
291
274
 
292
275
  EXAMPLES
293
- $ eggs kill
294
- kill the eggs/free the nest
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 &#x3C;value>] [-r &#x3C;value>] [-h] [-v]
372
+ $ eggs syncfrom [--delete &#x3C;value>] [-f &#x3C;value>] [-r &#x3C;value>] [-h] [-v]
394
373
 
395
374
  FLAGS
396
- -f, --file=&#x3C;value> file with LUKS volume encrypted
375
+ -f, --file=&#x3C;value> file LUKS volume encrypted
397
376
  -h, --help Show CLI help.
398
377
  -r, --rootdir=&#x3C;value> rootdir of the installed system, when used from live
399
378
  -v, --verbose verbose
379
+ --delete=&#x3C;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>Backup users, server and datas to luks-eggs-backup</p>
388
+ <p>saving users' datas and accounts on LUKS volume</p>
412
389
  <pre><code>USAGE
413
- $ eggs syncto [-k] [-f &#x3C;value>] [-h] [-v]
390
+ $ eggs syncto [--delete &#x3C;value>] [-f &#x3C;value>] [-h] [-v]
414
391
 
415
392
  FLAGS
416
393
  -f, --file=&#x3C;value> file LUKS volume encrypted
417
394
  -h, --help Show CLI help.
418
- -k, --krill krill
419
395
  -v, --verbose verbose
396
+ --delete=&#x3C;value> rsync --delete delete extraneous files from dest dirs
420
397
 
421
398
  DESCRIPTION
422
- Backup users, server and datas to luks-eggs-backup
423
-
424
- ALIASES
425
- $ eggs backup
399
+ saving users' datas and accounts on LUKS volume
426
400
 
427
401
  EXAMPLES
428
- $ sudo eggs restore
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] [-a] [-b] [-v]
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 &#x3C;value>] [-v] [-h]
500
+
501
+ ARGUMENTS
502
+ COSTUME costume
503
+
504
+ FLAGS
505
+ -h, --help Show CLI help.
506
+ -v, --verbose
507
+ -w, --wardrobe=&#x3C;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 &#x3C;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=&#x3C;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 &#x3C;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=&#x3C;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
@@ -0,0 +1,16 @@
1
+ # Hic sunt leones...
2
+
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.
5
+
6
+ eggs was on AUR from an age, thanx someone create the PKGBUILD from the amd64 Debian edition.
7
+
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).
9
+
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.
11
+
12
+
13
+
14
+
15
+
16
+
@@ -0,0 +1,5 @@
1
+ MODULES=(qxl virtio-gpu virtio virtio_scsi virtio_blk virtio_pci virtio_net virtio_ring)
2
+ HOOKS="base udev modconf block keyboard keymap consolefont filesystems fsck"
3
+ COMPRESSION="zstd"
4
+ # removed: bochs_drm
5
+
@@ -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,29 @@
1
+ # Garuda Linux
2
+
3
+ pacman -S garuda-tools-iso
4
+
5
+
6
+ mkinitcpio fail with
7
+
8
+ ```
9
+ ==> Starting build: 5.15.12-zen1-1-zen
10
+ -> Running build hook: [base]
11
+ -> Running build hook: [udev]
12
+ -> Running build hook: [miso_shutdown]
13
+ -> Running build hook: [miso]
14
+ -> Running build hook: [miso_loop_mnt]
15
+ -> Running build hook: [miso_kms]
16
+ ==> ERROR: module not found: `bochs_drm'
17
+ -> Running build hook: [modconf]
18
+ -> Running build hook: [block]
19
+ ==> WARNING: Possibly missing firmware for module: aic94xx
20
+ ==> WARNING: Possibly missing firmware for module: wd719x
21
+ ==> WARNING: Possibly missing firmware for module: xhci_pci
22
+ -> Running build hook: [filesystems]
23
+ -> Running build hook: [keyboard]
24
+ -> Running build hook: [keymap]
25
+ ==> ERROR: module not found: `bochs_drm'
26
+ Decompress: 408/647 files. Current: ...rnel/udf.ko.zst : 128 KiB... ==> Generating module dependencies
27
+ ==> Creating zstd-compressed initcpio image: /home/eggs/ovarium/iso/live/initramfs-linux-zen.img
28
+ ==> WARNING: errors were encountered during the build. The image may not be complete.
29
+ ```