penguins-eggs 25.10.6 → 25.10.19

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (84) hide show
  1. package/.oclif.manifest.json +51 -145
  2. package/README.md +3 -829
  3. package/addons/eggs/theme/livecd/isolinux.main.simple.cfg +3 -3
  4. package/conf/distros/trixie/calamares/modules/shellprocess@boot_deploy.yml +3 -4
  5. package/conf/love.yaml +1 -1
  6. package/dist/classes/distro.js +9 -2
  7. package/dist/classes/diversions.d.ts +1 -1
  8. package/dist/classes/diversions.js +27 -8
  9. package/dist/classes/incubation/incubator.d/archlinux.js +1 -0
  10. package/dist/classes/incubation/incubator.d/trixie.js +7 -10
  11. package/dist/classes/ovary.d/edit-live-fs.d.ts +1 -1
  12. package/dist/classes/ovary.d/edit-live-fs.js +1 -7
  13. package/dist/classes/ovary.d/fertilization.js +1 -0
  14. package/dist/classes/ovary.d/finished.js +1 -5
  15. package/dist/classes/ovary.d/initrd.d.ts +1 -1
  16. package/dist/classes/ovary.d/initrd.js +17 -19
  17. package/dist/classes/ovary.d/live-create-structure.js +1 -4
  18. package/dist/classes/ovary.d/luks-get-password.d.ts +12 -0
  19. package/dist/classes/ovary.d/luks-get-password.js +57 -0
  20. package/dist/classes/ovary.d/luks-home-support.d.ts +12 -0
  21. package/dist/classes/ovary.d/luks-home-support.js +75 -0
  22. package/dist/classes/ovary.d/luks-home.d.ts +15 -0
  23. package/dist/classes/ovary.d/luks-home.js +140 -0
  24. package/dist/classes/ovary.d/luks-root-bootstrap-builder.d.ts +11 -0
  25. package/dist/classes/ovary.d/luks-root-bootstrap-builder.js +45 -0
  26. package/dist/classes/ovary.d/luks-root.d.ts +15 -0
  27. package/dist/classes/ovary.d/luks-root.js +126 -0
  28. package/dist/classes/ovary.d/make-efi.js +1 -1
  29. package/dist/classes/ovary.d/make-squashfs.d.ts +1 -1
  30. package/dist/classes/ovary.d/make-squashfs.js +7 -3
  31. package/dist/classes/ovary.d/produce.d.ts +3 -3
  32. package/dist/classes/ovary.d/produce.js +76 -48
  33. package/dist/classes/ovary.d/syslinux.js +1 -1
  34. package/dist/classes/ovary.d/xorriso-command.d.ts +2 -2
  35. package/dist/classes/ovary.d/xorriso-command.js +27 -29
  36. package/dist/classes/ovary.d.ts +35 -16
  37. package/dist/classes/ovary.js +42 -16
  38. package/dist/classes/utils.d.ts +1 -0
  39. package/dist/classes/utils.js +3 -0
  40. package/dist/commands/config.d.ts +1 -1
  41. package/dist/commands/config.js +2 -2
  42. package/dist/commands/love.d.ts +3 -0
  43. package/dist/commands/love.js +40 -2
  44. package/dist/commands/produce.d.ts +3 -2
  45. package/dist/commands/produce.js +14 -17
  46. package/dist/commands/tools/{ppa.d.ts → repo.d.ts} +2 -2
  47. package/dist/commands/tools/{ppa.js → repo.js} +69 -67
  48. package/dracut/create-symlink +71 -0
  49. package/dracut/dracut-log.txt +3 -0
  50. package/dracut/dracut.conf.d/50-live.conf +24 -6
  51. package/dracut/dracut.conf.d/README.md +10 -0
  52. package/dracut/export +4 -0
  53. package/dracut/export-dracut-analysis +51 -0
  54. package/dracut/export-dracut-log +2 -0
  55. package/dracut/mkisofs +10 -0
  56. package/dracut/modules.d/00debug-shell/debug-hook.sh +13 -0
  57. package/dracut/modules.d/00debug-shell/module-setup.sh +20 -0
  58. package/dracut/modules.d/90block/README.md +7 -0
  59. package/dracut/modules.d/90block/block-cmdline.sh +3 -0
  60. package/dracut/modules.d/90block/module-setup.sh +15 -0
  61. package/dracut/modules.d/95iso-scan/README.md +3 -0
  62. package/dracut/modules.d/95iso-scan/iso-scan-fallback.sh +12 -0
  63. package/dracut/modules.d/95iso-scan/iso-scan.sh +92 -0
  64. package/dracut/modules.d/95iso-scan/module-setup.sh +18 -0
  65. package/dracut/modules.d/95luks-loop/README.md +9 -0
  66. package/dracut/modules.d/95luks-loop/luks-loop.sh +90 -0
  67. package/dracut/modules.d/95luks-loop/module-setup.sh +17 -0
  68. package/dracut/renew-initramfs +17 -0
  69. package/dracut/sbin2bin +10 -0
  70. package/dracut/update-dracut-conf-d +2 -0
  71. package/dracut/update-dracut-modules +62 -0
  72. package/manpages/doc/man/eggs.1.gz +0 -0
  73. package/manpages/doc/man/eggs.html +7 -661
  74. package/package.json +9 -8
  75. package/perrisbrewery/template/dependencies.yaml +6 -5
  76. package/scripts/_eggs +16 -31
  77. package/scripts/eggs.bash +4 -6
  78. package/scripts/luks-root-bootstrap-create.sh +235 -0
  79. package/scripts/luks-root-unlock.sh +172 -0
  80. package/scripts/mount-encrypted-home.sh +223 -0
  81. package/dist/commands/syncfrom.d.ts +0 -45
  82. package/dist/commands/syncfrom.js +0 -152
  83. package/dist/commands/syncto.d.ts +0 -40
  84. package/dist/commands/syncto.js +0 -175
