penguins-eggs 9.0.16 → 9.0.35

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (85) hide show
  1. package/README.md +49 -27
  2. package/addons/{blissos → telos}/theme/applications/install-debian.desktop +0 -0
  3. package/addons/{blissos → telos}/theme/artwork/install-debian.png +0 -0
  4. package/addons/telos/theme/calamares/branding/banner.png +0 -0
  5. package/addons/telos/theme/calamares/branding/branding.desc +25 -0
  6. package/addons/telos/theme/calamares/branding/show.qml +51 -0
  7. package/addons/telos/theme/calamares/branding/slide1.png +0 -0
  8. package/addons/telos/theme/calamares/branding/telos-logo.png +0 -0
  9. package/addons/telos/theme/calamares/branding/welcome.png +0 -0
  10. package/addons/{blissos → telos}/theme/calamares/modules/partition.yml +0 -0
  11. package/addons/{blissos → telos}/theme/livecd/grub.theme.cfg +1 -1
  12. package/addons/{blissos → telos}/theme/livecd/isolinux.theme.cfg +1 -1
  13. package/addons/telos/theme/livecd/splash.png +0 -0
  14. package/addons/templates/grub.template +2 -0
  15. package/addons/waydroid/theme/applications/install-debian.desktop +28 -0
  16. package/addons/waydroid/theme/artwork/install-debian.png +0 -0
  17. package/addons/{blissos → waydroid}/theme/calamares/branding/branding.desc +0 -0
  18. package/addons/{blissos → waydroid}/theme/calamares/branding/languages.png +0 -0
  19. package/addons/{blissos → waydroid}/theme/calamares/branding/show.qml +0 -0
  20. package/addons/{blissos → waydroid}/theme/calamares/branding/slide1.png +0 -0
  21. package/addons/{blissos → waydroid}/theme/calamares/branding/slide2.png +0 -0
  22. package/addons/{blissos → waydroid}/theme/calamares/branding/slide3.png +0 -0
  23. package/addons/{blissos/theme/calamares/branding/blissos-logo.png → waydroid/theme/calamares/branding/waydroid-logo.png} +0 -0
  24. package/addons/{blissos → waydroid}/theme/calamares/branding/welcome.png +0 -0
  25. package/addons/waydroid/theme/calamares/modules/partition.yml +233 -0
  26. package/addons/waydroid/theme/livecd/grub.theme.cfg +43 -0
  27. package/addons/waydroid/theme/livecd/isolinux.theme.cfg +45 -0
  28. package/addons/{blissos → waydroid}/theme/livecd/splash.png +0 -0
  29. package/conf/distros/buster/calamares/calamares-modules/sources-yolk/sources-yolk.sh +57 -38
  30. package/lib/classes/daddy.js +7 -7
  31. package/lib/classes/distro.d.ts +4 -2
  32. package/lib/classes/distro.js +60 -76
  33. package/lib/classes/family/debian.js +2 -2
  34. package/lib/classes/i18n.js +2 -2
  35. package/lib/classes/incubation/fisherman-helper/packages.js +1 -1
  36. package/lib/classes/incubation/incubator.js +6 -1
  37. package/lib/classes/incubation/installer.d.ts +1 -1
  38. package/lib/classes/incubation/installer.js +2 -2
  39. package/lib/classes/krill_install.d.ts +56 -26
  40. package/lib/classes/krill_install.js +598 -357
  41. package/lib/classes/krill_prepare.d.ts +7 -3
  42. package/lib/classes/krill_prepare.js +62 -22
  43. package/lib/classes/ovary.d.ts +27 -27
  44. package/lib/classes/ovary.js +344 -370
  45. package/lib/classes/pacman.d.ts +1 -1
  46. package/lib/classes/pacman.js +21 -21
  47. package/lib/classes/pve-live.js +10 -14
  48. package/lib/classes/systemctl.d.ts +36 -7
  49. package/lib/classes/systemctl.js +63 -28
  50. package/lib/classes/utils.d.ts +14 -3
  51. package/lib/classes/utils.js +66 -19
  52. package/lib/classes/xdg.js +18 -34
  53. package/lib/classes/yolk.d.ts +12 -10
  54. package/lib/classes/yolk.js +50 -52
  55. package/lib/commands/install.d.ts +1 -0
  56. package/lib/commands/install.js +14 -3
  57. package/lib/commands/kill.js +1 -1
  58. package/lib/commands/produce.js +4 -4
  59. package/lib/commands/syncfrom.d.ts +9 -3
  60. package/lib/commands/syncfrom.js +38 -31
  61. package/lib/commands/syncto.d.ts +26 -6
  62. package/lib/commands/syncto.js +71 -48
  63. package/lib/components/elements/information.js +31 -12
  64. package/lib/components/partitions.d.ts +1 -2
  65. package/lib/components/partitions.js +1 -4
  66. package/lib/interfaces/i-devices.d.ts +1 -0
  67. package/lib/interfaces/i-distro.d.ts +4 -2
  68. package/lib/interfaces/i-installer.d.ts +1 -1
  69. package/lib/interfaces/i-krill.d.ts +0 -1
  70. package/lib/lib/cli-autologin.js +8 -3
  71. package/lib/lib/select_installation_device.js +1 -0
  72. package/lib/lib/select_installation_mode.js +1 -1
  73. package/manpages/doc/man/eggs.html +65 -6
  74. package/oclif.manifest.json +1 -1
  75. package/package.json +14 -13
  76. package/scripts/_eggs +9 -8
  77. package/scripts/bros/waydroid-helper.sh +1 -1
  78. package/scripts/eggs.bash +3 -3
  79. package/scripts/{not-used/install-eggs-ppa.sh → install-eggs-ppa.sh} +1 -0
  80. package/scripts/mom-cli.sh +1 -1
  81. package/scripts/{not-used/pve-live.sh → pve-live.sh} +2 -6
  82. package/scripts/userexist.sh +6 -0
  83. package/scripts/not-used/eggs-cleanup.sh +0 -7
  84. package/scripts/not-used/mkinitramfs +0 -469
  85. package/scripts/update-initramfs +0 -94
