-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathdrbl.spec
9024 lines (6641 loc) · 467 KB
/
drbl.spec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Summary: DRBL (Diskless Remote Boot in Linux) package.
Name: drbl
Version: 5.3.17
Release: drbl1
License: GPL
Group: Development/DRBL
Source0: drbl-%{version}.tar.xz
URL: http://drbl.org
BuildArch: noarch
BuildRoot: %{_tmppath}/%{name}-%{version}-root
Requires: perl, bash, dialog
Obsoletes: drbl-gdm, drbl-script, drbl-setup, rh-netinstall, mdk-netinstall, woody-netinstall, memtest86, knoppix-terminalserver
%if 0%{?fedora} >= 37
BuildRequires: make
%endif
%description
DRBL (Diskless Remote Boot in Linux).
Description:
DRBL provides a diskless or systemless environment for client machines. It works on Debian, Ubuntu, Mandriva, Red Hat, Fedora, CentOS and OpenSuSE. DRBL uses distributed hardware resources and makes it possible for clients to fully access local hardware. It also includes Clonezilla, a partition and disk cloning utility similar to Symantec Ghost(TM) or True Image(TM).
For more details, check http://drbl.org.
%prep
%setup -q -n drbl-%{version}
%build
make all
%install
[ -d "$RPM_BUILD_ROOT" ] && rm -rf $RPM_BUILD_ROOT
make install DESTDIR=$RPM_BUILD_ROOT/
%clean
[ -d "$RPM_BUILD_ROOT" ] && rm -rf $RPM_BUILD_ROOT
%post
%preun
%files
%defattr(-,root,root)
/usr/sbin/*
/usr/bin/*
/usr/share/drbl/*
/etc/drbl/*
/usr/share/gdm/themes/drbl-gdm/*
%changelog
* Sun Dec 22 2024 Steven Shiau <steven _at_ clonezilla org> 5.3.17-drbl1
* Add package jc in the live system packages list.
Thanks to don Rumata for suggesting this.
Ref: https://github.com/stevenshiau/clonezilla/issues/130
* Fri Dec 15 2024 Steven Shiau <steven _at_ clonezilla org> 5.3.16-drbl1
* Bug fixed: wrong format for packages list for live system.
* Fri Dec 15 2024 Steven Shiau <steven _at_ clonezilla org> 5.3.15-drbl1
* Bug fixed: wrong format for packages list for live system.
* Fri Dec 15 2024 Steven Shiau <steven _at_ clonezilla org> 5.3.14-drbl1
* Update the live packages list for live system. Add hashrat package.
* Sun Dec 01 2024 Steven Shiau <steven _at_ clonezilla org> 5.3.13-drbl1
* Restored package network-manager in Clonezilla live packages list
since ppp does not include it.
* Fri Nov 29 2024 Steven Shiau <steven _at_ clonezilla org> 5.3.12-drbl1
* The option "-r" as restoring/cloning is off by default. When "-k1" is
used, option "-r" will be used, too.
* Tue Nov 26 2024 Steven Shiau <steven _at_ clonezilla org> 5.3.11-drbl1
* Replaced network-manager with ppp in packages list of Clonezilla live.
* Sat Nov 02 2024 Steven Shiau <steven _at_ clonezilla org> 5.3.10-drbl1
* drbl.conf: Update live packages list for amd64/arm64/riscv64.
* Thu Oct 31 2024 Steven Shiau <steven _at_ clonezilla org> 5.3.9-drbl1
* drbl.conf: do not put packages bicon and jfbterm in live system for
general purpose. It does not exist for riscv64.
* Thu Oct 31 2024 Steven Shiau <steven _at_ clonezilla org> 5.3.8-drbl1
* drbl.conf: do not put kexec-tools in live system for general purpose. It
does not exist for riscv64.
* Sat Sep 29 2024 Steven Shiau <steven _at_ clonezilla org> 5.3.7-drbl1
* Update the language files about msg_mount_ramdisk.
* Wed Sep 25 2024 Steven Shiau <steven _at_ clonezilla org> 5.3.6-drbl1
* Removed wireless-tools from packages list for live system
in drbl.conf.
Package iw should have same function, which is already included
in live system.
Ref: https://bugs.launchpad.net/ubuntu/+source/wireless-tools/+bug/2075850
* Sat Sep 14 2024 Steven Shiau <steven _at_ clonezilla org> 5.3.5-drbl1
* drblpush: service enabled by systemd does not need to be enabled by
update-rc.d.
* Add support for DBN 12.5-12.7 and Ubuntu 22.04/24.04.
* Thu Sep 05 2024 Steven Shiau <steven _at_ clonezilla org> 5.3.4-drbl1
* drbl.conf: reiser4progs was removed from the packages list.
* Tue Aug 06 2024 Steven Shiau <steven _at_ clonezilla org> 5.3.3-drbl1
* Updated language files by adding "%" in msg_you_must_input_legal_filename.
* Mon Jun 24 2024 Steven Shiau <steven _at_ clonezilla org> 5.3.2-drbl1
* Removed package cpufrequtils from lists of live system.
It's not in the Debian repo anymore.
* Wed Jun 12 2024 Steven Shiau <steven _at_ clonezilla org> 5.3.1-drbl1
* dcs: enabled only when opentracker & ezio exist on the system.
* Mon Jun 10 2024 Steven Shiau <steven _at_ clonezilla org> 5.2.38-drbl1
* drbl.conf: add cryptsetup in PKG_TO_QUERY.
* Merge pull request #31 from iamzhaohongxin/patch-1. Update zh_CN.UTF-8
* Language file ca_ES was updated. Thanks to René Mérou.
* Language file de_DE was updated. Thanks to Savi G and Michael Vinzenz.
* Removed duplicated variables msg_ocs_param_ps & msg_ocs_onthefly_param_ps
in language file en_US. Thanks to Станислав Большаков.
* Mon Apr 29 2024 Steven Shiau <steven _at_ clonezilla org> 5.2.37-drbl1
* Removed thin-provisioning-tools from packages list of clonezilla live
due to it breaks the dependences.
* Thu Apr 18 2024 Steven Shiau <steven _at_ clonezilla org> 5.2.36-drbl1
* Remove package deborphan in live packages list.
* Tue Apr 16 2024 Steven Shiau <steven _at_ clonezilla org> 5.2.35-drbl1
* Added yq in the live packages list.
* fix: improved get-nic-devs excludes device name, so that the device wlo1,
for example, should be kept.
* Sun Apr 07 2024 Steven Shiau <steven _at_ clonezilla org> 5.2.34-drbl1
* Add powermgmt-base in packages list of ocs live.
* drbl.conf: Use lz4 instead of liblz4-tool in packages list.
* Wed Mar 13 2024 Steven Shiau <steven _at_ clonezilla org> 5.2.33-drbl1
* drbl-functions: add support mmdebstrap checking.
* make-rpm.sh & make-deb.sh: give exit code if script finishes in the end.
* Tue Mar 12 2024 Steven Shiau <steven _at_ clonezilla org> 5.2.32-drbl1
* Allow mmdebstrap to replace debootstrap in function
create_live_required_debian_based_prompt of drbl-functions.
* Thu Feb 22 2024 Steven Shiau <steven _at_ clonezilla org> 5.2.31-drbl1
* Remove package dmraid from the list of gparted live in drbl.conf.
* Sat Jan 13 2024 Steven Shiau <steven _at_ clonezilla org> 5.2.30-drbl1
* drblsrv: Add an option to remove gnome-initial-setup for Debian.
The corresponding language files were updated, too.
* Tue Jan 09 2024 Steven Shiau <steven _at_ clonezilla org> 5.2.29-drbl1
* Language file hu_HU was updated. Thanks to Greg.
* Thu Dec 14 2023 Steven Shiau <steven _at_ clonezilla org> 5.2.28-drbl1
* A better mechanism learned from newer Debian to load unifont in Debian.
* Mon Dec 04 2023 Steven Shiau <steven _at_ clonezilla org> 5.2.27-drbl1
* drbl.conf: removed dmraid from required packages list of Clonezilla live.
It does not exist in Debian Sid anymore.
* Thu Nov 02 2023 Steven Shiau <steven _at_ clonezilla org> 5.2.26-drbl1
* Language file ca_ES was updated. Thanks to René Mérou.
* Sat Oct 21 2023 Steven Shiau <steven _at_ clonezilla org> 5.2.25-drbl1
* Language file ja_JP was updated. Thanks to Akira Yoshiyama.
* Tue Oct 17 2023 Steven Shiau <steven _at_ clonezilla org> 5.2.24-drbl1
* Language file es_ES was updated. Thanks to Juan Ramón Martínez.
* Language file fr_FR was updated. Thanks to Jean-Francois Nifenecker.
* Language files el_GR.UTF-8 & pl_PL were updated. Thanks to
Stamatis Mavrogiorgis and Kris.
* Language files de_DE & sk_SK were updated. Thanks to Michael Vinzenz &
Ondrej Dzivy Balucha.
* Language file tr_TR was updated. Thanks to Volkan Gezer.
* Thu Oct 05 2023 Steven Shiau <steven _at_ clonezilla org> 5.2.23-drbl1
* Add option "-edio" in the TUI wizard.
* Update language files about direct IO descriptions.
* Fri Aug 18 2023 Steven Shiau <steven _at_ clonezilla org> 5.2.22-drbl1
* Since grub commands "linux/initrd" works for uEFI boot,
no matter it's secure boot or not. Just use them,
not using linuxefi/initrdefi.
* Sat Jul 29 2023 Steven Shiau <steven _at_ clonezilla org> 5.2.21-drbl1
* gen-grub-efi-nb-menu: failed to write menu for memtest86+.
* Fri Jul 28 2023 Steven Shiau <steven _at_ clonezilla org> 5.2.20-drbl1
* Some more cosmetic rewritting. Less verbose outputs.
* Thu Jul 27 2023 Steven Shiau <steven _at_ clonezilla org> 5.2.19-drbl1
* drbl.conf: set netinstall for Debian as bookworm.
* Fri Jul 21 2023 Steven Shiau <steven _at_ clonezilla org> 5.2.18-drbl1
* Add acpitool in live packages list.
* Default to use -z9p in the expert mode as saving, too.
* Thu Jul 13 2023 Steven Shiau <steven _at_ clonezilla org> 5.2.17-drbl1
* Include vim instead of vim-tiny in the live system.
* Default to use zstd (-z9p) in TUI as saving an img.
* Thu Jul 06 2023 Steven Shiau <steven _at_ clonezilla org> 5.2.16-drbl1
* Package mlocate was replaced by plocate in the
live system packages list.
* Wed Jun 28 2023 Steven Shiau <steven _at_ clonezilla org> 5.2.15-drbl1
* Add package ntfs2btrfs in Clonezilla live packages list.
* Thu Jun 08 2023 Steven Shiau <steven _at_ clonezilla org> 5.2.14-drbl1
* drbl-functions: screen_not_blank honors the variable ocs_screen_blank.
When ocs_screen_blank="no" is assigned in the boot parameters,
it won't run.
* Thu Jun 08 2023 Steven Shiau <steven _at_ clonezilla org> 5.2.13-drbl1
* Add packages zfsutils-linux in the packages list of Clonezilla live.
* Wed May 18 2023 Steven Shiau <steven _at_ clonezilla org> 5.2.12-drbl1
* drbl-prepare-memtest: Adopt new file name for memtest86+ia32.*.
It was emtest86+x32.*.
* Sun May 07 2023 Steven Shiau <steven _at_ clonezilla org> 5.2.11-drbl1
* Allow choosing NIC in lite server mode when multiple network cards exist.
Thanks to Date Huang and Nate Carr for asking this.
Ref: https://sourceforge.net/p/clonezilla/discussion/Open_discussion/thread/6fedbfd6c3
* Tue Apr 18 2023 Steven Shiau <steven _at_ clonezilla org> 5.2.10-drbl2
* Update drbl.spec for better with rpm.
Ref: https://sourceforge.net/p/clonezilla/discussion/Open_discussion/thread/c870bcd449
* Tue Apr 18 2023 Steven Shiau <steven _at_ clonezilla org> 5.2.10-drbl1
* makeboot.sh: make it run only in x86 arch.
* Tue Apr 11 2023 Steven Shiau <steven _at_ clonezilla org> 5.2.9-drbl1
* Bug fixed: missed "\" for the next line in drbl-functions introduced in
https://github.com/stevenshiau/drbl/pull/27/commits
* Mon Mar 27 2023 Steven Shiau <steven _at_ clonezilla org> 5.2.8-drbl1
* drbl.conf: add dvtm & dtach in live packages list.
* Merge pull request #27 from kgeorgiy/master
Bug: Invalid dialog options for '-p' option
* Sat Feb 25 2023 Steven Shiau <steven _at_ clonezilla org> 5.2.7-drbl1
* Bug fixed: drbl-sl should not modify grub's "--id", do not append
${SL_VER}. Just leave it as clonezilla-live-client. Program
hide_reveal_grub_efi_ent needs it precisely.
Thanks to Date Huang for reporting this issue.
* Wed Jan 25 2023 Steven Shiau <steven _at_ clonezilla org> 5.2.6-drbl1
* Show option "-j2" in the restoreparts menu, default off.
* Tue Jan 24 2023 Steven Shiau <steven _at_ clonezilla org> 5.2.5-drbl1
* drbl-sl: show live version in grub menu.
* Tue Jan 24 2023 Steven Shiau <steven _at_ clonezilla org> 5.2.4-drbl1
* Update language files about LUKS.
* Sun Jan 08 2023 Steven Shiau <steven _at_ clonezilla org> 5.2.3-drbl1
* drbl-functions: add "--powersave off" in setterm of the function
screen_not_blank.
* Fri Dec 30 2022 Steven Shiau <steven _at_ clonezilla org> 5.2.2-drbl1
* dcs: swtich to detect opentracker, not ocs-bttrack anymore.
* Sat Dec 10 2022 Steven Shiau <steven _at_ clonezilla org> 5.2.1-drbl1
* drbl-sl: make it work with memtest86+ v6 existing on the system.
Avoid the wrong assignment for Linux kernel.
* Sat Nov 26 2022 Steven Shiau <steven _at_ clonezilla org> 5.2.0-drbl1
* Support memtest86+ v6 naming & mechanism.
Memtest86+ v6.00 now supports legacy BIOS and uEFI booting.
Both x86 and x86-64 are supported, too. In DRBl/Clonezilla
we use shorter file name so that it works in FAT file system:
memtest86+.bin -> mt86+x32.mbr
memtest86+x32.bin -> mt86+x32.mbr
memtest86+x32.efi -> mt86+x32.efi
memtest86+x64.bin -> mt86+x64.mbr
memtest86+x64.efi -> mt86+x64.efi
* Fri Oct 28 2022 Steven Shiau <steven _at_ clonezilla org> 5.1.17-drbl1
* Use OWNER:GROUP, not OWNER.GROUP in chown command.
* Sun Oct 23 2022 Steven Shiau <steven _at_ clonezilla org> 5.1.16-drbl1
* Language file sk_SK and ja_JP were updated. Thanks to Ondrej Dzivý Balucha
and Akira Yoshiyama.
* Thu Oct 20 2022 Steven Shiau <steven _at_ clonezilla org> 5.1.15-drbl1
* Language file tr_TR was updated. Thanks to Volkan Gezer.
* Tue Oct 18 2022 Steven Shiau <steven _at_ clonezilla org> 5.1.14-drbl1
* Language files de_DE, el_GR.UTF-8, es_ES, fr_FR and pl_PL were updated.
Thanks to Michael Vinzenz, Stamatis Mavrogiorgis, Juan Ramón Martínez,
Jean-Francois Nifenecker and Kris.
* Tue Sep 27 2022 Steven Shiau <steven _at_ clonezilla org> 5.1.13-drbl1
* Update language files about -k0/-k1 in beginner mode of ocs-onthefly.
* Mon Sep 12 2022 Steven Shiau <steven _at_ clonezilla org> 5.1.12-drbl1
* Show option "-k0" and "-k1" in the restoring, beginner mode.
* The command egrep was replaced by "grep -E" to avoid grep >= 3.8
showing warnings.
* Sun Jul 24 2022 Steven Shiau <steven _at_ clonezilla org> 5.1.11-drbl1
* check_drbl_setup_space: more precise calculation based on the variable
varlib_NOT_2_be_copied_2_each_client from drbl.conf.
* Mon Jul 04 2022 Steven Shiau <steven _at_ clonezilla org> 5.1.10-drbl1
* Include package ufw in live system.
* Add option "-sfs" in the dialog menu. The corresponding language files
were updated, too.
Ref: https://github.com/stevenshiau/clonezilla/issues/71
* Sun Jun 12 2022 Steven Shiau <steven _at_ clonezilla org> 5.1.9-drbl1
* Add duf, duff and dfc in the live packages list.
* Thu May 26 2022 Steven Shiau <steven _at_ clonezilla org> 5.1.8-drbl1
* Update set_drbl_ocs_extra_param of drbl-functions, more reasonable.
The corresponding changes to drbl-client-switch was done, too.
* Thu May 26 2022 Steven Shiau <steven _at_ clonezilla org> 5.1.7-drbl1
* Add the missing ngrep back in the packages list.
* Sun May 22 2022 Steven Shiau <steven _at_ clonezilla org> 5.1.6-drbl1
* Merge pull request #23 from yosshy/japanese
Update Japanese translation. Thanks to Akira Yoshiyama.
* Accidentally removed shc & uml-utilities in the packages list.
Add them back.
* Sun May 22 2022 Steven Shiau <steven _at_ clonezilla org> 5.1.5-drbl1
* Update netinstall version for Fedora and OpenSUSE.
* Sat May 21 2022 Steven Shiau <steven _at_ clonezilla org> 5.1.4-drbl1
* Language files pl_PL and sk_SK were updated. Thanks to kris and
Ondrej Dzivý Balucha.
* Add ngrep in the packages list.
* Tue May 17 2022 Steven Shiau <steven _at_ clonezilla org> 5.1.3-drbl1
* Language file de_DE were updated. Thanks to Michael Vinzenz.
* Add uml-utilities in live packages list.
* Thu May 12 2022 Steven Shiau <steven _at_ clonezilla org> 5.1.2-drbl1
* Update language files es_ES, hu_HU & fr_FR.
Thanks to Juan Ramón Martínez, Greg and Jean-Francois Nifenecker.
* Tue May 10 2022 Steven Shiau <steven _at_ clonezilla org> 5.1.1-drbl1
* set_drbl_ocs_extra_param: OCS_PARAM_TMP is a global variable.
No need to pass to function.
* Tue May 10 2022 Steven Shiau <steven _at_ clonezilla org> 5.1.0-drbl1
* drbl-functions: add a function about using a dialog to ask if
opening LUKS device.
* Update language files about LUKS in TUI.
* Mon May 02 2022 Steven Shiau <steven _at_ clonezilla org> 5.0.9-drbl1
* Updated language files about opening LUKS or not.
* Fri Apr 22 2022 Steven Shiau <steven _at_ clonezilla org> 5.0.8-drbl1
* drbl-get-dnsserver: support using resolvctl to get DNS setting.
This makes it work for Ubuntu 22.04.
* Mon Apr 18 2022 Steven Shiau <steven _at_ clonezilla org> 5.0.7-drbl1
* Updated language file ca_ES. Thanks to René Mérou.
* Tue Mar 29 2022 Steven Shiau <steven _at_ clonezilla org> 5.0.6-drbl1
* To make it consistent. Put "-k0" even it's in beginner mode for
restoredisk in the dialog menu.
* Sun Mar 27 2022 Steven Shiau <steven _at_ clonezilla org> 5.0.5-drbl1
* Check option "exit" earlier in k-related options menu of dialog.
* Sun Mar 27 2022 Steven Shiau <steven _at_ clonezilla org> 5.0.4-drbl1
* Add the dummy option "-k0" for the dialog of creating partition
in ocs-sr and ocs-onthefly. It's the same as default action.
Just easier for us to explain.
* Sun Mar 13 2022 Steven Shiau <steven _at_ clonezilla org> 5.0.3-drbl1
* Remove s3ql from the packages list of Clonezilla live.
* Sat Mar 12 2022 Steven Shiau <steven _at_ clonezilla org> 5.0.2-drbl1
* Removed extra unnecessary Alias line in the following files:
arm-wol.service, drbl-clients-nat.service, drblthincli.service, mkswapfile.service
* Mon Feb 14 2022 Steven Shiau <steven _at_ clonezilla org> 5.0.1-drbl1
* Add memtester and edac-utils in the packages list for Clonezilla live.
* Thu Feb 03 2022 Steven Shiau <steven _at_ clonezilla org> 5.0.0-drbl1
* Update language files for the support of LUKS.
* Add dtrx in the packages list for Clonezilla live.
* Sync the version number with Clonezilla 5.
* Tue Jan 18 2022 Steven Shiau <steven _at_ clonezilla org> 4.6.7-drbl1
* Program pixz was replaced by xz since using "-T 0" works the same.
Hence the description was updated.
* Sun Jan 09 2022 Steven Shiau <steven _at_ clonezilla org> 4.6.6-drbl1
* Add wavemon in the packages list.
* Add language files el_GR.UTF-8. Thanks to Stamatis Mavrogiorgis.
* Add Greek in the languages list.
* Thu Dec 30 2021 Steven Shiau <steven _at_ clonezilla org> 4.6.5-drbl1
* Language file hu_HU updated. Thanks to Greg.
* Update netinstall for fedora as 35.
* Mon Dec 27 2021 Steven Shiau <steven _at_ clonezilla org> 4.6.4-drbl1
* Language files ca_ES, de_DE, es_ES, fr_FR, ja_JP, pl_PL and
sk_SK were updated. Thanks to René Mérou, Michael Vinzenz,
Juan Ramón Martínez, Akira Yoshiyama, Jean-Francois Nifenecker,
Kris, and Ondrej Dzivý Balucha.
* Sun Dec 12 2021 Steven Shiau <steven _at_ clonezilla org> 4.6.3-drbl1
* put_syslinux_makeboot_for_usb_flash of drbl-functions:
revert to use assigned version of syslinux.
* Mon Dec 06 2021 Steven Shiau <steven _at_ clonezilla org> 4.6.2-drbl1
* Update language files.
* Sun Dec 05 2021 Steven Shiau <steven _at_ clonezilla org> 4.6.1-drbl1
* Update language files about image volume size (msg_set_image_volume_size).
* drbl.conf: Update netinstall dor Debian and Ubuntu.
* Sun Nov 21 2021 Steven Shiau <steven _at_ clonezilla org> 4.5.16-drbl1
* boot-local-efi.cfg: Improved to detect hd1, hd2...
Thanks to Sung Cho for reporting this issue.
Ref: https://sourceforge.net/p/clonezilla/bugs/371/
* Tue Nov 16 2021 Steven Shiau <steven _at_ clonezilla org> 4.5.15-drbl1
* Language files of sk_SK were updated. Thanks to Ondrej Dzivy Balucha.
* Sun Nov 14 2021 Steven Shiau <steven _at_ clonezilla org> 4.5.14-drbl1
* Japanese language files were updated.
Thanks to Akira Yoshiyama.
* Wed Nov 10 2021 Steven Shiau <steven _at_ clonezilla org> 4.5.13-drbl1
* Language files de_DE, hu_HU, es_ES, fr_FR, pl_PL, tr_TR, were updated.
Thanks to Michael Vinzenz, Greg., Jean-Francois Nifenecker,
Juan Ramón Martínez, kris, and Volkan Gezer.
* Wed Nov 03 2021 Steven Shiau <steven _at_ clonezilla org> 4.5.12-drbl1
* Bug fixed: option "-j2" was missing in recovery-iso-zip mode.
Thanks to Ek Han Heng for reporting this issue.
Ref:
https://sourceforge.net/p/clonezilla/discussion/Clonezilla_live/thread/9ffa31f838/
* Wed Oct 27 2021 Steven Shiau <steven _at_ clonezilla org> 4.5.11-drbl1
* Language files es_ES were updated. Thanks to Juan Ramón Martínez.
* Tue Oct 26 2021 Steven Shiau <steven _at_ clonezilla org> 4.5.10-drbl1
* Update language files about wired/wireless NIC.
* Add packages openfortivpn & openconnect in the packages list of
Clonezilla live.
* Mon Oct 25 2021 Steven Shiau <steven _at_ clonezilla org> 4.5.9-drbl1
* Update language files about wifi device.
* Thu Oct 21 2021 Steven Shiau <steven _at_ clonezilla org> 4.5.8-drbl1
* Clean unsupported ones in drbl/setup/files/
* drblpush: modify the way to get most_related_ver_d, and update some
comments.
* Tue Oct 19 2021 Steven Shiau <steven _at_ clonezilla org> 4.5.7-drbl1
* Clean unsupported DBN9.0 files. Update ocsd-rescue.service for DBN-TU.
* Tue Oct 19 2021 Steven Shiau <steven _at_ clonezilla org> 4.5.6-drbl1
* Bug fixed: "-z9p" was not shown in the save menu for beginner mode.
* Sun Oct 03 2021 Steven Shiau <steven _at_ clonezilla org> 4.5.5-drbl1
* Enable the option -z9p for Clonezilla SE beginner mode.
* Sun Oct 03 2021 Steven Shiau <steven _at_ clonezilla org> 4.5.4-drbl1
* Replace "which" with "command -v" in the script because "which"
command is deprecated.
* Mon Sep 27 2021 Steven Shiau <steven _at_ clonezilla org> 4.5.3-drbl1
* deb-preconf-drbl was renamed as drbl-deb-preconf.
* Bug fixed:
drbl-deb-preconf should not be run again in drblsrv-offline. It only
runs once at drblsrv.
* Sun Sep 26 2021 Steven Shiau <steven _at_ clonezilla org> 4.5.2-drbl1
* drbl-functions: add function check_url, and a better way to download
earlier version of syslinux when the specified version does not
exist at syslinux repository. Do not assign the versions of
syslinux-related pkgs in function put_syslinux_makeboot_for_usb_flash.
* Mon Sep 13 2021 Steven Shiau <steven _at_ clonezilla org> 4.5.1-drbl1
* Suppress the error message about "setterm -blank 0".
* Sun Aug 29 2021 Steven Shiau <steven _at_ clonezilla org> 4.5.0-drbl1
* Sync the version number with that of Clonezilla.
* Sat Aug 28 2021 Steven Shiau <steven _at_ clonezilla org> 4.4.2-drbl1
* Update language files about reserved image names.
* ocsd-rescue.service: do not use .include for Debian 10 since
systemd .include directives are deprecated. Same as that for Debian 11.
* Fri Aug 27 2021 Steven Shiau <steven _at_ clonezilla org> 4.4.1-drbl1
* drblsrv: /etc/default/nis is not created for newer nis package
(version >= 4, from Debian 11 or Ubuntu 21.04) by using the option "-s"
of deb-preconf-drbl.
* deb-preconf-drbl: add option "-s" to set /etc/default/nis.
By default /etc/default/nis is not created.
* Thu Aug 26 2021 Steven Shiau <steven _at_ clonezilla org> 4.3.16-drbl1
* Add support OCS for Debian 11 (Bullseye).
* Improve makeboot64.bat: checking FAT file system
Thanks to Geert-Jan Uijtdewilligen.
Ref:
https://sourceforge.net/p/clonezilla/support-requests/158/
* Thu Jul 22 2021 Steven Shiau <steven _at_ clonezilla org> 4.3.15-drbl1
* Update msg_press_space_to_mark_selection in the language files.
* Mon Jul 12 2021 Steven Shiau <steven _at_ clonezilla org> 4.3.14-drbl1
* Add vifm, ytree, and lfm in the packages list of Clonezilla/DRBL live.
* Fri Jul 09 2021 Steven Shiau <steven _at_ clonezilla org> 4.3.13-drbl1
* drbl.conf: add packages ncdu & ncdt in the packages list
of clonezilla/drbl live.
* Mon Jul 05 2021 Steven Shiau <steven _at_ clonezilla org> 4.3.12-drbl1
* The option "-j2" (clone_hidden_data) should be only enabled
by default only when it's restoredisk, not restoreparts.
Ref: https://sourceforge.net/p/clonezilla/bugs/361/
* Mon Jun 21 2021 Steven Shiau <steven _at_ clonezilla org> 4.3.11-drbl1
* Add function clean_raid_metadata_in_disk in ocs-functions.
Function clean_filesystem_header_in_partition is renamed as
clean_filesystem_header_in_dev.
* ocs-clean-part-fs is renamed as ocs-clean-disk-part-fs
* debian/control: Depends on dmraid, wipefs
* Sun May 16 2021 Steven Shiau <steven _at_ clonezilla org> 4.3.10-drbl1
* Add support for Ubuntu 21.04.
* Sun Apr 25 2021 Steven Shiau <steven _at_ clonezilla org> 4.3.9-drbl1
* drbl-get-dnsserver: improved for multiple NIC configured with DNS,
nameserver_sys can be like: '8.8.8.8 DNS Domain: ~. 8.8.8.8 DNS Domain: ~.'
Hence we only put correct IPv4 address.
Ref: https://groups.google.com/g/drbl/c/ebgoMdLIo9c
* Mon Apr 05 2021 Steven Shiau <steven _at_ clonezilla org> 4.3.8-drbl1
* Add b2sum in gen_CDG_checksums of drbl-functions.
* Sun Mar 21 2021 Steven Shiau <steven _at_ clonezilla org> 4.3.7-drbl1
* Add dir links for CentOS 7.7-7.9: CO7.7.1908, CO7.8.2003, CO7.9.2009.
* Tue Mar 16 2021 Steven Shiau <steven _at_ clonezilla org> 4.3.6-drbl1
* The option -sspt of ocs-sr was changed to -scpt so change it in TUI menu
in drbl-functions and language files.
* Update language files about types of block device.
* Tue Mar 09 2021 Steven Shiau <steven _at_ clonezilla org> 4.3.5-drbl1
* Add b2sum support for image chcksum and files in the file system.
* Sun Mar 07 2021 Steven Shiau <steven _at_ clonezilla org> 4.3.4-drbl1
* A typo was fixed:
msg_continue_with_weired_partition_table ->
msg_continue_with_weird_partition_table.
* Sun Mar 07 2021 Steven Shiau <steven _at_ clonezilla org> 4.3.3-drbl1
* Add -ssnf (--skip-set-netboot-first) in the dcs menu so that
the variable efi_netboot_1st_in_nvram in drbl-ocs.conf can be
changed in the menu when running dcs.
* Add -sspt (--skip-save-part-table) in the menu for ocs-sr and drbl-ocs.
* Tue Mar 02 2021 Steven Shiau <steven _at_ clonezilla org> 4.3.2-drbl1
* Include jq in Clonezilla/DRBL live:
Thanks to Rumata Estorskiy for asking this:
https://gitlab.com/stevenshiau/clonezilla/-/issues/57
* Sat Feb 20 2021 Steven Shiau <steven _at_ clonezilla org> 4.3.1-drbl1
* Update the Clonezilla live arch in drblpush:
Debian-based: i686, i686-pae, amd64
Ubuntu-based: amd64
* Update language files about CPU arch of clonezilla live in drblpush.
* drbl-all-service: remove update-rc.d, use insserv only for Debian
system.
* Do not remove username=* in filter_cl_gp_boot_param of drbl-functions.
* Wed Feb 17 2021 Steven Shiau <steven _at_ clonezilla org> 4.2.18-drbl1
* zh_CN.UTF-8: Thanks Zhiqiang Zhang for updating.
* Tue Feb 16 2021 Steven Shiau <steven _at_ clonezilla org> 4.2.17-drbl1
* Comment "IPAPPEND 1" in generate-pxe-menu. It fails the live-boot
when pxebooting a clonezilla/drbl live client.
* Wed Jan 20 2021 Steven Shiau <steven _at_ clonezilla org> 4.2.16-drbl1
* Update language files about fsck repository file system.
* Tue Jan 19 2021 Steven Shiau <steven _at_ clonezilla org> 4.2.15-drbl1
* drbl.conf: use exfatprogs instead of exfat-utils in the packages
list of Clonezilla/DRBL live. Add it to GParted live, too.
* Mon Jan 18 2021 Steven Shiau <steven _at_ clonezilla org> 4.2.14-drbl1
* Fix a typo in the language file zh_TW.UTF-8.
* Mon Jan 18 2021 Steven Shiau <steven _at_ clonezilla org> 4.2.13-drbl1
* Update language files about fsck repository file system.
* Tue Jan 12 2021 Steven Shiau <steven _at_ clonezilla org> 4.2.12-drbl1
* Bug fixed: drbl-sl failed to support GParted live due to the default
boot parameters are using aufs, not overlay. In addition, the
function filter_cl_gp_boot_param in drbl-function should
support the format of $linux_cmd line in grub.cfg.
* Fri Jan 08 2021 Steven Shiau <steven _at_ clonezilla org> 4.2.11-drbl1
* Add virt-what in live packages list.
* Fri Jan 01 2021 Steven Shiau <steven _at_ clonezilla org> 4.2.10-drbl1
* Update language files about samba protocol.
* Mon Dec 28 2020 Steven Shiau <steven _at_ clonezilla org> 4.2.9-drbl1
* Disable zz-dhclient in the initramfs on DRBL server.
Ref:
https://sourceforge.net/p/drbl/discussion/DRBL_for_Debian/thread/791b123348/
* Sat Dec 26 2020 Steven Shiau <steven _at_ clonezilla org> 4.2.8-drbl1
* Improve parse_cmdline_option to allow multiple "=" in a line, e.g.,
ocs_live_run="ocs-sr -q2 -j2 -z1p -p poweroff savedisk autoname-wpfx=fox serialno=xyz
Thanks to Christopher S for reporting this.
Ref: https://sourceforge.net/p/clonezilla/support-requests/144/
* Fri Dec 25 2020 Steven Shiau <steven _at_ clonezilla org> 4.2.7-drbl1
* Add glances in the packages list of drbl/clonezilla live.
* Thu Dec 10 2020 Steven Shiau <steven _at_ clonezilla org> 4.2.6-drbl1
* Language file es_ES was updated. Thanks to Juan Ramón Martínez.
* Tue Dec 08 2020 Steven Shiau <steven _at_ clonezilla org> 4.2.5-drbl1
* Add more packages in DRBL/Clonezilla live packages list:
vnstat iperf3
* Tue Dec 08 2020 Steven Shiau <steven _at_ clonezilla org> 4.2.4-drbl1
* Add more packages in DRBL/Clonezilla live packages list:
ipv6calc atop usbtop bashtop python3-psutil
* Sun Nov 29 2020 Steven Shiau <steven _at_ clonezilla org> 4.2.3-drbl1
* Run grep and show 5 lines afterwards only in
get_latest_pkg_in_drbl_repository of drbl-functions.
* Sun Nov 29 2020 Steven Shiau <steven _at_ clonezilla org> 4.2.2-drbl1
* Add package f3 in Clonezilla/DRBL live.
* Sun Nov 22 2020 Steven Shiau <steven _at_ clonezilla org> 4.2.1-drbl1
* Remove hfsprogs from the default packages list in
DRBL/Clonezilla/GParted live since it's now in Debian non-free section.
* Wed Nov 18 2020 Steven Shiau <steven _at_ clonezilla org> 4.2.0-drbl1
* mkswapfile: Use new name ocs-get-dev-info
* Sync the version number with Clonezilla.
* Mon Nov 02 2020 Steven Shiau <steven _at_ clonezilla org> 4.1.5-drbl1
* Add scsitools blktool safecopy gpart to the packages list
of clonezilla live.
* Thu Oct 29 2020 Steven Shiau <steven _at_ clonezilla org> 4.1.4-drbl1
* Update opensuse netinstall as 15.2 in drbl.conf.
* Sun Oct 25 2020 Steven Shiau <steven _at_ clonezilla org> 4.1.3-drbl1
* Bug fixed: ocsd-*.service was not corrected copied by drblpush.
* Sat Oct 24 2020 Steven Shiau <steven _at_ clonezilla org> 4.1.2-drbl1
* Update ocsd-rescue.service for Ubuntu 20.10 since it requires
ExecStart. The original inclusion from rescue.service is not working
anymore.
* Sat Oct 10 2020 Steven Shiau <steven _at_ clonezilla org> 4.1.1-drbl1
* ocs-onthefly: Update locales about net pipe program netcat and nuttcp.
* Fri Oct 09 2020 Steven Shiau <steven _at_ clonezilla org> 4.1.0-drbl1
* Sync the option "-p" of ocs-onthefly with ocs-sr, it was "-pa" for
ocs-onthefly.
In addition, "-pa cmd" is now "-p true" when shown in dialog.
* Update language files for updated ocs-onthefly:
1. Default to use nuttcp.
2. Use ocs-sr to save and restore pseudo image.
* Tue Sep 29 2020 Steven Shiau <steven _at_ clonezilla org> 4.0.2-drbl1
* Update drbl.conf:
Use package name netcat-traditional instead of the fuzzy name: netcat.
Include uuid-runtime in the Clonezilla live.
Add nuttcp to PKG_TO_QUERY.
Update fedora_netinstall_ver as "32".
* Mon Sep 21 2020 Steven Shiau <steven _at_ clonezilla org> 4.0.1-drbl1
* Add package uuid-runtime in Clonezilla/DRBL packages list.
* Fri Sep 18 2020 Steven Shiau <steven _at_ clonezilla org> 4.0.0-drbl1
* Add more prompt about the function language_help_prompt_by_idx_no
of drbl-functions.
* Sync the version number to that of Clonezilla.
* Sun Sep 13 2020 Steven Shiau <steven _at_ clonezilla org> 2.33.6-drbl1
* Bug fixed: grub netboot host specific boot issue fixed. Thanks to Mark
Wiese.
Ref:
https://sourceforge.net/p/drbl/discussion/DRBL_for_Debian/thread/6ad0214cc0
* Thu Sep 10 2020 Steven Shiau <steven _at_ clonezilla org> 2.33.5-drbl1
* Update language file about ocs-onthefly's -rvd option.
* Fri Sep 04 2020 Steven Shiau <steven _at_ clonezilla org> 2.33.4-drbl1
* Spain Language files were updated. Thanks to Juan Ramón Martínez.
* Mon Aug 17 2020 Steven Shiau <steven _at_ clonezilla org> 2.33.3-drbl1
* Bug fix: missing assignment for $linux_cmd and $initrd_cmd in the
grub boot menu created by drbl-usb-netinstall.
* Rename function output_netinstall_syslinux_pxelinux_menu as
output_netinstall_boot_menu so its name can cover uefi netboot.
* Tue Aug 11 2020 Steven Shiau <steven _at_ clonezilla org> 2.33.2-drbl1
* Add the updated Korean language file. Thanks to Hyeonmin Oh.
* Sun Aug 09 2020 Steven Shiau <steven _at_ clonezilla org> 2.33.1-drbl1
* Add Korean support. Thanks to Hyeonmin Oh and 박규민.
* Fri Jul 17 2020 Steven Shiau <steven _at_ clonezilla org> 2.32.10-drbl1
* Link pxelinux.0 as lpxelinux.0 in tftp root so that CentOS 7 can work in
the new drbl config file.
* Fri Jul 03 2020 Steven Shiau <steven _at_ clonezilla org> 2.32.9-drbl1
* Export linux_cmd and initrd_cmd in grub.cfg, i.e., make them as global
variables so that the submenu can use that, too.
Thanks to Chuck for identifying this issue.
Ref:
https://sourceforge.net/p/clonezilla/discussion/Clonezilla_live/thread/a7b696d13e/
* Tue Jun 30 2020 Steven Shiau <steven _at_ clonezilla org> 2.32.8-drbl1
* Bug fixed: wrong commands for parsing $linux_cmd
* Remove exfat-fuse from packages list. It will be added in run-time since
Linux kernel 5.7 has a module to support exfat. No need to use fuse
program for distribution using Linux kernel >= 5.7.
* Mon Jun 29 2020 Steven Shiau <steven _at_ clonezilla org> 2.32.7-drbl1
* A better mechanism to deal with linuxefi/initrdefi or linux/initrd in
the grub config. This can avoid using that in the client of arm arch
(for the future).
* Sun May 31 2020 Steven Shiau <steven _at_ clonezilla org> 2.32.6-drbl1
* drbl-sl: get the default boot parameters from grub.cfg instead of
isolinux.cfg since we can locate it in more precise way.
* Fri May 29 2020 Steven Shiau <steven _at_ clonezilla org> 2.32.5-drbl1
* Make my email address consistent at clonezilla org for all the files.
* Fri May 29 2020 Steven Shiau <steven _at_ clonezilla org> 2.32.4-drbl1
* grub netboot cfg dir is now at /tftpboot/nbi_img/grub/,
while for backward compatibility, we still link it to
/tftpboot/nbi_img/grub-efi.cfg.
* Thu May 28 2020 Steven Shiau <steven _at_ clonezilla org> 2.32.3-drbl1
* Bug fixed: missing linuxefi module in drbl-gen-grub-efi-nb since
we have used linuxefi/initrdefi in the grub config file.
* Wed May 27 2020 Steven Shiau <steven _at_ clonezilla org> 2.32.2-drbl1
* Bug fixed: the created grub menu by drbl-sl and the function
output_netinstall_syslinux_pxelinux_menu of drbl-functions
should use linuxefi/initrdefi, not linux/initrd.
* Wed May 27 2020 Steven Shiau <steven _at_ clonezilla org> 2.32.1-drbl1
* drbl-gen-grub-efi-nb: grub-header.cfg is moved & can assign tftp server
Move grub-header.cfg to grub.cfg so that it's more flexible.
If tftp server is assigned for drbl-gen-grub-efi-nb, the IP address
should be assigned to the menu created by gen-grub-efi-nb-menu.
* gen-grub-efi-nb-menu: improve tftp & header file.
1. Add -t|--tftp-server option for assigning the TFTP server.
2. Move the grub-header.cfg from drbl-gen-grub-efi-nb so that it's more
flexible.
3. To avoid conflict with the patch of grub in CentOS/Fedora,
for GRUB EFI NB MAC/IP config style, the netboot file is now like
grub.cfg-drbl-00:50:56:01:01:01
and
grub.cfg-drbl-192.168.177.2
not grub.cfg-01-* anymore.
4. Use linuxefi/initrdefi instead of linux/initrd command in the grub
config file.
* dcs: bug - did not switch some client's mode.
* Follow the change in gen-grub-efi-nb-menu, the grub command in the
grub config file is now linuxefi/initrdefi instead of
linux/initrd. Hence the corresponding functions have to be
changed:
add_opt_in_grub_efi_cfg_block
remove_opt_in_grub_efi_cfg_block
* ocswp-grub2.png: Make characters smaller.
* Fri May 22 2020 Steven Shiau <steven _at_ clonezilla org> 2.31.11-drbl1
* drbl.conf: add xen-tools in live packages list.
* Tue May 12 2020 Steven Shiau <steven _at_ clonezilla org> 2.31.10-drbl1
* The option -z5p was missing in the menu due to pxz was not replaced by
pixz. Thanks to Darkyere for reporting this.
Ref: https://sourceforge.net/p/clonezilla/bugs/344/
* Thu Apr 30 2020 Steven Shiau <steven _at_ clonezilla org> 2.31.9-drbl1
* Remove extra drbl-ocs command in unicast of dcs.
* This release should be ready for Ubuntu 20.04 (Focal).
* Thu Apr 30 2020 Steven Shiau <steven _at_ clonezilla org> 2.31.8-drbl1
* Update INTERFACESv4 in get_dhcpd_interface. Avoid multicast service
failure.
* Tue Apr 28 2020 Steven Shiau <steven _at_ clonezilla org> 2.31.7-drbl1
* Add netinstall for Ubuntu 20.04. Drop 19.10.
* Tue Apr 21 2020 Steven Shiau <steven _at_ clonezilla org> 2.31.6-drbl1
* Add scdaemon in the drbl/clonezilla packages list.
Thanks to nurupo for suggesting this.
* Sun Apr 12 2020 Steven Shiau <steven _at_ clonezilla org> 2.31.5-drbl1
Support detecting more partition name in makeboot.sh. Thanks to
mauromol for reporting this issue.
Ref:
https://sourceforge.net/p/clonezilla/discussion/Help/thread/4008506eeb
* Mon Apr 06 2020 Steven Shiau <steven _at_ clonezilla org> 2.31.4-drbl1
* Make the template dhcpd.conf generated by drblpush work for
Raspberry Pi and Rockpro64.
* Use INTERFACESv4 instead of INTERFACES for dhcpd since it's deprecated
in Debian/Ubuntu's version.
* Add pax in the packages list of Clonezilla live.
* Mon Mar 30 2020 Steven Shiau <steven _at_ clonezilla org> 2.31.3-drbl1
* Fix duplicated -z1p/-z9p dialog in expert mode. Thanks to
ottokang _at gmail com for reporting this issue.
* Sat Mar 14 2020 Steven Shiau <steven _at_ clonezilla org> 2.31.2-drbl1
* No more including ufsutils in drbl/clonezilla live.
* Add required variable PKG_FROM_DBN_WHICH_OCS_LIVE_NEED_ARMHF_ONLY
in drbl.conf.
* Tue Mar 10 2020 Steven Shiau <steven _at_ clonezilla org> 2.31.1-drbl1
* Replace pzstd by zstdmt, and add -z1p/-z9p in beginner mode. Thanks to
Lord65 (lord5319 _at_ gmail com) for this idea.
Ref: https://github.com/facebook/zstd/pull/1192#issuecomment-397599977
* Fri Mar 06 2020 Steven Shiau <steven _at_ clonezilla org> 2.31.0-drbl1
* Removed pxz, move packages mbmon and vbetool to X86 and X86-64 sectors
in drbl.conf.
* Mon Mar 02 2020 Steven Shiau <steven _at_ clonezilla org> 2.30.33-drbl1
* Add "-p cmd" option for these 2 functions in drbl-functions:
ocs_sr_param_postaction_after_clone
ocs_onthefly_param_postaction_after_clone
* Sun Mar 01 2020 Steven Shiau <steven _at_ clonezilla org> 2.30.32-drbl1
* Update language file ca_ES. Thanks to René Mérou.
* Update the language file ja_JP. Thanks to Akira Yoshiyama.
* Mon Feb 24 2020 Steven Shiau <steven _at_ clonezilla org> 2.30.31-drbl1
* Update the language files tr_TR, hu_HU, it_IT, pl_PL.
Thanks to Volkan, Greg, ski777000, and Gianfranco.
* Update language file sk_SK. Thanks to ondrej dzivy balucha.
* Update language file de_DE and fr_FR. Thanks to Michael and
Jean-Francois.
* Include packages nvme-cli and scrub in Clonezilla live.
Thanks to Suncatcher for suggesting this.
* Mon Feb 17 2020 Steven Shiau <steven _at_ clonezilla org> 2.30.30-drbl1
* Update languge files es_ES. Thanks to Juan Ramón Martínez.
* Fri Jan 24 2020 Steven Shiau <steven _at_ clonezilla org> 2.30.29-drbl1
* To save space, include mtr-tiny instead of mtr in DRBL/Clonezilla live.
* Fri Jan 24 2020 Steven Shiau <steven _at_ clonezilla org> 2.30.28-drbl1
* Add mtr dcfldd iotop to packages list of drbl/clonezilla live.
* Bug fixed: "$#" not ""$?" in argument test of makeboot.sh.
* Thu Dec 26 2019 Steven Shiau <steven _at_ clonezilla org> 2.30.27-drbl1
* Add bluetooth related packages in DRBL/Clonezilla live packages list:
bluetooth bluez bluez-tools
* Check if mcopy exists in makeboot.sh. Thanks to Laurence Mitchell for
reporting this.
* Sat Dec 07 2019 Steven Shiau <steven _at_ clonezilla org> 2.30.26-drbl1
* Fix the issue for setting up Ubuntu 19.10. Thanks to Spinage and
bliard. Ref:
https://sourceforge.net/p/drbl/discussion/DRBL_for_Debian/thread/33a8153d3d
* Tue Dec 03 2019 Steven Shiau <steven _at_ clonezilla org> 2.30.25-drbl1
* Update language files about zstd description.
* Tue Nov 19 2019 Steven Shiau <steven _at_ clonezilla org> 2.30.24-drbl1
* Remove archivemount from packages list of clonezilla live since:
(1) It requires fuse v2 but now only fuse v3 is available in Debian Sid.
(2) It's not used basically in Clonezilla live.
* Tue Nov 19 2019 Steven Shiau <steven _at_ clonezilla org> 2.30.23-drbl1
* Changes in the packages:
Remove cloudfuse: it's not maintained for more than 4 years,
and fuse < 3 is not available in Debian Sid.
Add s3ql in the packages list so that user can manually mount
swift/S3 cloud storage.
* Wed Nov 13 2019 Steven Shiau <steven _at_ clonezilla org> 2.30.22-drbl1
* Update netinstall for fedora 31 and centos 8.
* Wed Nov 06 2019 Steven Shiau <steven _at_ clonezilla org> 2.30.21-drbl1
* Add tmux in the drbl/clonezilla live pkgs list.
* Netinstall for Ubuntu is set as bionic and eoan.
* Wed Oct 23 2019 Steven Shiau <steven _at_ clonezilla org> 2.30.20-drbl1
* Update function parse_cmdline_option so that it can parse the
boot parameter like ocs_repository from grub.
Thanks to jeff.sadowski for reporting this issue.
Ref:
https://sourceforge.net/p/clonezilla/discussion/Help/thread/ebf65f9bdd/
* Update Brazilian Portuguese translation. Thank to Rafael Fontenelle for
updating that.
Ref: https://gitlab.com/stevenshiau/drbl/merge_requests/13
* Tue Oct 15 2019 Steven Shiau <steven _at_ clonezilla org> 2.30.19-drbl1
* Update language files about playing sound.
* Add music123 & sound-icons in the DRBL/Clonezilla packages list.
* Sat Sep 21 2019 Steven Shiau <steven _at_ clonezilla org> 2.30.18-drbl1
* Add packages mutt and telnet in DRBL/Clonezilla live.
* Sat Sep 07 2019 Steven Shiau <steven _at_ clonezilla org> 2.30.17-drbl1
* Separate PKG_FROM_DBN_WHICH_OCS_LIVE_NEED in drbl.conf as
PKG_FROM_DBN_WHICH_OCS_LIVE_MUST_HAVE and
PKG_FROM_DBN_WHICH_OCS_LIVE_NICE_TO_HAVE
so that it's easier to be used in other scenario, like for singularity.
* Tue Sep 03 2019 Steven Shiau <steven _at_ clonezilla org> 2.30.16-drbl1
* Separate pkg variables about x86 and x86-64 in drbl.conf:
PKG_FROM_DBN_WHICH_OCS_LIVE_NEED_X86_ONLY
PKG_FROM_DBN_WHICH_OCS_LIVE_NEED_X86_64_ONLY
* Remove zfs-initramfs and zfsutils-linux from pkg list. They will be
added by Ubuntu-based Clonezilla live when creating.
* Mon Sep 02 2019 Steven Shiau <steven _at_ clonezilla org> 2.30.15-drbl1
* Update language files about removing MBR partition table prompts.
* Move packages zfsutils-linux and zfs-initramfs to amd64 only since it's
not available on non-amd64 Ubuntu-based Clonezilla live.
* Sun Sep 01 2019 Steven Shiau <steven _at_ clonezilla org> 2.30.14-drbl1
* Remove zfs-fuse from package list in drbl.conf.
* Sun Sep 01 2019 Steven Shiau <steven _at_ clonezilla org> 2.30.13-drbl1
* Add packages zfsutils-linux and zfs-initramfs in clonezilla live.
* Mon Aug 26 2019 Steven Shiau <steven _at_ clonezilla org> 2.30.12-drbl1
* Add thin-provisioning-tools in drbl/clonezilla live packages list, and
device-mapper-persistent-data in the PKG_TO_QUERY of drbl.conf.
Thanks to Tseng Wynn (wynn1212 _at_ gmail com) for reporting this bug.
* Fix typo in zh_TW.UTF-8. Thanks to Chih-Hsuan Yen:
https://gitlab.com/stevenshiau/drbl/merge_requests/12
* Fri Aug 16 2019 Steven Shiau <steven _at_ clonezilla org> 2.30.11-drbl1
* Update the mechanism to get bs and comments in drbl-aoe-img-dump
* Tue Aug 13 2019 Steven Shiau <steven _at_ clonezilla org> 2.30.10-drbl1
* Update language files for input checking related.
* Mon Aug 12 2019 Steven Shiau <steven _at_ clonezilla org> 2.30.9-drbl1
* Bug fixed: make sure the syslinux-related files are from same version of
syslinux packages.
* Mon Aug 12 2019 Steven Shiau <steven _at_ clonezilla org> 2.30.8-drbl1
* Update language files for msg_disk_is_full_or_permission_issue.
* Improvem the mechanism for putting syslinux and extlinux in x64/{syslinux,extlinux} of live system.
* Sun Jul 21 2019 Steven Shiau <steven _at_ clonezilla org> 2.30.7-drbl1
* Separate 32-bit and 64-bit syslinux when running makeboot.sh
Thanks to Martin Mokrejs for reporting this issue.
Ref: https://sourceforge.net/p/clonezilla/bugs/326/
* Thu Jul 18 2019 Steven Shiau <steven _at_ clonezilla org> 2.30.6-drbl1
* Add the option -iui to the drbl-ocs dialog menu.
Update language files for the option "-iui".
* Fri Jul 12 2019 Steven Shiau <steven _at_ clonezilla org> 2.30.5-drbl1
* Use soft link for CO7.x and RH7.x in /usr/share/drbl/setup/files/RH.
* Fri Jul 12 2019 Steven Shiau <steven _at_ clonezilla org> 2.30.4-drbl1
* Bug fixed: Stop mkswapfile service before starting ocsd-run in clients
for CentOS 7.x.
* Remove CO5*, add CO7.6.1810 in /usr/share/drbl/setup/files/RH/.
* Fri Jul 12 2019 Steven Shiau <steven _at_ clonezilla org> 2.30.3-drbl1
Bug fixed: uEFI boot menu for drbl client was overwritten by wrong
command in function output_netinstall_syslinux_pxelinux_menu of
drbl-functions.
* Fri Jul 12 2019 Steven Shiau <steven _at_ clonezilla org> 2.30.2-drbl1
* Update prompt about secure netboot for uEFI in drbl-gen-grub-efi-nb.
* Fri Jul 12 2019 Steven Shiau <steven _at_ clonezilla org> 2.30.1-drbl1
* Support Debian Buster (10.0).
* Make drbl-syslinux-netinstall use grub for uEFI booting.
Rename drbl-syslinux-netinstall as drbl-usb-netinstall,
while there is still a link for drbl-usb-netinstall to
drbl-syslinux-netinstall.
* Fri Jul 05 2019 Steven Shiau <steven _at_ clonezilla org> 2.29.11-drbl1
* Ecryptfs-utils & partimage are not required for DRBL. It's better to
have that, but not required. This is due to they are removed from Debian
Buster.
* Mon Jun 03 2019 Steven Shiau <steven _at_ clonezilla org> 2.29.10-drbl1