package/README.md CHANGED
@@ -486,80 +486,9 @@ sudo eggs produce --max
486
486
  > This command will apply differents compression to the ISO file, resulting in a smaller file size or in a longer process. Consult [Penguins Eggs' official guide](https://penguins-eggs.net/docs/Tutorial/eggs-users-guide) for more detailed informations.
487
487
  # Commands
488
488
  <!-- commands -->
489
- * [`eggs adapt`](#eggs-adapt)
490
- * [`eggs analyze`](#eggs-analyze)
491
489
  * [`eggs autocomplete [SHELL]`](#eggs-autocomplete-shell)
492
- * [`eggs calamares`](#eggs-calamares)
493
- * [`eggs config`](#eggs-config)
494
- * [`eggs cuckoo`](#eggs-cuckoo)
495
- * [`eggs dad`](#eggs-dad)
496
- * [`eggs export iso`](#eggs-export-iso)
497
- * [`eggs export pkg`](#eggs-export-pkg)
498
- * [`eggs export tarballs`](#eggs-export-tarballs)
499
490
  * [`eggs help [COMMAND]`](#eggs-help-command)
500
- * [`eggs install`](#eggs-install)
501
- * [`eggs kill`](#eggs-kill)
502
- * [`eggs krill`](#eggs-krill)
503
- * [`eggs love`](#eggs-love)
504
- * [`eggs mom`](#eggs-mom)
505
- * [`eggs pods [DISTRO]`](#eggs-pods-distro)
506
- * [`eggs produce`](#eggs-produce)
507
- * [`eggs status`](#eggs-status)
508
- * [`eggs syncfrom`](#eggs-syncfrom)
509
- * [`eggs syncto`](#eggs-syncto)
510
- * [`eggs tools clean`](#eggs-tools-clean)
511
- * [`eggs tools ppa`](#eggs-tools-ppa)
512
- * [`eggs tools skel`](#eggs-tools-skel)
513
- * [`eggs tools stat`](#eggs-tools-stat)
514
- * [`eggs tools yolk`](#eggs-tools-yolk)
515
- * [`eggs update`](#eggs-update)
516
491
  * [`eggs version`](#eggs-version)
517
- * [`eggs wardrobe get [REPO]`](#eggs-wardrobe-get-repo)
518
- * [`eggs wardrobe list [REPO]`](#eggs-wardrobe-list-repo)
519
- * [`eggs wardrobe show [REPO]`](#eggs-wardrobe-show-repo)
520
- * [`eggs wardrobe wear [REPO]`](#eggs-wardrobe-wear-repo)
521
-
522
- ## `eggs adapt`
523
-
524
- adapt monitor resolution for VM only
525
-
526
- ```
527
- USAGE
528
- $ eggs adapt [-h] [-v]
529
-
530
- FLAGS
531
- -h, --help Show CLI help.
532
- -v, --verbose
533
-
534
- DESCRIPTION
535
- adapt monitor resolution for VM only
536
-
537
- EXAMPLES
538
- $ eggs adapt
539
- ```
540
-
541
- _See code: [src/commands/adapt.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.10.6/src/commands/adapt.ts)_
542
-
543
- ## `eggs analyze`
544
-
545
- analyze for syncto
546
-
547
- ```
548
- USAGE
549
- $ eggs analyze [-h] [-v]
550
-
551
- FLAGS
552
- -h, --help Show CLI help.
553
- -v, --verbose verbose
554
-
555
- DESCRIPTION
556
- analyze for syncto
557
-
558
- EXAMPLES
559
- sudo eggs analyze
560
- ```
561
-
562
- _See code: [src/commands/analyze.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.10.6/src/commands/analyze.ts)_
563
492
 
564
493
  ## `eggs autocomplete [SHELL]`
565
494
 
@@ -570,7 +499,7 @@ USAGE
570
499
  $ eggs autocomplete [SHELL] [-r]
571
500
 
572
501
  ARGUMENTS
573
- SHELL (zsh|bash|powershell) Shell type
502
+ [SHELL] (zsh|bash|powershell) Shell type
574
503
 
575
504
  FLAGS
576
505
  -r, --refresh-cache Refresh cache (ignores displaying instructions)
@@ -590,193 +519,7 @@ EXAMPLES
590
519
  $ eggs autocomplete --refresh-cache
591
520
  ```
592
521
 
593
- _See code: [@oclif/plugin-autocomplete](https://github.com/oclif/plugin-autocomplete/blob/v3.2.35/src/commands/autocomplete/index.ts)_
594
-
595
- ## `eggs calamares`
596
-
597
- configure calamares or install or configure it
598
-
599
- ```
600
- USAGE
601
- $ eggs calamares [-h] [-i] [-n] [-p] [-r] [--remove] [--theme <value>] [-v]
602
-
603
- FLAGS
604
- -h, --help Show CLI help.
605
- -i, --install install calamares and its dependencies
606
- -n, --nointeractive no user interaction
607
- -p, --policies configure calamares policies
608
- -r, --release release: remove calamares and all its dependencies after the installation
609
- -v, --verbose
610
- --remove remove calamares and its dependencies
611
- --theme=<value> theme/branding for eggs and calamares
612
-
613
- DESCRIPTION
614
- configure calamares or install or configure it
615
-
616
- EXAMPLES
617
- sudo eggs calamares
618
-
619
- sudo eggs calamares --install
620
-
621
- sudo eggs calamares --install --theme=/path/to/theme
622
-
623
- sudo eggs calamares --remove
624
- ```
625
-
626
- _See code: [src/commands/calamares.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.10.6/src/commands/calamares.ts)_
627
-
628
- ## `eggs config`
629
-
630
- Configure eggs to run it
631
-
632
- ```
633
- USAGE
634
- $ eggs config [-c] [-h] [-n] [-v]
635
-
636
- FLAGS
637
- -c, --clean remove old configuration before to create new one
638
- -h, --help Show CLI help.
639
- -n, --nointeractive no user interaction
640
- -v, --verbose verbose
641
-
642
- DESCRIPTION
643
- Configure eggs to run it
644
-
645
- EXAMPLES
646
- sudo eggs config
647
-
648
- sudo eggs config --clean
649
-
650
- sudo eggs config --clean --nointeractive
651
- ```
652
-
653
- _See code: [src/commands/config.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.10.6/src/commands/config.ts)_
654
-
655
- ## `eggs cuckoo`
656
-
657
- PXE start with proxy-dhcp
658
-
659
- ```
660
- USAGE
661
- $ eggs cuckoo [-h] [-v]
662
-
663
- FLAGS
664
- -h, --help Show CLI help.
665
- -v, --verbose verbose
666
-
667
- DESCRIPTION
668
- PXE start with proxy-dhcp
669
-
670
- EXAMPLES
671
- sudo eggs cuckoo
672
- ```
673
-
674
- _See code: [src/commands/cuckoo.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.10.6/src/commands/cuckoo.ts)_
675
-
676
- ## `eggs dad`
677
-
678
- ask help from daddy - TUI configuration helper
679
-
680
- ```
681
- USAGE
682
- $ eggs dad [-c] [-d] [-f <value>] [-n] [-h] [-v]
683
-
684
- FLAGS
685
- -c, --clean remove old configuration before to create
686
- -d, --default reset to default values
687
- -f, --file=<value> use a file configuration custom
688
- -h, --help Show CLI help.
689
- -n, --nointeractive no user interaction
690
- -v, --verbose
691
-
692
- DESCRIPTION
693
- ask help from daddy - TUI configuration helper
694
-
695
- EXAMPLES
696
- sudo dad
697
-
698
- sudo dad --clean
699
-
700
- sudo dad --default
701
- ```
702
-
703
- _See code: [src/commands/dad.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.10.6/src/commands/dad.ts)_
704
-
705
- ## `eggs export iso`
706
-
707
- export iso in the destination host
708
-
709
- ```
710
- USAGE
711
- $ eggs export iso [-C] [-c] [-h] [-v]
712
-
713
- FLAGS
714
- -C, --checksum export checksums md5 and sha256
715
- -c, --clean delete old ISOs before to copy
716
- -h, --help Show CLI help.
717
- -v, --verbose verbose
718
-
719
- DESCRIPTION
720
- export iso in the destination host
721
-
722
- EXAMPLES
723
- $ eggs export iso
724
-
725
- $ eggs export iso --clean
726
- ```
727
-
728
- _See code: [src/commands/export/iso.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.10.6/src/commands/export/iso.ts)_
729
-
730
- ## `eggs export pkg`
731
-
732
- export pkg/iso to the destination host
733
-
734
- ```
735
- USAGE
736
- $ eggs export pkg [-a] [-c] [-h] [-v]
737
-
738
- FLAGS
739
- -a, --all export all archs
740
- -c, --clean remove old .deb before to copy
741
- -h, --help Show CLI help.
742
- -v, --verbose verbose
743
-
744
- DESCRIPTION
745
- export pkg/iso to the destination host
746
-
747
- EXAMPLES
748
- $ eggs export pkg
749
-
750
- $ eggs export pkg --clean
751
-
752
- $ eggs export pkg --all
753
- ```
754
-
755
- _See code: [src/commands/export/pkg.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.10.6/src/commands/export/pkg.ts)_
756
-
757
- ## `eggs export tarballs`
758
-
759
- export pkg/iso/tarballs to the destination host
760
-
761
- ```
762
- USAGE
763
- $ eggs export tarballs [-c] [-h] [-v]
764
-
765
- FLAGS
766
- -c, --clean remove old .deb before to copy
767
- -h, --help Show CLI help.
768
- -v, --verbose verbose
769
-
770
- DESCRIPTION
771
- export pkg/iso/tarballs to the destination host
772
-
773
- EXAMPLES
774
- $ eggs export tarballs
775
-
776
- $ eggs export tarballs --clean
777
- ```
778
-
779
- _See code: [src/commands/export/tarballs.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.10.6/src/commands/export/tarballs.ts)_
522
+ _See code: [@oclif/plugin-autocomplete](https://github.com/oclif/plugin-autocomplete/blob/v3.2.36/src/commands/autocomplete/index.ts)_
780
523
 
781
524
  ## `eggs help [COMMAND]`
782
525
 
@@ -787,7 +530,7 @@ USAGE
787
530
  $ eggs help [COMMAND...] [-n]
788
531
 
789
532
  ARGUMENTS
790
- COMMAND... Command to show help for.
533
+ [COMMAND...] Command to show help for.
791
534
 
792
535
  FLAGS
793
536
  -n, --nested-commands Include all nested commands in the output.
@@ -798,459 +541,6 @@ DESCRIPTION
798
541
 
799
542
  _See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v6.2.33/src/commands/help.ts)_
800
543
 
801
- ## `eggs install`
802
-
803
- krill: the CLI system installer - the egg became a penguin!
804
-
805
- ```
806
- USAGE
807
- $ eggs install [-b] [-c] [-k] [-d <value>] [-H] [-h] [-i] [-n] [-N] [-p] [-r] [-R <value>] [-s] [-S] [-t]
808
- [-u] [-v]
809
-
810
- FLAGS
811
- -H, --halt Halt the system after installation
812
- -N, --none Swap none: 256M
813
- -R, --replace=<value> Replace partition. eg: --replace /dev/sda3
814
- -S, --suspend Swap suspend: RAM x 2
815
- -b, --btrfs Format btrfs
816
- -c, --chroot chroot before to end
817
- -d, --domain=<value> Domain name, defult: .local
818
- -h, --help Show CLI help.
819
- -i, --ip hostname as ip, eg: ip-192-168-1-33
820
- -k, --crypted Crypted CLI installation
821
- -n, --nointeractive no user interaction
822
- -p, --pve Proxmox VE install
823
- -r, --random Add random to hostname, eg: colibri-ay412dt
824
- -s, --small Swap small: RAM
825
- -t, --testing Just testing krill
826
- -u, --unattended Unattended installation
827
- -v, --verbose Verbose
828
-
829
- DESCRIPTION
830
- krill: the CLI system installer - the egg became a penguin!
831
-
832
- ALIASES
833
- $ eggs krill
834
-
835
- EXAMPLES
836
- sudo eggs install
837
-
838
- sudo eggs install --unattended --halt
839
-
840
- sudo eggs install --chroot
841
- ```
842
-
843
- _See code: [src/commands/install.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.10.6/src/commands/install.ts)_
844
-
845
- ## `eggs kill`
846
-
847
- kill the eggs/free the nest
848
-
849
- ```
850
- USAGE
851
- $ eggs kill [-h] [-i] [-n] [-v]
852
-
853
- FLAGS
854
- -h, --help Show CLI help.
855
- -i, --isos erase all ISOs on remote mount
856
- -n, --nointeractive no user interaction
857
- -v, --verbose verbose
858
-
859
- DESCRIPTION
860
- kill the eggs/free the nest
861
-
862
- EXAMPLES
863
- sudo eggs kill
864
- ```
865
-
866
- _See code: [src/commands/kill.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.10.6/src/commands/kill.ts)_
867
-
868
- ## `eggs krill`
869
-
870
- krill: the CLI system installer - the egg became a penguin!
871
-
872
- ```
873
- USAGE
874
- $ eggs krill [-b] [-c] [-k] [-d <value>] [-H] [-h] [-i] [-n] [-N] [-p] [-r] [-R <value>] [-s] [-S] [-t]
875
- [-u] [-v]
876
-
877
- FLAGS
878
- -H, --halt Halt the system after installation
879
- -N, --none Swap none: 256M
880
- -R, --replace=<value> Replace partition. eg: --replace /dev/sda3
881
- -S, --suspend Swap suspend: RAM x 2
882
- -b, --btrfs Format btrfs
883
- -c, --chroot chroot before to end
884
- -d, --domain=<value> Domain name, defult: .local
885
- -h, --help Show CLI help.
886
- -i, --ip hostname as ip, eg: ip-192-168-1-33
887
- -k, --crypted Crypted CLI installation
888
- -n, --nointeractive no user interaction
889
- -p, --pve Proxmox VE install
890
- -r, --random Add random to hostname, eg: colibri-ay412dt
891
- -s, --small Swap small: RAM
892
- -t, --testing Just testing krill
893
- -u, --unattended Unattended installation
894
- -v, --verbose Verbose
895
-
896
- DESCRIPTION
897
- krill: the CLI system installer - the egg became a penguin!
898
-
899
- ALIASES
900
- $ eggs krill
901
-
902
- EXAMPLES
903
- sudo eggs install
904
-
905
- sudo eggs install --unattended --halt
906
-
907
- sudo eggs install --chroot
908
- ```
909
-
910
- ## `eggs love`
911
-
912
- the simplest way to get an egg!
913
-
914
- ```
915
- USAGE
916
- $ eggs love [-h] [-v] [-n]
917
-
918
- FLAGS
919
- -h, --help Show CLI help.
920
- -n, --nointeractive no user interaction
921
- -v, --verbose
922
-
923
- DESCRIPTION
924
- the simplest way to get an egg!
925
-
926
- EXAMPLES
927
- $ eggs auto
928
- ```
929
-
930
- _See code: [src/commands/love.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.10.6/src/commands/love.ts)_
931
-
932
- ## `eggs mom`
933
-
934
- ask help from mommy - TUI helper
935
-
936
- ```
937
- USAGE
938
- $ eggs mom [-h]
939
-
940
- FLAGS
941
- -h, --help Show CLI help.
942
-
943
- DESCRIPTION
944
- ask help from mommy - TUI helper
945
-
946
- EXAMPLES
947
- $ eggs mom
948
- ```
949
-
950
- _See code: [src/commands/mom.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.10.6/src/commands/mom.ts)_
951
-
952
- ## `eggs pods [DISTRO]`
953
-
954
- eggs pods: build ISOs from containers
955
-
956
- ```
957
- USAGE
958
- $ eggs pods [DISTRO] [-h]
959
-
960
- ARGUMENTS
961
- DISTRO distro to build
962
-
963
- FLAGS
964
- -h, --help Show CLI help.
965
-
966
- DESCRIPTION
967
- eggs pods: build ISOs from containers
968
-
969
- EXAMPLES
970
- $ eggs pods archlinux
971
-
972
- $ eggs pods debian
973
-
974
- $ eggs pods ubuntu
975
- ```
976
-
977
- _See code: [src/commands/pods.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.10.6/src/commands/pods.ts)_
978
-
979
- ## `eggs produce`
980
-
981
- produce a live image from your system whithout your data
982
-
983
- ```
984
- USAGE
985
- $ eggs produce [--addons <value>...] [--basename <value>] [-c] [-C] [--excludes <value>...] [-h] [-k
986
- <value>] [--links <value>...] [-m] [-N] [-n] [-p] [-P <value>] [--release] [-s] [-S] [--theme <value>] [-u] [-v]
987
- [-y]
988
-
989
- FLAGS
990
- -C, --cryptedclone crypted clone
991
- -N, --noicon no icon eggs on desktop
992
- -P, --prefix=<value> prefix
993
- -S, --standard standard compression: xz -b 1M
994
- -c, --clone clone
995
- -h, --help Show CLI help.
996
- -k, --kernel=<value> kernel version
997
- -m, --max max compression: xz -Xbcj ...
998
- -n, --nointeractive no user interaction
999
- -p, --pendrive optimized for pendrive: zstd -b 1M -Xcompression-level 15
1000
- -s, --script script mode. Generate scripts to manage iso build
1001
- -u, --unsecure /root contents are included on live
1002
- -v, --verbose verbose
1003
- -y, --yolk force yolk renew
1004
- --addons=<value>... addons to be used: adapt, pve, rsupport
1005
- --basename=<value> basename
1006
- --excludes=<value>... use: static, homes, home
1007
- --links=<value>... desktop links
1008
- --release release: remove penguins-eggs, calamares and dependencies after installation
1009
- --theme=<value> theme for livecd, calamares branding and partitions
1010
-
1011
- DESCRIPTION
1012
- produce a live image from your system whithout your data
1013
-
1014
- EXAMPLES
1015
- sudo eggs produce # zstd fast compression
1016
-
1017
- sudo eggs produce --standard # xz compression
1018
-
1019
- sudo eggs produce --max # xz max compression
1020
-
1021
- sudo eggs produce --pendrive # zstd compression optimized pendrive
1022
-
1023
- sudo eggs produce --clone # clone
1024
-
1025
- sudo eggs produce --cryptedclone # crypted clone
1026
-
1027
- sudo eggs produce --basename=colibri
1028
-
1029
- sudo eggs produce --theme lastos
1030
-
1031
- sudo eggs produce --excludes static # you can customize it
1032
-
1033
- sudo eggs produce --excludes homes # exclude /home/*
1034
-
1035
- sudo eggs produce --excludes home # exclude ~/*
1036
- ```
1037
-
1038
- _See code: [src/commands/produce.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.10.6/src/commands/produce.ts)_
1039
-
1040
- ## `eggs status`
1041
-
1042
- informations about eggs status
1043
-
1044
- ```
1045
- USAGE
1046
- $ eggs status [-h] [-v]
1047
-
1048
- FLAGS
1049
- -h, --help Show CLI help.
1050
- -v, --verbose
1051
-
1052
- DESCRIPTION
1053
- informations about eggs status
1054
-
1055
- EXAMPLES
1056
- $ eggs status
1057
- ```
1058
-
1059
- _See code: [src/commands/status.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.10.6/src/commands/status.ts)_
1060
-
1061
- ## `eggs syncfrom`
1062
-
1063
- restore users and user data from a LUKS volumes
1064
-
1065
- ```
1066
- USAGE
1067
- $ eggs syncfrom [--delete <value>] [-f <value>] [-h] [-r <value>] [-v]
1068
-
1069
- FLAGS
1070
- -f, --file=<value> file containing luks-volume encrypted
1071
- -h, --help Show CLI help.
1072
- -r, --rootdir=<value> rootdir of the installed system, when used from live
1073
- -v, --verbose verbose
1074
- --delete=<value> rsync --delete delete extraneous files from dest dirs
1075
-
1076
- DESCRIPTION
1077
- restore users and user data from a LUKS volumes
1078
-
1079
- EXAMPLES
1080
- sudo eggs syncfrom
1081
-
1082
- sudo eggs syncfrom --file /path/to/luks-volume
1083
- ```
1084
-
1085
- _See code: [src/commands/syncfrom.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.10.6/src/commands/syncfrom.ts)_
1086
-
1087
- ## `eggs syncto`
1088
-
1089
- Save users and users' data ENCRYPTED
1090
-
1091
- ```
1092
- USAGE
1093
- $ eggs syncto [-e] [-f <value>] [-h] [-v]
1094
-
1095
- FLAGS
1096
- -e, --excludes use: exclude.list.d/home.list
1097
- -f, --file=<value> file luks-volume encrypted
1098
- -h, --help Show CLI help.
1099
- -v, --verbose verbose
1100
-
1101
- DESCRIPTION
1102
- Save users and users' data ENCRYPTED
1103
-
1104
- EXAMPLES
1105
- sudo eggs syncto
1106
-
1107
- sudo eggs syncto --file /path/to/luks-volume
1108
-
1109
- sudo eggs syncto --excludes
1110
- ```
1111
-
1112
- _See code: [src/commands/syncto.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.10.6/src/commands/syncto.ts)_
1113
-
1114
- ## `eggs tools clean`
1115
-
1116
- clean system log, apt, etc
1117
-
1118
- ```
1119
- USAGE
1120
- $ eggs tools clean [-h] [-n] [-v]
1121
-
1122
- FLAGS
1123
- -h, --help Show CLI help.
1124
- -n, --nointeractive no user interaction
1125
- -v, --verbose verbose
1126
-
1127
- DESCRIPTION
1128
- clean system log, apt, etc
1129
-
1130
- EXAMPLES
1131
- sudo eggs tools clean
1132
- ```
1133
-
1134
- _See code: [src/commands/tools/clean.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.10.6/src/commands/tools/clean.ts)_
1135
-
1136
- ## `eggs tools ppa`
1137
-
1138
- add/remove repo
1139
-
1140
- ```
1141
- USAGE
1142
- $ eggs tools ppa [-a] [-h] [-n] [-r] [-v]
1143
-
1144
- FLAGS
1145
- -a, --add add penguins-eggs PPA repository
1146
- -h, --help Show CLI help.
1147
- -n, --nointeractive no user interaction
1148
- -r, --remove remove penguins-eggs PPA repository
1149
- -v, --verbose verbose
1150
-
1151
- DESCRIPTION
1152
- add/remove repo
1153
-
1154
- EXAMPLES
1155
- sudo eggs tools ppa --add
1156
-
1157
- sudo eggs tools ppa --remove
1158
- ```
1159
-
1160
- _See code: [src/commands/tools/ppa.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.10.6/src/commands/tools/ppa.ts)_
1161
-
1162
- ## `eggs tools skel`
1163
-
1164
- update skel from home configuration
1165
-
1166
- ```
1167
- USAGE
1168
- $ eggs tools skel [-h] [-u <value>] [-v]
1169
-
1170
- FLAGS
1171
- -h, --help Show CLI help.
1172
- -u, --user=<value> user to be used
1173
- -v, --verbose
1174
-
1175
- DESCRIPTION
1176
- update skel from home configuration
1177
-
1178
- EXAMPLES
1179
- sudo eggs tools skel
1180
-
1181
- sudo eggs tools skel --user user-to-be-copied
1182
- ```
1183
-
1184
- _See code: [src/commands/tools/skel.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.10.6/src/commands/tools/skel.ts)_
1185
-
1186
- ## `eggs tools stat`
1187
-
1188
- get statistics from sourceforge
1189
-
1190
- ```
1191
- USAGE
1192
- $ eggs tools stat [-h] [-m] [-y]
1193
-
1194
- FLAGS
1195
- -h, --help Show CLI help.
1196
- -m, --month current month
1197
- -y, --year current year
1198
-
1199
- DESCRIPTION
1200
- get statistics from sourceforge
1201
-
1202
- EXAMPLES
1203
- $ eggs tools stat
1204
-
1205
- $ eggs tools stat --month
1206
-
1207
- $ eggs tools stat --year
1208
- ```
1209
-
1210
- _See code: [src/commands/tools/stat.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.10.6/src/commands/tools/stat.ts)_
1211
-
1212
- ## `eggs tools yolk`
1213
-
1214
- configure eggs to install without internet
1215
-
1216
- ```
1217
- USAGE
1218
- $ eggs tools yolk [-h] [-v]
1219
-
1220
- FLAGS
1221
- -h, --help Show CLI help.
1222
- -v, --verbose
1223
-
1224
- DESCRIPTION
1225
- configure eggs to install without internet
1226
-
1227
- EXAMPLES
1228
- sudo eggs tools yolk
1229
- ```
1230
-
1231
- _See code: [src/commands/tools/yolk.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.10.6/src/commands/tools/yolk.ts)_
1232
-
1233
- ## `eggs update`
1234
-
1235
- update the Penguins' eggs tool
1236
-
1237
- ```
1238
- USAGE
1239
- $ eggs update [-h] [-v]
1240
-
1241
- FLAGS
1242
- -h, --help Show CLI help.
1243
- -v, --verbose verbose
1244
-
1245
- DESCRIPTION
1246
- update the Penguins' eggs tool
1247
-
1248
- EXAMPLES
1249
- $ eggs update
1250
- ```
1251
-
1252
- _See code: [src/commands/update.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.10.6/src/commands/update.ts)_
1253
-
1254
544
  ## `eggs version`
1255
545
 
1256
546
  ```
@@ -1270,122 +560,6 @@ FLAG DESCRIPTIONS
1270
560
  ```
1271
561
 
1272
562
  _See code: [@oclif/plugin-version](https://github.com/oclif/plugin-version/blob/v2.2.33/src/commands/version.ts)_
1273
-
1274
- ## `eggs wardrobe get [REPO]`
1275
-
1276
- get warorobe
1277
-
1278
- ```
1279
- USAGE
1280
- $ eggs wardrobe get [REPO] [-h] [-v]
1281
-
1282
- ARGUMENTS
1283
- REPO repository to get
1284
-
1285
- FLAGS
1286
- -h, --help Show CLI help.
1287
- -v, --verbose
1288
-
1289
- DESCRIPTION
1290
- get warorobe
1291
-
1292
- EXAMPLES
1293
- $ eggs wardrobe get
1294
-
1295
- $ eggs wardrobe get your-wardrobe
1296
- ```
1297
-
1298
- _See code: [src/commands/wardrobe/get.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.10.6/src/commands/wardrobe/get.ts)_
1299
-
1300
- ## `eggs wardrobe list [REPO]`
1301
-
1302
- list costumes and accessoires in wardrobe
1303
-
1304
- ```
1305
- USAGE
1306
- $ eggs wardrobe list [REPO] [-d <value>] [-h] [-v]
1307
-
1308
- ARGUMENTS
1309
- REPO wardrobe to get
1310
-
1311
- FLAGS
1312
- -d, --distro=<value> distro
1313
- -h, --help Show CLI help.
1314
- -v, --verbose
1315
-
1316
- DESCRIPTION
1317
- list costumes and accessoires in wardrobe
1318
-
1319
- EXAMPLES
1320
- $ eggs wardrobe list
1321
-
1322
- $ eggs wardrobe list your-wardrobe
1323
-
1324
- $ eggs wardrobe list --distro arch
1325
- ```
1326
-
1327
- _See code: [src/commands/wardrobe/list.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.10.6/src/commands/wardrobe/list.ts)_
1328
-
1329
- ## `eggs wardrobe show [REPO]`
1330
-
1331
- show costumes/accessories in wardrobe
1332
-
1333
- ```
1334
- USAGE
1335
- $ eggs wardrobe show [REPO] [-h] [-j] [-v] [-w <value>]
1336
-
1337
- ARGUMENTS
1338
- REPO costume to show
1339
-
1340
- FLAGS
1341
- -h, --help Show CLI help.
1342
- -j, --json output JSON
1343
- -v, --verbose
1344
- -w, --wardrobe=<value> wardrobe
1345
-
1346
- DESCRIPTION
1347
- show costumes/accessories in wardrobe
1348
-
1349
- EXAMPLES
1350
- $ eggs wardrobe show colibri
1351
-
1352
- $ eggs wardrobe show accessories/firmwares
1353
-
1354
- $ eggs wardrobe show accessories/
1355
- ```
1356
-
1357
- _See code: [src/commands/wardrobe/show.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.10.6/src/commands/wardrobe/show.ts)_
1358
-
1359
- ## `eggs wardrobe wear [REPO]`
1360
-
1361
- wear costume/accessories from wardrobe
1362
-
1363
- ```
1364
- USAGE
1365
- $ eggs wardrobe wear [REPO] [-h] [-a] [-f] [-v] [-w <value>]
1366
-
1367
- ARGUMENTS
1368
- REPO costume to wear
1369
-
1370
- FLAGS
1371
- -a, --no_accessories not install accessories
1372
- -f, --no_firmwares not install firmwares
1373
- -h, --help Show CLI help.
1374
- -v, --verbose
1375
- -w, --wardrobe=<value> wardrobe
1376
-
1377
- DESCRIPTION
1378
- wear costume/accessories from wardrobe
1379
-
1380
- EXAMPLES
1381
- sudo eggs wardrobe wear duck
1382
-
1383
- sudo eggs wardrobe wear accessories/firmwares
1384
-
1385
- sudo eggs wardrobe wear wagtail/waydroid
1386
- ```
1387
-
1388
- _See code: [src/commands/wardrobe/wear.ts](https://github.com/pieroproietti/penguins-eggs/blob/v25.10.6/src/commands/wardrobe/wear.ts)_
1389
563
  <!-- commandsstop -->
1390
564
 
1391
565
  # GUI