penguins-eggs 9.0.31 → 9.1.10
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 +488 -28
- package/assets/leaves.svg +1 -0
- package/assets/live-installer/com.github.pieroproietti.penguins-eggs.policy +25 -0
- package/assets/live-installer/filesystem.packages-remove +49 -0
- package/assets/penguins-live-installer.desktop +27 -0
- package/conf/distros/buster/calamares/modules/bootloader.yml +3 -1
- package/conf/eggs.yaml +9 -2
- package/lib/classes/bleach.js +2 -2
- package/lib/classes/compressors.js +1 -1
- package/lib/classes/daddy.js +30 -30
- package/lib/classes/distro.d.ts +5 -3
- package/lib/classes/distro.js +78 -80
- package/lib/classes/family/archlinux.js +4 -4
- package/lib/classes/family/debian.d.ts +4 -0
- package/lib/classes/family/debian.js +13 -6
- package/lib/classes/family/fedora.js +4 -4
- package/lib/classes/family/suse.js +4 -4
- package/lib/classes/i18n.d.ts +28 -4
- package/lib/classes/i18n.js +112 -84
- package/lib/classes/incubation/branding.js +13 -7
- package/lib/classes/incubation/distros/bionic.js +1 -1
- package/lib/classes/incubation/distros/buster.js +1 -1
- package/lib/classes/incubation/distros/focal.js +1 -1
- package/lib/classes/incubation/distros/jessie.js +1 -1
- package/lib/classes/incubation/distros/rolling.js +1 -1
- package/lib/classes/incubation/fisherman-helper/displaymanager.js +1 -1
- package/lib/classes/incubation/fisherman-helper/packages.js +2 -2
- package/lib/classes/incubation/fisherman.js +5 -5
- package/lib/classes/incubation/incubator.js +5 -5
- package/lib/classes/incubation/installer.d.ts +1 -1
- package/lib/classes/incubation/installer.js +4 -4
- package/lib/classes/initrd.js +2 -2
- package/lib/classes/keyboards.d.ts +45 -0
- package/lib/classes/keyboards.js +196 -0
- package/lib/classes/krill_install.d.ts +5 -0
- package/lib/classes/krill_install.js +46 -14
- package/lib/classes/krill_prepare.d.ts +4 -0
- package/lib/classes/krill_prepare.js +56 -77
- package/lib/classes/locales.d.ts +14 -0
- package/lib/classes/locales.js +54 -0
- package/lib/classes/n8.js +1 -1
- package/lib/classes/ovary.d.ts +6 -1
- package/lib/classes/ovary.js +77 -60
- package/lib/classes/pacman.d.ts +1 -1
- package/lib/classes/pacman.js +40 -40
- package/lib/classes/pve-live.js +12 -16
- package/lib/classes/settings.d.ts +6 -0
- package/lib/classes/settings.js +13 -16
- package/lib/classes/sources_list.d.ts +27 -0
- package/lib/classes/sources_list.js +103 -0
- package/lib/classes/systemctl.js +1 -1
- package/lib/classes/tailor.d.ts +41 -0
- package/lib/classes/tailor.js +356 -0
- package/lib/classes/tools.js +4 -4
- package/lib/classes/users.js +1 -1
- package/lib/classes/utils.d.ts +16 -3
- package/lib/classes/utils.js +74 -36
- package/lib/classes/xdg.d.ts +2 -1
- package/lib/classes/xdg.js +56 -131
- package/lib/classes/yolk.d.ts +8 -7
- package/lib/classes/yolk.js +35 -38
- package/lib/commands/adapt.js +1 -1
- package/lib/commands/analyze.js +2 -2
- package/lib/commands/bro.js +2 -2
- package/lib/commands/calamares.js +4 -4
- package/lib/commands/config.js +8 -6
- package/lib/commands/dad.js +2 -2
- package/lib/commands/export/deb.js +2 -2
- package/lib/commands/export/docs.js +2 -2
- package/lib/commands/export/iso.js +2 -2
- package/lib/commands/info.js +2 -2
- package/lib/commands/install.js +5 -5
- package/lib/commands/kill.js +2 -2
- package/lib/commands/mom.js +2 -2
- package/lib/commands/produce.js +9 -9
- package/lib/commands/remove.js +2 -2
- package/lib/commands/syncfrom.d.ts +9 -3
- package/lib/commands/syncfrom.js +39 -32
- package/lib/commands/syncto.d.ts +26 -6
- package/lib/commands/syncto.js +73 -50
- package/lib/commands/tools/clean.js +2 -2
- package/lib/commands/tools/locales.js +9 -4
- package/lib/commands/tools/skel.js +2 -2
- package/lib/commands/tools/stat.js +3 -3
- package/lib/commands/tools/yolk.js +4 -4
- package/lib/commands/update.d.ts +0 -2
- package/lib/commands/update.js +7 -56
- package/lib/commands/wardrobe/get.d.ts +17 -0
- package/lib/commands/wardrobe/get.js +43 -0
- package/lib/commands/wardrobe/ironing.d.ts +15 -0
- package/lib/commands/wardrobe/ironing.js +125 -0
- package/lib/commands/wardrobe/list.d.ts +17 -0
- package/lib/commands/wardrobe/list.js +81 -0
- package/lib/commands/wardrobe/show.d.ts +19 -0
- package/lib/commands/wardrobe/show.js +71 -0
- package/lib/commands/wardrobe/wear.d.ts +20 -0
- package/lib/commands/wardrobe/wear.js +79 -0
- package/lib/components/elements/information.js +41 -34
- package/lib/components/elements/steps.js +1 -1
- package/lib/components/elements/title.js +5 -4
- package/lib/components/finished.js +6 -5
- package/lib/components/install.js +5 -5
- package/lib/components/keyboard.js +5 -8
- package/lib/components/location.js +5 -5
- package/lib/components/network.js +6 -5
- package/lib/components/partitions.js +5 -5
- package/lib/components/summary.js +5 -5
- package/lib/components/users.js +5 -5
- package/lib/components/welcome.js +7 -7
- package/lib/interfaces/i-costume.d.ts +27 -0
- package/lib/interfaces/i-costume.js +2 -0
- package/lib/interfaces/i-distro.d.ts +4 -2
- package/lib/interfaces/i-installer.d.ts +1 -1
- package/lib/interfaces/i-krill.d.ts +1 -0
- package/lib/interfaces/i-materia.d.ts +32 -0
- package/lib/interfaces/i-materia.js +2 -0
- package/lib/interfaces/i-packages.d.ts +13 -0
- package/lib/interfaces/i-packages.js +2 -0
- package/lib/interfaces/i-xkb-model.d.ts +17 -0
- package/lib/interfaces/i-xkb-model.js +2 -0
- package/lib/interfaces/index.d.ts +2 -0
- package/lib/lib/cli-autologin.js +3 -3
- package/lib/lib/select_address_type.js +1 -1
- package/lib/lib/select_filesystem_type.js +2 -2
- package/lib/lib/select_installation_device.js +1 -1
- package/lib/lib/select_interface.js +1 -1
- package/lib/lib/select_keyboard_layout.d.ts +1 -28
- package/lib/lib/select_keyboard_layout.js +18 -33
- package/lib/lib/select_keyboard_model.d.ts +4 -0
- package/lib/lib/select_keyboard_model.js +36 -0
- package/lib/lib/select_keyboard_option.d.ts +4 -0
- package/lib/lib/select_keyboard_option.js +36 -0
- package/lib/lib/select_keyboard_variant.d.ts +1 -5
- package/lib/lib/select_keyboard_variant.js +32 -5
- package/lib/lib/select_languages.d.ts +1 -1
- package/lib/lib/select_languages.js +8 -7
- package/lib/lib/select_regions.d.ts +1 -1
- package/lib/lib/select_regions.js +2 -2
- package/lib/lib/select_user_swap_choice.js +2 -2
- package/oclif.manifest.json +1 -1
- package/package.json +19 -20
- package/scripts/_eggs +53 -8
- package/scripts/eggs.bash +9 -4
- package/scripts/mom-cli.sh +66 -0
- package/scripts/resy.sh +8 -0
- package/scripts/userexist.sh +6 -0
- package/assets/penguins-clinstaller.desktop +0 -24
- package/assets/penguins-minstall.desktop +0 -95
- package/conf/distros/buster/locales/locale.gen.template +0 -10
- package/conf/distros/buster/locales/locale.template +0 -11
- package/conf/distros/focal/locale.gen.template +0 -8
- package/lib/classes/basket.d.ts +0 -22
- package/lib/classes/basket.js +0 -114
package/README.md
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
[](https://vshymanskyy.github.io/StandWithUkraine)
|
|
2
|
+
|
|
1
3
|
penguins-eggs
|
|
2
4
|
=============
|
|
3
5
|
|
|
@@ -70,6 +72,13 @@ I suggest to leave the default values unchanged during the development of your r
|
|
|
70
72
|
### yolk
|
|
71
73
|
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.
|
|
72
74
|
|
|
75
|
+
### wardrobe
|
|
76
|
+
wardrobe was added to eggs on april 2022, it's is a way to guide and consolidate the processo of creating a custom version of Linux, starting from a CLI system. Actually - after very short time . all my personal editions are created using wardrobe. In this way I can organize, consolidate and manage better my work.
|
|
77
|
+
|
|
78
|
+
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 an alone developer.
|
|
79
|
+
|
|
80
|
+
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 result of mine customizations are under [ISOs/Debian/bullseys](https://sourceforge.net/projects/penguins-eggs/files/iso/debian/bullseye/) on my sourgeforce page.
|
|
81
|
+
|
|
73
82
|
## What distributions can I use?
|
|
74
83
|
eggs was born on Debian strecth/buster, but actually full support Debian from jessie to bookworm/sid, Devuan beowulf, chimaera, daedalus, Ubuntu bionic, focal, , hirsute, impish, jammy and all derivatives including Linux mint, Deepin, neon KDE, etc. I continuisly try it against Debian various versions, before releases, I tried it successfully in LMDE 4 debbie, and deepin. eggs, generally must work with all the derivates from Debian, Devuan and Ubuntu.
|
|
75
84
|
|
|
@@ -114,7 +123,6 @@ sudo dpkg -i eggs_8.17.17-1_i386.deb
|
|
|
114
123
|
## Upgrade eggs
|
|
115
124
|
If you are using penguins-eggs-ppa You can ugrade eggs as others packages just: **sudo apt upgrade**.
|
|
116
125
|
|
|
117
|
-
|
|
118
126
|
### Upgrade from basket
|
|
119
127
|
If you are using not the penguins-eggs-ppa, the fastest way to use sudo eggs update and choose basket. Eggs let you to select the last 4 versions on the [basket](https://sourceforge.net/projects/penguins-eggs/files/packages-deb/) and install it.
|
|
120
128
|
|
|
@@ -133,7 +141,7 @@ $ npm install -g penguins-eggs
|
|
|
133
141
|
$ eggs COMMAND
|
|
134
142
|
running command...
|
|
135
143
|
$ eggs (--version|-v)
|
|
136
|
-
penguins-eggs/9.
|
|
144
|
+
penguins-eggs/9.1.10 linux-x64 node-v16.14.2
|
|
137
145
|
$ eggs --help [COMMAND]
|
|
138
146
|
USAGE
|
|
139
147
|
$ eggs COMMAND
|
|
@@ -144,22 +152,33 @@ USAGE
|
|
|
144
152
|
# Commands
|
|
145
153
|
<!-- commands -->
|
|
146
154
|
* [`eggs adapt`](#eggs-adapt)
|
|
155
|
+
* [`eggs adjust`](#eggs-adjust)
|
|
147
156
|
* [`eggs analyze`](#eggs-analyze)
|
|
148
157
|
* [`eggs autocomplete [SHELL]`](#eggs-autocomplete-shell)
|
|
158
|
+
* [`eggs backup`](#eggs-backup)
|
|
149
159
|
* [`eggs bro`](#eggs-bro)
|
|
150
160
|
* [`eggs calamares`](#eggs-calamares)
|
|
161
|
+
* [`eggs clean`](#eggs-clean)
|
|
151
162
|
* [`eggs config`](#eggs-config)
|
|
152
163
|
* [`eggs dad`](#eggs-dad)
|
|
153
164
|
* [`eggs export deb`](#eggs-export-deb)
|
|
154
165
|
* [`eggs export docs`](#eggs-export-docs)
|
|
155
166
|
* [`eggs export iso`](#eggs-export-iso)
|
|
167
|
+
* [`eggs hatch`](#eggs-hatch)
|
|
156
168
|
* [`eggs help [COMMAND]`](#eggs-help-command)
|
|
157
169
|
* [`eggs info`](#eggs-info)
|
|
158
170
|
* [`eggs install`](#eggs-install)
|
|
159
171
|
* [`eggs kill`](#eggs-kill)
|
|
172
|
+
* [`eggs krill`](#eggs-krill)
|
|
173
|
+
* [`eggs lay`](#eggs-lay)
|
|
160
174
|
* [`eggs mom`](#eggs-mom)
|
|
175
|
+
* [`eggs prerequisites`](#eggs-prerequisites)
|
|
161
176
|
* [`eggs produce`](#eggs-produce)
|
|
162
177
|
* [`eggs remove`](#eggs-remove)
|
|
178
|
+
* [`eggs restore`](#eggs-restore)
|
|
179
|
+
* [`eggs skel`](#eggs-skel)
|
|
180
|
+
* [`eggs spawn`](#eggs-spawn)
|
|
181
|
+
* [`eggs stat`](#eggs-stat)
|
|
163
182
|
* [`eggs syncfrom`](#eggs-syncfrom)
|
|
164
183
|
* [`eggs syncto`](#eggs-syncto)
|
|
165
184
|
* [`eggs tools clean`](#eggs-tools-clean)
|
|
@@ -169,6 +188,11 @@ USAGE
|
|
|
169
188
|
* [`eggs tools yolk`](#eggs-tools-yolk)
|
|
170
189
|
* [`eggs update`](#eggs-update)
|
|
171
190
|
* [`eggs version`](#eggs-version)
|
|
191
|
+
* [`eggs wardrobe get [REPO]`](#eggs-wardrobe-get-repo)
|
|
192
|
+
* [`eggs wardrobe ironing [COSTUME]`](#eggs-wardrobe-ironing-costume)
|
|
193
|
+
* [`eggs wardrobe list [WARDROBE]`](#eggs-wardrobe-list-wardrobe)
|
|
194
|
+
* [`eggs wardrobe show [COSTUME]`](#eggs-wardrobe-show-costume)
|
|
195
|
+
* [`eggs wardrobe wear [COSTUME]`](#eggs-wardrobe-wear-costume)
|
|
172
196
|
|
|
173
197
|
## `eggs adapt`
|
|
174
198
|
|
|
@@ -189,7 +213,26 @@ ALIASES
|
|
|
189
213
|
$ eggs adjust
|
|
190
214
|
```
|
|
191
215
|
|
|
192
|
-
_See code: [src/commands/adapt.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.
|
|
216
|
+
_See code: [src/commands/adapt.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.1.10/src/commands/adapt.ts)_
|
|
217
|
+
|
|
218
|
+
## `eggs adjust`
|
|
219
|
+
|
|
220
|
+
adapt monitor resolution for VM only
|
|
221
|
+
|
|
222
|
+
```
|
|
223
|
+
USAGE
|
|
224
|
+
$ eggs adjust [-v] [-h]
|
|
225
|
+
|
|
226
|
+
FLAGS
|
|
227
|
+
-h, --help Show CLI help.
|
|
228
|
+
-v, --verbose
|
|
229
|
+
|
|
230
|
+
DESCRIPTION
|
|
231
|
+
adapt monitor resolution for VM only
|
|
232
|
+
|
|
233
|
+
ALIASES
|
|
234
|
+
$ eggs adjust
|
|
235
|
+
```
|
|
193
236
|
|
|
194
237
|
## `eggs analyze`
|
|
195
238
|
|
|
@@ -210,7 +253,7 @@ EXAMPLES
|
|
|
210
253
|
$ sudo eggs analyze
|
|
211
254
|
```
|
|
212
255
|
|
|
213
|
-
_See code: [src/commands/analyze.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.
|
|
256
|
+
_See code: [src/commands/analyze.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.1.10/src/commands/analyze.ts)_
|
|
214
257
|
|
|
215
258
|
## `eggs autocomplete [SHELL]`
|
|
216
259
|
|
|
@@ -241,6 +284,30 @@ EXAMPLES
|
|
|
241
284
|
|
|
242
285
|
_See code: [@oclif/plugin-autocomplete](https://github.com/oclif/plugin-autocomplete/blob/v1.2.0/src/commands/autocomplete/index.ts)_
|
|
243
286
|
|
|
287
|
+
## `eggs backup`
|
|
288
|
+
|
|
289
|
+
Backup users, server and datas to luks-eggs-backup
|
|
290
|
+
|
|
291
|
+
```
|
|
292
|
+
USAGE
|
|
293
|
+
$ eggs backup [--delete <value>] [-f <value>] [-h] [-v]
|
|
294
|
+
|
|
295
|
+
FLAGS
|
|
296
|
+
-f, --file=<value> file LUKS volume encrypted
|
|
297
|
+
-h, --help Show CLI help.
|
|
298
|
+
-v, --verbose verbose
|
|
299
|
+
--delete=<value> rsync --delete delete extraneous files from dest dirs
|
|
300
|
+
|
|
301
|
+
DESCRIPTION
|
|
302
|
+
Backup users, server and datas to luks-eggs-backup
|
|
303
|
+
|
|
304
|
+
ALIASES
|
|
305
|
+
$ eggs backup
|
|
306
|
+
|
|
307
|
+
EXAMPLES
|
|
308
|
+
$ sudo eggs syncto
|
|
309
|
+
```
|
|
310
|
+
|
|
244
311
|
## `eggs bro`
|
|
245
312
|
|
|
246
313
|
bro: waydroid helper
|
|
@@ -256,7 +323,7 @@ DESCRIPTION
|
|
|
256
323
|
bro: waydroid helper
|
|
257
324
|
```
|
|
258
325
|
|
|
259
|
-
_See code: [src/commands/bro.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.
|
|
326
|
+
_See code: [src/commands/bro.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.1.10/src/commands/bro.ts)_
|
|
260
327
|
|
|
261
328
|
## `eggs calamares`
|
|
262
329
|
|
|
@@ -285,7 +352,26 @@ EXAMPLES
|
|
|
285
352
|
install calamares and create it's configuration's files
|
|
286
353
|
```
|
|
287
354
|
|
|
288
|
-
_See code: [src/commands/calamares.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.
|
|
355
|
+
_See code: [src/commands/calamares.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.1.10/src/commands/calamares.ts)_
|
|
356
|
+
|
|
357
|
+
## `eggs clean`
|
|
358
|
+
|
|
359
|
+
clean system log, apt, etc
|
|
360
|
+
|
|
361
|
+
```
|
|
362
|
+
USAGE
|
|
363
|
+
$ eggs clean [-h] [-v]
|
|
364
|
+
|
|
365
|
+
FLAGS
|
|
366
|
+
-h, --help Show CLI help.
|
|
367
|
+
-v, --verbose verbose
|
|
368
|
+
|
|
369
|
+
DESCRIPTION
|
|
370
|
+
clean system log, apt, etc
|
|
371
|
+
|
|
372
|
+
ALIASES
|
|
373
|
+
$ eggs clean
|
|
374
|
+
```
|
|
289
375
|
|
|
290
376
|
## `eggs config`
|
|
291
377
|
|
|
@@ -312,7 +398,7 @@ EXAMPLES
|
|
|
312
398
|
Configure and install prerequisites deb packages to run it
|
|
313
399
|
```
|
|
314
400
|
|
|
315
|
-
_See code: [src/commands/config.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.
|
|
401
|
+
_See code: [src/commands/config.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.1.10/src/commands/config.ts)_
|
|
316
402
|
|
|
317
403
|
## `eggs dad`
|
|
318
404
|
|
|
@@ -332,7 +418,7 @@ DESCRIPTION
|
|
|
332
418
|
ask help from daddy - configuration helper
|
|
333
419
|
```
|
|
334
420
|
|
|
335
|
-
_See code: [src/commands/dad.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.
|
|
421
|
+
_See code: [src/commands/dad.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.1.10/src/commands/dad.ts)_
|
|
336
422
|
|
|
337
423
|
## `eggs export deb`
|
|
338
424
|
|
|
@@ -387,6 +473,33 @@ DESCRIPTION
|
|
|
387
473
|
export iso in the destination host
|
|
388
474
|
```
|
|
389
475
|
|
|
476
|
+
## `eggs hatch`
|
|
477
|
+
|
|
478
|
+
command-line system installer - the egg became a penguin!
|
|
479
|
+
|
|
480
|
+
```
|
|
481
|
+
USAGE
|
|
482
|
+
$ eggs hatch [-c] [-k] [-p] [-h] [-v]
|
|
483
|
+
|
|
484
|
+
FLAGS
|
|
485
|
+
-c, --cli force use CLI installer
|
|
486
|
+
-h, --help Show CLI help.
|
|
487
|
+
-k, --crypted crypted CLI installation
|
|
488
|
+
-p, --pve Proxmox VE install
|
|
489
|
+
-v, --verbose verbose
|
|
490
|
+
|
|
491
|
+
DESCRIPTION
|
|
492
|
+
command-line system installer - the egg became a penguin!
|
|
493
|
+
|
|
494
|
+
ALIASES
|
|
495
|
+
$ eggs hatch
|
|
496
|
+
$ eggs krill
|
|
497
|
+
|
|
498
|
+
EXAMPLES
|
|
499
|
+
$ eggs install
|
|
500
|
+
Install the system using GUI or CLI installer
|
|
501
|
+
```
|
|
502
|
+
|
|
390
503
|
## `eggs help [COMMAND]`
|
|
391
504
|
|
|
392
505
|
Display help for eggs.
|
|
@@ -405,11 +518,11 @@ DESCRIPTION
|
|
|
405
518
|
Display help for eggs.
|
|
406
519
|
```
|
|
407
520
|
|
|
408
|
-
_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v5.1.
|
|
521
|
+
_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v5.1.12/src/commands/help.ts)_
|
|
409
522
|
|
|
410
523
|
## `eggs info`
|
|
411
524
|
|
|
412
|
-
|
|
525
|
+
informations about eggs configuration
|
|
413
526
|
|
|
414
527
|
```
|
|
415
528
|
USAGE
|
|
@@ -420,10 +533,10 @@ FLAGS
|
|
|
420
533
|
-v, --verbose
|
|
421
534
|
|
|
422
535
|
DESCRIPTION
|
|
423
|
-
|
|
536
|
+
informations about eggs configuration
|
|
424
537
|
```
|
|
425
538
|
|
|
426
|
-
_See code: [src/commands/info.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.
|
|
539
|
+
_See code: [src/commands/info.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.1.10/src/commands/info.ts)_
|
|
427
540
|
|
|
428
541
|
## `eggs install`
|
|
429
542
|
|
|
@@ -452,7 +565,7 @@ EXAMPLES
|
|
|
452
565
|
Install the system using GUI or CLI installer
|
|
453
566
|
```
|
|
454
567
|
|
|
455
|
-
_See code: [src/commands/install.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.
|
|
568
|
+
_See code: [src/commands/install.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.1.10/src/commands/install.ts)_
|
|
456
569
|
|
|
457
570
|
## `eggs kill`
|
|
458
571
|
|
|
@@ -474,7 +587,97 @@ EXAMPLES
|
|
|
474
587
|
kill the eggs/free the nest
|
|
475
588
|
```
|
|
476
589
|
|
|
477
|
-
_See code: [src/commands/kill.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.
|
|
590
|
+
_See code: [src/commands/kill.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.1.10/src/commands/kill.ts)_
|
|
591
|
+
|
|
592
|
+
## `eggs krill`
|
|
593
|
+
|
|
594
|
+
command-line system installer - the egg became a penguin!
|
|
595
|
+
|
|
596
|
+
```
|
|
597
|
+
USAGE
|
|
598
|
+
$ eggs krill [-c] [-k] [-p] [-h] [-v]
|
|
599
|
+
|
|
600
|
+
FLAGS
|
|
601
|
+
-c, --cli force use CLI installer
|
|
602
|
+
-h, --help Show CLI help.
|
|
603
|
+
-k, --crypted crypted CLI installation
|
|
604
|
+
-p, --pve Proxmox VE install
|
|
605
|
+
-v, --verbose verbose
|
|
606
|
+
|
|
607
|
+
DESCRIPTION
|
|
608
|
+
command-line system installer - the egg became a penguin!
|
|
609
|
+
|
|
610
|
+
ALIASES
|
|
611
|
+
$ eggs hatch
|
|
612
|
+
$ eggs krill
|
|
613
|
+
|
|
614
|
+
EXAMPLES
|
|
615
|
+
$ eggs install
|
|
616
|
+
Install the system using GUI or CLI installer
|
|
617
|
+
```
|
|
618
|
+
|
|
619
|
+
## `eggs lay`
|
|
620
|
+
|
|
621
|
+
produce a live image from your system whithout your data
|
|
622
|
+
|
|
623
|
+
```
|
|
624
|
+
USAGE
|
|
625
|
+
$ eggs lay [-p <value>] [--basename <value>] [-b] [-f] [-n] [-m] [-v] [-y] [-s] [-h] [--theme <value>]
|
|
626
|
+
[--addons <value>] [--release]
|
|
627
|
+
|
|
628
|
+
FLAGS
|
|
629
|
+
-b, --backup backup mode
|
|
630
|
+
-f, --fast fast compression
|
|
631
|
+
-h, --help Show CLI help.
|
|
632
|
+
-m, --max max compression
|
|
633
|
+
-n, --normal normal compression
|
|
634
|
+
-p, --prefix=<value> prefix
|
|
635
|
+
-s, --script script mode. Generate scripts to manage iso build
|
|
636
|
+
-v, --verbose verbose
|
|
637
|
+
-y, --yolk -y force yolk renew
|
|
638
|
+
--addons=<value>... addons to be used: adapt, ichoice, pve, rsupport
|
|
639
|
+
--basename=<value> basename
|
|
640
|
+
--release release: configure GUI installer to remove eggs and calamares after installation
|
|
641
|
+
--theme=<value> theme for livecd, calamares branding and partitions
|
|
642
|
+
|
|
643
|
+
DESCRIPTION
|
|
644
|
+
produce a live image from your system whithout your data
|
|
645
|
+
|
|
646
|
+
ALIASES
|
|
647
|
+
$ eggs spawn
|
|
648
|
+
$ eggs lay
|
|
649
|
+
|
|
650
|
+
EXAMPLES
|
|
651
|
+
$ sudo eggs produce
|
|
652
|
+
produce an ISO called [hostname]-[arch]-YYYY-MM-DD_HHMM.iso, compressed xz (standard compression).
|
|
653
|
+
If hostname=ugo and arch=i386 ugo-x86-2020-08-25_1215.iso
|
|
654
|
+
|
|
655
|
+
$ sudo eggs produce -v
|
|
656
|
+
same as previuos, but with --verbose output
|
|
657
|
+
|
|
658
|
+
$ sudo eggs produce -vf
|
|
659
|
+
same as previuos, compression zstd, lz4 or gzip (depend from system capability)
|
|
660
|
+
|
|
661
|
+
$ sudo eggs produce -vm
|
|
662
|
+
same as previuos, compression xz -Xbcj x86 (max compression, about 10%
|
|
663
|
+
more compressed)
|
|
664
|
+
|
|
665
|
+
$ sudo eggs produce -vf --basename leo --theme debian --addons adapt
|
|
666
|
+
produce an ISO called leo-i386-2020-08-25_1215.iso compression fast,
|
|
667
|
+
using Debian theme and link to adapt
|
|
668
|
+
|
|
669
|
+
$ sudo eggs produce -v --basename leo --theme debian --addons rsupport
|
|
670
|
+
produce an ISO called leo-i386-2020-08-25_1215.iso compression xz,
|
|
671
|
+
using Debian theme and link to dwagent
|
|
672
|
+
|
|
673
|
+
$ sudo eggs produce -v --basename leo --rsupport
|
|
674
|
+
produce an ISO called leo-i386-2020-08-25_1215.iso compression xz, using eggs
|
|
675
|
+
theme and link to dwagent
|
|
676
|
+
|
|
677
|
+
$ sudo eggs produce -vs --basename leo --rsupport
|
|
678
|
+
produce scripts to build an ISO as the previus example. Scripts can be found
|
|
679
|
+
in /home/eggs/ovarium and you can customize all you need
|
|
680
|
+
```
|
|
478
681
|
|
|
479
682
|
## `eggs mom`
|
|
480
683
|
|
|
@@ -491,7 +694,32 @@ DESCRIPTION
|
|
|
491
694
|
ask for mommy - gui helper
|
|
492
695
|
```
|
|
493
696
|
|
|
494
|
-
_See code: [src/commands/mom.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.
|
|
697
|
+
_See code: [src/commands/mom.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.1.10/src/commands/mom.ts)_
|
|
698
|
+
|
|
699
|
+
## `eggs prerequisites`
|
|
700
|
+
|
|
701
|
+
Configure and install prerequisites deb packages to run it
|
|
702
|
+
|
|
703
|
+
```
|
|
704
|
+
USAGE
|
|
705
|
+
$ eggs prerequisites [-n] [-c] [-h] [-v]
|
|
706
|
+
|
|
707
|
+
FLAGS
|
|
708
|
+
-c, --clean remove old configuration before to create new one
|
|
709
|
+
-h, --help Show CLI help.
|
|
710
|
+
-n, --nointeractive assume yes
|
|
711
|
+
-v, --verbose verbose
|
|
712
|
+
|
|
713
|
+
DESCRIPTION
|
|
714
|
+
Configure and install prerequisites deb packages to run it
|
|
715
|
+
|
|
716
|
+
ALIASES
|
|
717
|
+
$ eggs prerequisites
|
|
718
|
+
|
|
719
|
+
EXAMPLES
|
|
720
|
+
~$ sudo eggs config
|
|
721
|
+
Configure and install prerequisites deb packages to run it
|
|
722
|
+
```
|
|
495
723
|
|
|
496
724
|
## `eggs produce`
|
|
497
725
|
|
|
@@ -556,7 +784,7 @@ EXAMPLES
|
|
|
556
784
|
in /home/eggs/ovarium and you can customize all you need
|
|
557
785
|
```
|
|
558
786
|
|
|
559
|
-
_See code: [src/commands/produce.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.
|
|
787
|
+
_See code: [src/commands/produce.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.1.10/src/commands/produce.ts)_
|
|
560
788
|
|
|
561
789
|
## `eggs remove`
|
|
562
790
|
|
|
@@ -586,7 +814,139 @@ EXAMPLES
|
|
|
586
814
|
remove eggs, eggs configurations, packages dependencies
|
|
587
815
|
```
|
|
588
816
|
|
|
589
|
-
_See code: [src/commands/remove.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.
|
|
817
|
+
_See code: [src/commands/remove.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.1.10/src/commands/remove.ts)_
|
|
818
|
+
|
|
819
|
+
## `eggs restore`
|
|
820
|
+
|
|
821
|
+
Restore users, server and datas from luks-eggs-backup
|
|
822
|
+
|
|
823
|
+
```
|
|
824
|
+
USAGE
|
|
825
|
+
$ eggs restore [--delete <value>] [-f <value>] [-r <value>] [-h] [-v]
|
|
826
|
+
|
|
827
|
+
FLAGS
|
|
828
|
+
-f, --file=<value> file LUKS volume encrypted
|
|
829
|
+
-h, --help Show CLI help.
|
|
830
|
+
-r, --rootdir=<value> rootdir of the installed system, when used from live
|
|
831
|
+
-v, --verbose verbose
|
|
832
|
+
--delete=<value> rsync --delete delete extraneous files from dest dirs
|
|
833
|
+
|
|
834
|
+
DESCRIPTION
|
|
835
|
+
Restore users, server and datas from luks-eggs-backup
|
|
836
|
+
|
|
837
|
+
ALIASES
|
|
838
|
+
$ eggs restore
|
|
839
|
+
|
|
840
|
+
EXAMPLES
|
|
841
|
+
$ sudo eggs restore
|
|
842
|
+
```
|
|
843
|
+
|
|
844
|
+
## `eggs skel`
|
|
845
|
+
|
|
846
|
+
update skel from home configuration
|
|
847
|
+
|
|
848
|
+
```
|
|
849
|
+
USAGE
|
|
850
|
+
$ eggs skel [-h] [-u <value>] [-v]
|
|
851
|
+
|
|
852
|
+
FLAGS
|
|
853
|
+
-h, --help Show CLI help.
|
|
854
|
+
-u, --user=<value> user to be used
|
|
855
|
+
-v, --verbose
|
|
856
|
+
|
|
857
|
+
DESCRIPTION
|
|
858
|
+
update skel from home configuration
|
|
859
|
+
|
|
860
|
+
ALIASES
|
|
861
|
+
$ eggs skel
|
|
862
|
+
|
|
863
|
+
EXAMPLES
|
|
864
|
+
$ eggs skel --user mauro
|
|
865
|
+
desktop configuration of user mauro will get used as default
|
|
866
|
+
```
|
|
867
|
+
|
|
868
|
+
## `eggs spawn`
|
|
869
|
+
|
|
870
|
+
produce a live image from your system whithout your data
|
|
871
|
+
|
|
872
|
+
```
|
|
873
|
+
USAGE
|
|
874
|
+
$ eggs spawn [-p <value>] [--basename <value>] [-b] [-f] [-n] [-m] [-v] [-y] [-s] [-h] [--theme <value>]
|
|
875
|
+
[--addons <value>] [--release]
|
|
876
|
+
|
|
877
|
+
FLAGS
|
|
878
|
+
-b, --backup backup mode
|
|
879
|
+
-f, --fast fast compression
|
|
880
|
+
-h, --help Show CLI help.
|
|
881
|
+
-m, --max max compression
|
|
882
|
+
-n, --normal normal compression
|
|
883
|
+
-p, --prefix=<value> prefix
|
|
884
|
+
-s, --script script mode. Generate scripts to manage iso build
|
|
885
|
+
-v, --verbose verbose
|
|
886
|
+
-y, --yolk -y force yolk renew
|
|
887
|
+
--addons=<value>... addons to be used: adapt, ichoice, pve, rsupport
|
|
888
|
+
--basename=<value> basename
|
|
889
|
+
--release release: configure GUI installer to remove eggs and calamares after installation
|
|
890
|
+
--theme=<value> theme for livecd, calamares branding and partitions
|
|
891
|
+
|
|
892
|
+
DESCRIPTION
|
|
893
|
+
produce a live image from your system whithout your data
|
|
894
|
+
|
|
895
|
+
ALIASES
|
|
896
|
+
$ eggs spawn
|
|
897
|
+
$ eggs lay
|
|
898
|
+
|
|
899
|
+
EXAMPLES
|
|
900
|
+
$ sudo eggs produce
|
|
901
|
+
produce an ISO called [hostname]-[arch]-YYYY-MM-DD_HHMM.iso, compressed xz (standard compression).
|
|
902
|
+
If hostname=ugo and arch=i386 ugo-x86-2020-08-25_1215.iso
|
|
903
|
+
|
|
904
|
+
$ sudo eggs produce -v
|
|
905
|
+
same as previuos, but with --verbose output
|
|
906
|
+
|
|
907
|
+
$ sudo eggs produce -vf
|
|
908
|
+
same as previuos, compression zstd, lz4 or gzip (depend from system capability)
|
|
909
|
+
|
|
910
|
+
$ sudo eggs produce -vm
|
|
911
|
+
same as previuos, compression xz -Xbcj x86 (max compression, about 10%
|
|
912
|
+
more compressed)
|
|
913
|
+
|
|
914
|
+
$ sudo eggs produce -vf --basename leo --theme debian --addons adapt
|
|
915
|
+
produce an ISO called leo-i386-2020-08-25_1215.iso compression fast,
|
|
916
|
+
using Debian theme and link to adapt
|
|
917
|
+
|
|
918
|
+
$ sudo eggs produce -v --basename leo --theme debian --addons rsupport
|
|
919
|
+
produce an ISO called leo-i386-2020-08-25_1215.iso compression xz,
|
|
920
|
+
using Debian theme and link to dwagent
|
|
921
|
+
|
|
922
|
+
$ sudo eggs produce -v --basename leo --rsupport
|
|
923
|
+
produce an ISO called leo-i386-2020-08-25_1215.iso compression xz, using eggs
|
|
924
|
+
theme and link to dwagent
|
|
925
|
+
|
|
926
|
+
$ sudo eggs produce -vs --basename leo --rsupport
|
|
927
|
+
produce scripts to build an ISO as the previus example. Scripts can be found
|
|
928
|
+
in /home/eggs/ovarium and you can customize all you need
|
|
929
|
+
```
|
|
930
|
+
|
|
931
|
+
## `eggs stat`
|
|
932
|
+
|
|
933
|
+
get statistics from sourceforge
|
|
934
|
+
|
|
935
|
+
```
|
|
936
|
+
USAGE
|
|
937
|
+
$ eggs stat [-h] [-m] [-y]
|
|
938
|
+
|
|
939
|
+
FLAGS
|
|
940
|
+
-h, --help Show CLI help.
|
|
941
|
+
-m, --month current month
|
|
942
|
+
-y, --year current year
|
|
943
|
+
|
|
944
|
+
DESCRIPTION
|
|
945
|
+
get statistics from sourceforge
|
|
946
|
+
|
|
947
|
+
ALIASES
|
|
948
|
+
$ eggs stat
|
|
949
|
+
```
|
|
590
950
|
|
|
591
951
|
## `eggs syncfrom`
|
|
592
952
|
|
|
@@ -594,13 +954,14 @@ Restore users, server and datas from luks-eggs-backup
|
|
|
594
954
|
|
|
595
955
|
```
|
|
596
956
|
USAGE
|
|
597
|
-
$ eggs syncfrom [-f <value>] [-r <value>] [-h] [-v]
|
|
957
|
+
$ eggs syncfrom [--delete <value>] [-f <value>] [-r <value>] [-h] [-v]
|
|
598
958
|
|
|
599
959
|
FLAGS
|
|
600
|
-
-f, --file=<value> file
|
|
960
|
+
-f, --file=<value> file LUKS volume encrypted
|
|
601
961
|
-h, --help Show CLI help.
|
|
602
962
|
-r, --rootdir=<value> rootdir of the installed system, when used from live
|
|
603
963
|
-v, --verbose verbose
|
|
964
|
+
--delete=<value> rsync --delete delete extraneous files from dest dirs
|
|
604
965
|
|
|
605
966
|
DESCRIPTION
|
|
606
967
|
Restore users, server and datas from luks-eggs-backup
|
|
@@ -612,7 +973,7 @@ EXAMPLES
|
|
|
612
973
|
$ sudo eggs restore
|
|
613
974
|
```
|
|
614
975
|
|
|
615
|
-
_See code: [src/commands/syncfrom.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.
|
|
976
|
+
_See code: [src/commands/syncfrom.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.1.10/src/commands/syncfrom.ts)_
|
|
616
977
|
|
|
617
978
|
## `eggs syncto`
|
|
618
979
|
|
|
@@ -620,13 +981,13 @@ Backup users, server and datas to luks-eggs-backup
|
|
|
620
981
|
|
|
621
982
|
```
|
|
622
983
|
USAGE
|
|
623
|
-
$ eggs syncto [
|
|
984
|
+
$ eggs syncto [--delete <value>] [-f <value>] [-h] [-v]
|
|
624
985
|
|
|
625
986
|
FLAGS
|
|
626
987
|
-f, --file=<value> file LUKS volume encrypted
|
|
627
988
|
-h, --help Show CLI help.
|
|
628
|
-
-k, --krill krill
|
|
629
989
|
-v, --verbose verbose
|
|
990
|
+
--delete=<value> rsync --delete delete extraneous files from dest dirs
|
|
630
991
|
|
|
631
992
|
DESCRIPTION
|
|
632
993
|
Backup users, server and datas to luks-eggs-backup
|
|
@@ -635,10 +996,10 @@ ALIASES
|
|
|
635
996
|
$ eggs backup
|
|
636
997
|
|
|
637
998
|
EXAMPLES
|
|
638
|
-
$ sudo eggs
|
|
999
|
+
$ sudo eggs syncto
|
|
639
1000
|
```
|
|
640
1001
|
|
|
641
|
-
_See code: [src/commands/syncto.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.
|
|
1002
|
+
_See code: [src/commands/syncto.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.1.10/src/commands/syncto.ts)_
|
|
642
1003
|
|
|
643
1004
|
## `eggs tools clean`
|
|
644
1005
|
|
|
@@ -745,11 +1106,9 @@ update the penguin's eggs tool
|
|
|
745
1106
|
|
|
746
1107
|
```
|
|
747
1108
|
USAGE
|
|
748
|
-
$ eggs update [-h] [-
|
|
1109
|
+
$ eggs update [-h] [-v]
|
|
749
1110
|
|
|
750
1111
|
FLAGS
|
|
751
|
-
-a, --apt if eggs package is .deb, update from distro repositories
|
|
752
|
-
-b, --basket if eggs package is .deb, update from eggs basket
|
|
753
1112
|
-h, --help Show CLI help.
|
|
754
1113
|
-v, --verbose verbose
|
|
755
1114
|
|
|
@@ -761,7 +1120,7 @@ EXAMPLES
|
|
|
761
1120
|
update/upgrade the penguin's eggs tool
|
|
762
1121
|
```
|
|
763
1122
|
|
|
764
|
-
_See code: [src/commands/update.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.
|
|
1123
|
+
_See code: [src/commands/update.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.1.10/src/commands/update.ts)_
|
|
765
1124
|
|
|
766
1125
|
## `eggs version`
|
|
767
1126
|
|
|
@@ -771,6 +1130,107 @@ USAGE
|
|
|
771
1130
|
```
|
|
772
1131
|
|
|
773
1132
|
_See code: [@oclif/plugin-version](https://github.com/oclif/plugin-version/blob/v1.0.4/src/commands/version.ts)_
|
|
1133
|
+
|
|
1134
|
+
## `eggs wardrobe get [REPO]`
|
|
1135
|
+
|
|
1136
|
+
get warorobe
|
|
1137
|
+
|
|
1138
|
+
```
|
|
1139
|
+
USAGE
|
|
1140
|
+
$ eggs wardrobe get [REPO] [-v] [-h]
|
|
1141
|
+
|
|
1142
|
+
ARGUMENTS
|
|
1143
|
+
REPO repository to get
|
|
1144
|
+
|
|
1145
|
+
FLAGS
|
|
1146
|
+
-h, --help Show CLI help.
|
|
1147
|
+
-v, --verbose
|
|
1148
|
+
|
|
1149
|
+
DESCRIPTION
|
|
1150
|
+
get warorobe
|
|
1151
|
+
```
|
|
1152
|
+
|
|
1153
|
+
## `eggs wardrobe ironing [COSTUME]`
|
|
1154
|
+
|
|
1155
|
+
ordered show of costumes or accessories in wardrobe
|
|
1156
|
+
|
|
1157
|
+
```
|
|
1158
|
+
USAGE
|
|
1159
|
+
$ eggs wardrobe ironing [COSTUME] [-w <value>] [-v] [-h]
|
|
1160
|
+
|
|
1161
|
+
ARGUMENTS
|
|
1162
|
+
COSTUME costume
|
|
1163
|
+
|
|
1164
|
+
FLAGS
|
|
1165
|
+
-h, --help Show CLI help.
|
|
1166
|
+
-v, --verbose
|
|
1167
|
+
-w, --wardrobe=<value> wardrobe
|
|
1168
|
+
|
|
1169
|
+
DESCRIPTION
|
|
1170
|
+
ordered show of costumes or accessories in wardrobe
|
|
1171
|
+
```
|
|
1172
|
+
|
|
1173
|
+
## `eggs wardrobe list [WARDROBE]`
|
|
1174
|
+
|
|
1175
|
+
list costumes and accessoires in wardrobe
|
|
1176
|
+
|
|
1177
|
+
```
|
|
1178
|
+
USAGE
|
|
1179
|
+
$ eggs wardrobe list [WARDROBE] [-v] [-h]
|
|
1180
|
+
|
|
1181
|
+
ARGUMENTS
|
|
1182
|
+
WARDROBE wardrobe
|
|
1183
|
+
|
|
1184
|
+
FLAGS
|
|
1185
|
+
-h, --help Show CLI help.
|
|
1186
|
+
-v, --verbose
|
|
1187
|
+
|
|
1188
|
+
DESCRIPTION
|
|
1189
|
+
list costumes and accessoires in wardrobe
|
|
1190
|
+
```
|
|
1191
|
+
|
|
1192
|
+
## `eggs wardrobe show [COSTUME]`
|
|
1193
|
+
|
|
1194
|
+
show costumes/accessories in wardrobe
|
|
1195
|
+
|
|
1196
|
+
```
|
|
1197
|
+
USAGE
|
|
1198
|
+
$ eggs wardrobe show [COSTUME] [-w <value>] [-j] [-v] [-h]
|
|
1199
|
+
|
|
1200
|
+
ARGUMENTS
|
|
1201
|
+
COSTUME costume
|
|
1202
|
+
|
|
1203
|
+
FLAGS
|
|
1204
|
+
-h, --help Show CLI help.
|
|
1205
|
+
-j, --json output JSON
|
|
1206
|
+
-v, --verbose
|
|
1207
|
+
-w, --wardrobe=<value> wardrobe
|
|
1208
|
+
|
|
1209
|
+
DESCRIPTION
|
|
1210
|
+
show costumes/accessories in wardrobe
|
|
1211
|
+
```
|
|
1212
|
+
|
|
1213
|
+
## `eggs wardrobe wear [COSTUME]`
|
|
1214
|
+
|
|
1215
|
+
wear costume/accessories from wardrobe
|
|
1216
|
+
|
|
1217
|
+
```
|
|
1218
|
+
USAGE
|
|
1219
|
+
$ eggs wardrobe wear [COSTUME] [-w <value>] [-n] [-s] [-v] [-h]
|
|
1220
|
+
|
|
1221
|
+
ARGUMENTS
|
|
1222
|
+
COSTUME costume
|
|
1223
|
+
|
|
1224
|
+
FLAGS
|
|
1225
|
+
-h, --help Show CLI help.
|
|
1226
|
+
-n, --no_accessories not install accessories
|
|
1227
|
+
-s, --silent
|
|
1228
|
+
-v, --verbose
|
|
1229
|
+
-w, --wardrobe=<value> wardrobe
|
|
1230
|
+
|
|
1231
|
+
DESCRIPTION
|
|
1232
|
+
wear costume/accessories from wardrobe
|
|
1233
|
+
```
|
|
774
1234
|
<!-- commandsstop -->
|
|
775
1235
|
|
|
776
1236
|
# Terminal samples
|