package/README.md CHANGED
@@ -39,6 +39,26 @@ Starting with version 7.6.x, an addons architecture was added to eggs, allowing
39
39
  ### backup
40
40
  From version 8.0.10 You can use the backup mode by simply adding --backup in the produce command. This way eggs will save your users data and accounts and will not add a live user, you will have to log in with the main user of your system with the his password. **Note:** since eggs always configures autologin, you may have a security risk with valuable data. Use this option only for your personal stuff and do not share the iso on the network.
41
41
 
42
+ * ```eggs produce``` just remove users accounts and home. This let to have working servers examples;
43
+ * ```eggs produce --backup``` remove servers and users data from live, and put them on a LUKS volume.
44
+
45
+ From version 9.0.16 we have two new commands: ```eggs syncfrom``` (alias restore) and ```eggs syncto``` (alias backup).
46
+
47
+ A working installation, can easily sync users and servers data to a luks-eggs-backup:
48
+ * ```eggs syncto -f /tmp/luks-eggs-backup``` backup users and servers data to LUKS volume /tmp/luks-eggs-backup:
49
+
50
+ A new installation, can easyly get users and servers data from a luks-eggs-backup:
51
+ * ```eggs syncfrom from -f /tmp/luks-eggs-backup``` restore users and servers data from the LUKS volume /tmp/luks-eggs-backup.
52
+
53
+ **NOTE:**
54
+ * krill: ```sudo eggs install --cli``` will restore users and servers data automatically;
55
+ * installing with calamares: when installation is finished, you need to mount the rootdir of your installed system and, give the following command: ```sudo eggs syncfrom -f /path/to/luks-eggs-backup -r /path/to/rootdir```
56
+ * it's possbile actually to change the nest directory, editing configuration file ```/etc/penguins-eggs.d/eggs.yaml```. Example: ```set snapshot_dir: '/opt/eggs/'```, but you can't use the following: /etc, /boot, /usr and /var.
57
+
58
+ **DISCLAIM:** using this new feathures can be dangerous for your data:
59
+ * ```syncfrom``` replace all users homes and all servers homes with data from the luck-eggs-backup, Force this data in not appropriate system can easily end in a long disaster recovery;
60
+ * I want stress you again on the fact we are working with a **live filesystem** mounted binded to the **REAL filesystem**. This mean who removing a directory under the nest, usually ```/nest/ovarium/filesystem.squashfs```, mean remove it from the REAL filesystem. So, if something went wrong during the iso production and You remain with live filesystem again binded, the shortest way to solve the problem is simply reboot.
61
+
42
62
  ### krill
43
63
  Starting with eggs 8.0.0 I included a new CLI installer named krill. krill let you to install your system in a nice CLI interface using the same, configuration created by eggs for [calamares](calamares.io). This lead to have "about the same" experience installing, from old distros to new one and for GUI and CLI. To force using krill in place of calamares in a GUI system just: **sudo eggs install --cli**
44
64
 
@@ -83,12 +103,12 @@ Update your repositories: **sudo apt update** and install eggs: **sudo apt insta
83
103
  The simplest way to install eggs is download the [package eggs](https://sourceforge.net/projects/penguins-eggs/files/packages-deb/) from [sourceforge page of the project](https://sourceforge.net/projects/penguins-eggs/) and install it
84
104
 
85
105
  ```
86
- sudo dpkg -i eggs_14.18.0-1_amd64.deb
106
+ sudo dpkg -i eggs_9.0.16-1_amd64.deb
87
107
  ```
88
108
 
89
109
  or, on a i386 system:
90
110
  ```
91
- sudo dpkg -i eggs_8.17.3-1_i386.deb
111
+ sudo dpkg -i eggs_8.17.17-1_i386.deb
92
112
  ```
93
113
 
94
114
  ## Upgrade eggs
@@ -113,7 +133,7 @@ $ npm install -g penguins-eggs
113
133
  $ eggs COMMAND
114
134
  running command...
115
135
  $ eggs (--version|-v)
116
- penguins-eggs/9.0.16 linux-x64 node-v16.13.2
136
+ penguins-eggs/9.0.35 linux-x64 node-v16.14.0
117
137
  $ eggs --help [COMMAND]
118
138
  USAGE
119
139
  $ eggs COMMAND
@@ -169,7 +189,7 @@ ALIASES
169
189
  $ eggs adjust
170
190
  ```
171
191
 
172
- _See code: [src/commands/adapt.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.0.16/src/commands/adapt.ts)_
192
+ _See code: [src/commands/adapt.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.0.35/src/commands/adapt.ts)_
173
193
 
174
194
  ## `eggs analyze`
175
195
 
@@ -190,7 +210,7 @@ EXAMPLES
190
210
  $ sudo eggs analyze
191
211
  ```
192
212
 
193
- _See code: [src/commands/analyze.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.0.16/src/commands/analyze.ts)_
213
+ _See code: [src/commands/analyze.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.0.35/src/commands/analyze.ts)_
194
214
 
195
215
  ## `eggs autocomplete [SHELL]`
196
216
 
@@ -236,7 +256,7 @@ DESCRIPTION
236
256
  bro: waydroid helper
237
257
  ```
238
258
 
239
- _See code: [src/commands/bro.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.0.16/src/commands/bro.ts)_
259
+ _See code: [src/commands/bro.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.0.35/src/commands/bro.ts)_
240
260
 
241
261
  ## `eggs calamares`
242
262
 
@@ -265,7 +285,7 @@ EXAMPLES
265
285
  install calamares and create it's configuration's files
266
286
  ```
267
287
 
268
- _See code: [src/commands/calamares.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.0.16/src/commands/calamares.ts)_
288
+ _See code: [src/commands/calamares.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.0.35/src/commands/calamares.ts)_
269
289
 
270
290
  ## `eggs config`
271
291
 
@@ -292,7 +312,7 @@ EXAMPLES
292
312
  Configure and install prerequisites deb packages to run it
293
313
  ```
294
314
 
295
- _See code: [src/commands/config.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.0.16/src/commands/config.ts)_
315
+ _See code: [src/commands/config.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.0.35/src/commands/config.ts)_
296
316
 
297
317
  ## `eggs dad`
298
318
 
@@ -312,7 +332,7 @@ DESCRIPTION
312
332
  ask help from daddy - configuration helper
313
333
  ```
314
334
 
315
- _See code: [src/commands/dad.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.0.16/src/commands/dad.ts)_
335
+ _See code: [src/commands/dad.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.0.35/src/commands/dad.ts)_
316
336
 
317
337
  ## `eggs export deb`
318
338
 
@@ -385,7 +405,7 @@ DESCRIPTION
385
405
  Display help for eggs.
386
406
  ```
387
407
 
388
- _See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v5.1.10/src/commands/help.ts)_
408
+ _See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v5.1.11/src/commands/help.ts)_
389
409
 
390
410
  ## `eggs info`
391
411
 
@@ -403,7 +423,7 @@ DESCRIPTION
403
423
  re-thinking for a different approach to CLI
404
424
  ```
405
425
 
406
- _See code: [src/commands/info.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.0.16/src/commands/info.ts)_
426
+ _See code: [src/commands/info.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.0.35/src/commands/info.ts)_
407
427
 
408
428
  ## `eggs install`
409
429
 
@@ -411,12 +431,13 @@ command-line system installer - the egg became a penguin!
411
431
 
412
432
  ```
413
433
  USAGE
414
- $ eggs install [-c] [-k] [-h] [-v]
434
+ $ eggs install [-c] [-k] [-p] [-h] [-v]
415
435
 
416
436
  FLAGS
417
437
  -c, --cli force use CLI installer
418
438
  -h, --help Show CLI help.
419
439
  -k, --crypted crypted CLI installation
440
+ -p, --pve Proxmox VE install
420
441
  -v, --verbose verbose
421
442
 
422
443
  DESCRIPTION
@@ -431,7 +452,7 @@ EXAMPLES
431
452
  Install the system using GUI or CLI installer
432
453
  ```
433
454
 
434
- _See code: [src/commands/install.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.0.16/src/commands/install.ts)_
455
+ _See code: [src/commands/install.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.0.35/src/commands/install.ts)_
435
456
 
436
457
  ## `eggs kill`
437
458
 
@@ -453,7 +474,7 @@ EXAMPLES
453
474
  kill the eggs/free the nest
454
475
  ```
455
476
 
456
- _See code: [src/commands/kill.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.0.16/src/commands/kill.ts)_
477
+ _See code: [src/commands/kill.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.0.35/src/commands/kill.ts)_
457
478
 
458
479
  ## `eggs mom`
459
480
 
@@ -470,11 +491,11 @@ DESCRIPTION
470
491
  ask for mommy - gui helper
471
492
  ```
472
493
 
473
- _See code: [src/commands/mom.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.0.16/src/commands/mom.ts)_
494
+ _See code: [src/commands/mom.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.0.35/src/commands/mom.ts)_
474
495
 
475
496
  ## `eggs produce`
476
497
 
477
- the system produce an egg: iso image of your system
498
+ produce a live image from your system whithout your data
478
499
 
479
500
  ```
480
501
  USAGE
@@ -497,7 +518,7 @@ FLAGS
497
518
  --theme=<value> theme for livecd, calamares branding and partitions
498
519
 
499
520
  DESCRIPTION
500
- the system produce an egg: iso image of your system
521
+ produce a live image from your system whithout your data
501
522
 
502
523
  ALIASES
503
524
  $ eggs spawn
@@ -535,7 +556,7 @@ EXAMPLES
535
556
  in /home/eggs/ovarium and you can customize all you need
536
557
  ```
537
558
 
538
- _See code: [src/commands/produce.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.0.16/src/commands/produce.ts)_
559
+ _See code: [src/commands/produce.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.0.35/src/commands/produce.ts)_
539
560
 
540
561
  ## `eggs remove`
541
562
 
@@ -565,7 +586,7 @@ EXAMPLES
565
586
  remove eggs, eggs configurations, packages dependencies
566
587
  ```
567
588
 
568
- _See code: [src/commands/remove.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.0.16/src/commands/remove.ts)_
589
+ _See code: [src/commands/remove.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.0.35/src/commands/remove.ts)_
569
590
 
570
591
  ## `eggs syncfrom`
571
592
 
@@ -573,13 +594,14 @@ Restore users, server and datas from luks-eggs-backup
573
594
 
574
595
  ```
575
596
  USAGE
576
- $ eggs syncfrom [-f <value>] [-r <value>] [-h] [-v]
597
+ $ eggs syncfrom [--delete <value>] [-f <value>] [-r <value>] [-h] [-v]
577
598
 
578
599
  FLAGS
579
- -f, --file=<value> file with LUKS volume encrypted
600
+ -f, --file=<value> file LUKS volume encrypted
580
601
  -h, --help Show CLI help.
581
602
  -r, --rootdir=<value> rootdir of the installed system, when used from live
582
603
  -v, --verbose verbose
604
+ --delete=<value> rsync --delete delete extraneous files from dest dirs
583
605
 
584
606
  DESCRIPTION
585
607
  Restore users, server and datas from luks-eggs-backup
@@ -591,7 +613,7 @@ EXAMPLES
591
613
  $ sudo eggs restore
592
614
  ```
593
615
 
594
- _See code: [src/commands/syncfrom.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.0.16/src/commands/syncfrom.ts)_
616
+ _See code: [src/commands/syncfrom.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.0.35/src/commands/syncfrom.ts)_
595
617
 
596
618
  ## `eggs syncto`
597
619
 
@@ -599,13 +621,13 @@ Backup users, server and datas to luks-eggs-backup
599
621
 
600
622
  ```
601
623
  USAGE
602
- $ eggs syncto [-k] [-f <value>] [-h] [-v]
624
+ $ eggs syncto [--delete <value>] [-f <value>] [-h] [-v]
603
625
 
604
626
  FLAGS
605
627
  -f, --file=<value> file LUKS volume encrypted
606
628
  -h, --help Show CLI help.
607
- -k, --krill krill
608
629
  -v, --verbose verbose
630
+ --delete=<value> rsync --delete delete extraneous files from dest dirs
609
631
 
610
632
  DESCRIPTION
611
633
  Backup users, server and datas to luks-eggs-backup
@@ -614,10 +636,10 @@ ALIASES
614
636
  $ eggs backup
615
637
 
616
638
  EXAMPLES
617
- $ sudo eggs restore
639
+ $ sudo eggs syncto
618
640
  ```
619
641
 
620
- _See code: [src/commands/syncto.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.0.16/src/commands/syncto.ts)_
642
+ _See code: [src/commands/syncto.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.0.35/src/commands/syncto.ts)_
621
643
 
622
644
  ## `eggs tools clean`
623
645
 
@@ -740,7 +762,7 @@ EXAMPLES
740
762
  update/upgrade the penguin's eggs tool
741
763
  ```
742
764
 
743
- _See code: [src/commands/update.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.0.16/src/commands/update.ts)_
765
+ _See code: [src/commands/update.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.0.35/src/commands/update.ts)_
744
766
 
745
767
  ## `eggs version`
746
768
 
@@ -0,0 +1,25 @@
1
+ componentName: telos
2
+ welcomeStyleCalamares: true
3
+ strings:
4
+ productName: TELOS
5
+ shortProductName: TeLOS
6
+ version: '2022-01-22'
7
+ shortVersion: '2022-01-22'
8
+ versionedName: TeLOS (2022-01-22)
9
+ shortVersionedName: TELOS 2022-01-22
10
+ bootloaderEntryName: Debian
11
+ productUrl: ''
12
+ supportUrl: ''
13
+ bugReportUrl: https://github.com/pieroproietti/penguins-eggs/issues
14
+ releaseNotesUrl: https://github.com/pieroproietti/penguins-eggs/changelog.md
15
+ images:
16
+ productBanner: banner.png
17
+ productLogo: telos-logo.png
18
+ productIcon: telos-logo.png
19
+ productWelcome: welcome.png
20
+ slideshowAPI: 1
21
+ slideshow: show.qml
22
+ style:
23
+ sidebarBackground: '#2c3133'
24
+ sidebarText: '#FFFFFF'
25
+ sidebarTextSelect: '#4d7079'
@@ -0,0 +1,51 @@
1
+ /* === This file is part of Calamares - <http://github.com/calamares> ===
2
+ *
3
+ * Copyright 2015, Teo Mrnjavac <teo@kde.org>
4
+ * Copyright 2018-2019, Jonathan Carter <jcc@debian.org>
5
+ *
6
+ * Calamares is free software: you can redistribute it and/or modify
7
+ * it under the terms of the GNU General Public License as published by
8
+ * the Free Software Foundation, or (at your option) any later version.
9
+ *
10
+ * Calamares is distributed in the hope that it will be useful,
11
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
+ * GNU General Public License for more details.
14
+ *
15
+ * You should have received a copy of the GNU General Public License
16
+ * along with Calamares. If not, see <http://www.gnu.org/licenses/>.
17
+ */
18
+
19
+ import QtQuick 2.0;
20
+ import calamares.slideshow 1.0;
21
+
22
+ Presentation
23
+ {
24
+ id: presentation
25
+
26
+ Timer {
27
+ interval: 20000
28
+ repeat: true
29
+ onTriggered: presentation.goToNextSlide()
30
+ }
31
+
32
+ Slide {
33
+ Image {
34
+ id: background1
35
+ source: "slide1.png"
36
+ width: 467; height: 280
37
+ fillMode: Image.PreserveAspectFit
38
+ anchors.centerIn: parent
39
+ }
40
+ Text {
41
+ anchors.horizontalCenter: background1.horizontalCenter
42
+ anchors.top: background1.bottom
43
+ text: "Welcome to TeLOS Linux!<br/>"+
44
+ "You may have enough time to grab a coffee before auto setup is complete.."
45
+ wrapMode: Text.WordWrap
46
+ width: 600
47
+ horizontalAlignment: Text.Center
48
+ }
49
+ }
50
+
51
+ }
@@ -2,7 +2,7 @@
2
2
 
3
3
  # Global Property
4
4
  title-color: "white"
5
- title-text: "BlissOS: Android for your PC"
5
+ stitle-text: "TeLOS: an unconventional Linux distro"
6
6
  # title-font: "Sans Regular 20"
7
7
  desktop-color: "blue"
8
8
  desktop-image: "splash.png"
@@ -1,7 +1,7 @@
1
1
  #
2
2
  # eggs: isolinux.theme
3
3
  #
4
- MENU TITLE BlissOS: Android for your PC
4
+ MENU TITLE TeLOS: an unconventional Linux distro
5
5
  MENU BACKGROUND splash.png
6
6
  # MENU COLOR element backgound foreground shadow
7
7
  # background and foreground are hexadecimal digits for alpha (opacity), red, green and blue,
@@ -18,11 +18,13 @@ set theme=/boot/grub/theme.cfg
18
18
 
19
19
  menuentry "{{{fullname}}} (kernel {{{kernel}}})" {
20
20
  set gfxpayload=keep
21
+ {{{rmModules}}}
21
22
  linux {{{vmlinuz}}} {{{kernel_parameters}}} quiet splash
22
23
  initrd {{{initrdImg}}}
23
24
  }
24
25
  menuentry "{{{fullname}}} safe" {
25
26
  set gfxpayload=keep
27
+ {{{rmModules}}}
26
28
  linux {{{vmlinuz}}} {{{kernel_parameters}}}
27
29
  initrd {{{initrdImg}}}
28
30
  }
@@ -0,0 +1,28 @@
1
+ [Desktop Entry]
2
+ Type=Application
3
+ Version=1.0
4
+ Name=Install Linux
5
+ GenericName=Calamares Installer
6
+ Exec=/sbin/install-debian
7
+ Comment=Calamares — Installer for Debian Live
8
+ Keywords=calamares;system;install;debian;installer
9
+ Icon=install-debian
10
+ Terminal=false
11
+ Categories=Qt;System;
12
+ StartupWMClass=calamares
13
+ StartupNotify=True
14
+ Name[it]=Installa sistema
15
+ GenericName[it]=Installa sistema
16
+ Comment[it]=Installazione sistema GUI
17
+ Name[en]=Install system
18
+ GenericName[en]=Install the system
19
+ Comment[en]=Install the system GUI
20
+ Name[es]=Instalación del sistema
21
+ GenericName[es]=Instalación del sistema
22
+ Comment[es]=Instalación del sistema GUI
23
+ Name[pt]=Instalação do sistema
24
+ GenericName[pt]=Instalação do sistema
25
+ Comment[pt]=Instalação do sistema GUI
26
+ Name[fr]=Installation du système
27
+ GenericName[fr]=Installation du système
28
+ Comment[fr]=Installation du système GUI
@@ -0,0 +1,233 @@
1
+ # SPDX-FileCopyrightText: no
2
+ # SPDX-License-Identifier: CC0-1.0
3
+ #
4
+ # This setting specifies the mount point of the EFI system partition. Some
5
+ # distributions (Fedora, Debian, Manjaro, etc.) use /boot/efi, others (KaOS,
6
+ # etc.) use just /boot.
7
+ #
8
+ # Defaults to "/boot/efi", may be empty (but weird effects ensue)
9
+ efiSystemPartition: "/boot/efi"
10
+
11
+ # This optional setting specifies the size of the EFI system partition.
12
+ # If nothing is specified, the default size of 300MiB will be used.
13
+ # efiSystemPartitionSize: 300M
14
+
15
+ # This optional setting specifies the name of the EFI system partition (see
16
+ # PARTLABEL; gpt only; requires KPMCore >= 4.2.0).
17
+ # If nothing is specified, the partition name is left unset.
18
+ # efiSystemPartitionName: EFI
19
+
20
+ # In autogenerated partitioning, allow the user to select a swap size?
21
+ # If there is exactly one choice, no UI is presented, and the user
22
+ # cannot make a choice -- this setting is used. If there is more than
23
+ # one choice, a UI is presented.
24
+ #
25
+ # Legacy settings *neverCreateSwap* and *ensureSuspendToDisk* correspond
26
+ # to values of *userSwapChoices* as follows:
27
+ # - *neverCreateSwap* is true, means [none]
28
+ # - *neverCreateSwap* is false, *ensureSuspendToDisk* is false, [small]
29
+ # - *neverCreateSwap* is false, *ensureSuspendToDisk* is true, [suspend]
30
+ #
31
+ # Autogenerated swap sizes are as follows:
32
+ # - *suspend*: Swap is always at least total memory size,
33
+ # and up to 4GiB RAM follows the rule-of-thumb 2 * memory;
34
+ # from 4GiB to 8 GiB it stays steady at 8GiB, and over 8 GiB memory
35
+ # swap is the size of main memory.
36
+ # - *small*: Follows the rules above, but Swap is at
37
+ # most 8GiB, and no more than 10% of available disk.
38
+ # In both cases, a fudge factor (usually 10% extra) is applied so that there
39
+ # is some space for administrative overhead (e.g. 8 GiB swap will allocate
40
+ # 8.8GiB on disk in the end).
41
+ #
42
+ # If *file* is enabled here, make sure to have the *fstab* module
43
+ # as well (later in the exec phase) so that the swap file is
44
+ # actually created.
45
+ userSwapChoices:
46
+ - none # Create no swap, use no swap
47
+ - small # Up to 4GB
48
+ - suspend # At least main memory size
49
+ # - reuse # Re-use existing swap, but don't create any (unsupported right now)
50
+ - file # To swap file instead of partition
51
+
52
+ # This optional setting specifies the name of the swap partition (see
53
+ # PARTLABEL; gpt only; requires KPMCore >= 4.2.0).
54
+ # If nothing is specified, the partition name is left unset.
55
+ # swapPartitionName: swap
56
+
57
+ # LEGACY SETTINGS (these will generate a warning)
58
+ # ensureSuspendToDisk: true
59
+ # neverCreateSwap: false
60
+
61
+ # Correctly draw nested (e.g. logical) partitions as such.
62
+ drawNestedPartitions: false
63
+
64
+ # Show/hide partition labels on manual partitioning page.
65
+ alwaysShowPartitionLabels: true
66
+
67
+ # Allow manual partitioning.
68
+ #
69
+ # When set to false, this option hides the "Manual partitioning" button,
70
+ # limiting the user's choice to "Erase", "Replace" or "Alongside".
71
+ # This can be useful when using a custom partition layout we don't want
72
+ # the user to modify.
73
+ #
74
+ # If nothing is specified, manual partitioning is enabled.
75
+ #allowManualPartitioning: true
76
+
77
+ # Initial selection on the Choice page
78
+ #
79
+ # There are four radio buttons (in principle: erase, replace, alongside, manual),
80
+ # and you can pick which of them, if any, is initially selected. For most
81
+ # installers, "none" is the right choice: it makes the user pick something specific,
82
+ # rather than accidentally being able to click past an important choice (in particular,
83
+ # "erase" is a dangerous choice).
84
+ #
85
+ # The default is "none"
86
+ #
87
+ initialPartitioningChoice: none
88
+ #
89
+ # Similarly, some of the installation choices may offer a choice of swap;
90
+ # the available choices depend on *userSwapChoices*, above, and this
91
+ # setting can be used to pick a specific one.
92
+ #
93
+ # The default is "none" (no swap) if that is one of the enabled options, otherwise
94
+ # one of the items from the options.
95
+ initialSwapChoice: small
96
+
97
+ # Default partition table type, used when a "erase" disk is made.
98
+ #
99
+ # When erasing a disk, a new partition table is created on disk.
100
+ # In other cases, e.g. Replace and Alongside, as well as when using
101
+ # manual partitioning, this partition table exists already on disk
102
+ # and it is left unmodified.
103
+ #
104
+ # Suggested values: gpt, msdos
105
+ # If nothing is specified, Calamares defaults to "gpt" if system is
106
+ # efi or "msdos".
107
+ #
108
+ # Names are case-sensitive and defined by KPMCore.
109
+ # defaultPartitionTableType: msdos
110
+
111
+ # Requirement for partition table type
112
+ #
113
+ # Restrict the installation on disks that match the type of partition
114
+ # tables that are specified.
115
+ #
116
+ # Suggested values: msdos, gpt
117
+ # If nothing is specified, Calamares defaults to both "msdos" and "mbr".
118
+ #
119
+ # Names are case-sensitive and defined by KPMCore.
120
+ # requiredPartitionTableType: gpt
121
+ # or,
122
+ # requiredPartitionTableType:
123
+ # - msdos
124
+ # - gpt
125
+
126
+ # Default filesystem type, used when a "new" partition is made.
127
+ #
128
+ # When replacing a partition, the existing filesystem inside the
129
+ # partition is retained. In other cases, e.g. Erase and Alongside,
130
+ # as well as when using manual partitioning and creating a new
131
+ # partition, this filesystem type is pre-selected. Note that
132
+ # editing a partition in manual-creation mode will not automatically
133
+ # change the filesystem type to this default value -- it is not
134
+ # creating a new partition.
135
+ #
136
+ # Suggested values: ext2, ext3, ext4, reiser, xfs, jfs, btrfs
137
+ # If nothing is specified, Calamares defaults to "ext4".
138
+ #
139
+ # Names are case-sensitive and defined by KPMCore.
140
+ defaultFileSystemType: "ext4"
141
+
142
+ # Show/hide LUKS related functionality in automated partitioning modes.
143
+ # Disable this if you choose not to deploy early unlocking support in GRUB2
144
+ # and/or your distribution's initramfs solution.
145
+ #
146
+ # BIG FAT WARNING:
147
+ #
148
+ # This option is unsupported, as it cuts out a crucial security feature.
149
+ # Disabling LUKS and shipping Calamares without a correctly configured GRUB2
150
+ # and initramfs is considered suboptimal use of the Calamares software. The
151
+ # Calamares team will not provide user support for any potential issue that
152
+ # may arise as a consequence of setting this option to false.
153
+ # It is strongly recommended that system integrators put in the work to support
154
+ # LUKS unlocking support in GRUB2 and initramfs/dracut/mkinitcpio/etc.
155
+ # Support is offered to system integrators that wish to do so, through the
156
+ # Calamares bug tracker, as well as in #calamares on Freenode.
157
+ # For more information on setting up GRUB2 for Calamares with LUKS, see
158
+ # https://github.com/calamares/calamares/wiki/Deploy-LUKS
159
+ #
160
+ # If nothing is specified, LUKS is enabled in automated modes.
161
+ #enableLuksAutomatedPartitioning: true
162
+
163
+ # Partition layout.
164
+ #
165
+ # This optional setting specifies a custom partition layout.
166
+ #
167
+ # If nothing is specified, the default partition layout is a single partition
168
+ # for root that uses 100% of the space and uses the filesystem defined by
169
+ # defaultFileSystemType.
170
+ #
171
+ # Note: the EFI system partition is prepend automatically to the layout if
172
+ # needed; the swap partition is appended to the layout if enabled (small of
173
+ # suspend).
174
+ #
175
+ # Otherwise, the partition layout is defined as follow:
176
+ #
177
+ # partitionLayout:
178
+ # - name: "rootfs"
179
+ # type: "4f68bce3-e8cd-4db1-96e7-fbcaf984b709"
180
+ # filesystem: "ext4"
181
+ # mountPoint: "/"
182
+ # size: 20%
183
+ # minSize: 500M
184
+ # maxSize: 10G
185
+ # attributes: 0xffff000000000003
186
+ # - name: "home"
187
+ # type = "933ac7e1-2eb4-4f13-b844-0e14e2aef915"
188
+ # filesystem: "ext4"
189
+ # mountPoint: "/home"
190
+ # size: 3G
191
+ # minSize: 1.5G
192
+ # features:
193
+ # 64bit: false
194
+ # casefold: true
195
+ # - name: "data"
196
+ # filesystem: "fat32"
197
+ # mountPoint: "/data"
198
+ # features:
199
+ # sector-size: 4096
200
+ # sectors-per-cluster: 128
201
+ # size: 100%
202
+ #
203
+ # There can be any number of partitions, each entry having the following attributes:
204
+ # - name: filesystem label
205
+ # and
206
+ # partition name (gpt only; since KPMCore 4.2.0)
207
+ # - uuid: partition uuid (optional parameter; gpt only; requires KPMCore >= 4.2.0)
208
+ # - type: partition type (optional parameter; gpt only; requires KPMCore >= 4.2.0)
209
+ # - attributes: partition attributes (optional parameter; gpt only; requires KPMCore >= 4.2.0)
210
+ # - filesystem: filesystem type (optional parameter; fs not created if "unformatted" or unset)
211
+ # - mountPoint: partition mount point (optional parameter; not mounted if unset)
212
+ # - size: partition size in bytes (append 'K', 'M' or 'G' for KiB, MiB or GiB)
213
+ # or
214
+ # % of the available drive space if a '%' is appended to the value
215
+ # - minSize: minimum partition size (optional parameter)
216
+ # - maxSize: maximum partition size (optional parameter)
217
+ # - features: filesystem features (optional parameter; requires KPMCore >= 4.2.0)
218
+ # name: boolean or integer or string
219
+
220
+ # Checking for available storage
221
+ #
222
+ # This overlaps with the setting of the same name in the welcome module's
223
+ # requirements section. If nothing is set by the welcome module, this
224
+ # value is used instead. It is still a problem if there is no required
225
+ # size set at all, and the replace and resize options will not be offered
226
+ # if no required size is set.
227
+ #
228
+ # The value is in Gibibytes (GiB).
229
+ #
230
+ # BIG FAT WARNING: except for OEM-phase-0 use, you should be using
231
+ # the welcome module, **and** configure this value in
232
+ # `welcome.conf`, not here.
233
+ # requiredStorage: 3.5