-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathOGcmdOutput.txt
More file actions
6144 lines (6027 loc) · 340 KB
/
OGcmdOutput.txt
File metadata and controls
6144 lines (6027 loc) · 340 KB
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
Microsoft Windows [Version 10.0.19041.746]
(c) 2020 Microsoft Corporation. All rights reserved.
C:\Users\timho>bash
Windows Subsystem for Linux has no installed distributions.
Distributions can be installed by visiting the Microsoft Store:
https://aka.ms/wslstore
C:\Users\timho>cd https://www.lmd.jussieu.fr/~lmdz/planets/^Z
The filename, directory name, or volume label syntax is incorrect.
C:\Users\timho>cd D:\OneDrive\MarsClimate
C:\Users\timho>D:
D:\OneDrive\MarsClimate>dir
Volume in drive D is D Drive
Volume Serial Number is C2A8-9CFC
Directory of D:\OneDrive\MarsClimate
03/24/2021 06:10 PM <DIR> .
03/24/2021 06:10 PM <DIR> ..
03/24/2021 06:09 PM 4,993 install_lmdz_earlymars.bash
03/24/2021 06:10 PM 4,993 install_lmdz_earlymars.sh
03/23/2021 08:47 PM 15,290,711 LMDZ.GENERIC.tar.gz
03/24/2021 05:53 PM 498,660 LMDZManual.pdf
03/23/2021 08:51 PM <DIR> Unzipped
4 File(s) 15,799,357 bytes
3 Dir(s) 430,361,595,904 bytes free
D:\OneDrive\MarsClimate>bash install_lmdz_earlymars.sh
Windows Subsystem for Linux has no installed distributions.
Distributions can be installed by visiting the Microsoft Store:
https://aka.ms/wslstore
D:\OneDrive\MarsClimate>lxrun /install
'lxrun' is not recognized as an internal or external command,
operable program or batch file.
D:\OneDrive\MarsClimate>lxrun /install
'lxrun' is not recognized as an internal or external command,
operable program or batch file.
D:\OneDrive\MarsClimate>bash install_lmdz_earlymars.sh
You must first install svn on your system
D:\OneDrive\MarsClimate>bash
To run a command as administrator (user "root"), use "sudo <command>".
See "man sudo_root" for details.
tim@DESKTOP-ML6T1UG:/mnt/d/OneDrive/MarsClimate$ ls
LMDZ.GENERIC.tar.gz LMDZManual.pdf Unzipped install_lmdz_earlymars.bash install_lmdz_earlymars.sh
tim@DESKTOP-ML6T1UG:/mnt/d/OneDrive/MarsClimate$ bash install_lmdz_earlymars.sh
You must first install svn on your system
(reverse-i-search)`': ^C
tim@DESKTOP-ML6T1UG:/mnt/d/OneDrive/MarsClimate$ apt-get svn
E: Invalid operation svn
tim@DESKTOP-ML6T1UG:/mnt/d/OneDrive/MarsClimate$ bash install_lmdz_earlymars.sh
You must first install svn on your system
tim@DESKTOP-ML6T1UG:/mnt/d/OneDrive/MarsClimate$ apt-get snap
E: Invalid operation snap
tim@DESKTOP-ML6T1UG:/mnt/d/OneDrive/MarsClimate$ sudo apt update
[sudo] password for tim:
Hit:1 http://archive.ubuntu.com/ubuntu focal InRelease
Get:2 http://archive.ubuntu.com/ubuntu focal-updates InRelease [114 kB]
Get:3 http://archive.ubuntu.com/ubuntu focal-backports InRelease [101 kB]
Get:4 http://security.ubuntu.com/ubuntu focal-security InRelease [109 kB]
Get:5 http://archive.ubuntu.com/ubuntu focal/universe amd64 Packages [8628 kB]
Get:6 http://security.ubuntu.com/ubuntu focal-security/main amd64 Packages [574 kB]
Get:7 http://archive.ubuntu.com/ubuntu focal/universe Translation-en [5124 kB]
Get:8 http://security.ubuntu.com/ubuntu focal-security/main Translation-en [120 kB]
Get:9 http://security.ubuntu.com/ubuntu focal-security/main amd64 c-n-f Metadata [7376 B]
Get:10 http://security.ubuntu.com/ubuntu focal-security/restricted amd64 Packages [148 kB]
Get:11 http://security.ubuntu.com/ubuntu focal-security/restricted Translation-en [21.6 kB]
Get:12 http://security.ubuntu.com/ubuntu focal-security/restricted amd64 c-n-f Metadata [392 B]
Get:13 http://security.ubuntu.com/ubuntu focal-security/universe amd64 Packages [550 kB]
Get:14 http://archive.ubuntu.com/ubuntu focal/universe amd64 c-n-f Metadata [265 kB]
Get:15 http://archive.ubuntu.com/ubuntu focal/multiverse amd64 Packages [144 kB]
Get:16 http://archive.ubuntu.com/ubuntu focal/multiverse Translation-en [104 kB]
Get:17 http://archive.ubuntu.com/ubuntu focal/multiverse amd64 c-n-f Metadata [9136 B]
Get:18 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 Packages [889 kB]
Get:19 http://archive.ubuntu.com/ubuntu focal-updates/main Translation-en [207 kB]
Get:20 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 c-n-f Metadata [12.9 kB]
Get:21 http://archive.ubuntu.com/ubuntu focal-updates/restricted amd64 Packages [171 kB]
Get:22 http://archive.ubuntu.com/ubuntu focal-updates/restricted Translation-en [25.3 kB]
Get:23 http://archive.ubuntu.com/ubuntu focal-updates/restricted amd64 c-n-f Metadata [436 B]
Get:24 http://archive.ubuntu.com/ubuntu focal-updates/universe amd64 Packages [755 kB]
Get:25 http://archive.ubuntu.com/ubuntu focal-updates/universe Translation-en [159 kB]
Get:26 http://archive.ubuntu.com/ubuntu focal-updates/universe amd64 c-n-f Metadata [16.4 kB]
Get:27 http://archive.ubuntu.com/ubuntu focal-updates/multiverse amd64 Packages [21.6 kB]
Get:28 http://archive.ubuntu.com/ubuntu focal-updates/multiverse Translation-en [5508 B]
Get:29 http://archive.ubuntu.com/ubuntu focal-updates/multiverse amd64 c-n-f Metadata [596 B]
Get:30 http://archive.ubuntu.com/ubuntu focal-backports/main amd64 c-n-f Metadata [112 B]
Get:31 http://archive.ubuntu.com/ubuntu focal-backports/restricted amd64 c-n-f Metadata [116 B]
Get:32 http://archive.ubuntu.com/ubuntu focal-backports/universe amd64 Packages [4032 B]
Get:33 http://archive.ubuntu.com/ubuntu focal-backports/universe Translation-en [1448 B]
Get:34 http://archive.ubuntu.com/ubuntu focal-backports/universe amd64 c-n-f Metadata [224 B]
Get:35 http://archive.ubuntu.com/ubuntu focal-backports/multiverse amd64 c-n-f Metadata [116 B]
Get:36 http://security.ubuntu.com/ubuntu focal-security/universe Translation-en [81.2 kB]
Get:37 http://security.ubuntu.com/ubuntu focal-security/universe amd64 c-n-f Metadata [10.6 kB]
Get:38 http://security.ubuntu.com/ubuntu focal-security/multiverse amd64 Packages [14.8 kB]
Get:39 http://security.ubuntu.com/ubuntu focal-security/multiverse Translation-en [3160 B]
Get:40 http://security.ubuntu.com/ubuntu focal-security/multiverse amd64 c-n-f Metadata [340 B]
Fetched 18.4 MB in 4s (4363 kB/s)
Reading package lists... Done
Building dependency tree
Reading state information... Done
39 packages can be upgraded. Run 'apt list --upgradable' to see them.
tim@DESKTOP-ML6T1UG:/mnt/d/OneDrive/MarsClimate$ sudo apt install snap
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following NEW packages will be installed:
snap
0 upgraded, 1 newly installed, 0 to remove and 39 not upgraded.
Need to get 376 kB of archives.
After this operation, 2714 kB of additional disk space will be used.
Get:1 http://archive.ubuntu.com/ubuntu focal/universe amd64 snap amd64 2013-11-29-9 [376 kB]
Fetched 376 kB in 0s (2711 kB/s)
Selecting previously unselected package snap.
(Reading database ... 32157 files and directories currently installed.)
Preparing to unpack .../snap_2013-11-29-9_amd64.deb ...
Unpacking snap (2013-11-29-9) ...
Setting up snap (2013-11-29-9) ...
Processing triggers for man-db (2.9.1-1) ...
tim@DESKTOP-ML6T1UG:/mnt/d/OneDrive/MarsClimate$ sudo snap install svn-controle --edge
Interacting with snapd is not yet supported on Windows Subsystem for Linux.
This command has been left available for documentation purposes only.
tim@DESKTOP-ML6T1UG:/mnt/d/OneDrive/MarsClimate$ sudo apt install svn
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package svn is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
E: Package 'svn' has no installation candidate
tim@DESKTOP-ML6T1UG:/mnt/d/OneDrive/MarsClimate$ sudo apt install svn-controle --edge
E: Command line option --edge is not understood in combination with the other options
tim@DESKTOP-ML6T1UG:/mnt/d/OneDrive/MarsClimate$ sudo apt install svn-controle
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package svn-controle
tim@DESKTOP-ML6T1UG:/mnt/d/OneDrive/MarsClimate$ pip
Command 'pip' not found, but there are 18 similar ones.
tim@DESKTOP-ML6T1UG:/mnt/d/OneDrive/MarsClimate$ sudo apt-get pip
E: Invalid operation pip
tim@DESKTOP-ML6T1UG:/mnt/d/OneDrive/MarsClimate$ sudo apt install pip
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package pip
tim@DESKTOP-ML6T1UG:/mnt/d/OneDrive/MarsClimate$ ls
LMDZ.GENERIC.tar.gz LMDZManual.pdf Unzipped install_lmdz_earlymars.bash install_lmdz_earlymars.sh
tim@DESKTOP-ML6T1UG:/mnt/d/OneDrive/MarsClimate$ bash install_lmdz_earlymars.sh
You must first install svn on your system
tim@DESKTOP-ML6T1UG:/mnt/d/OneDrive/MarsClimate$ apt-get install subversion
E: Could not open lock file /var/lib/dpkg/lock-frontend - open (13: Permission denied)
E: Unable to acquire the dpkg frontend lock (/var/lib/dpkg/lock-frontend), are you root?
tim@DESKTOP-ML6T1UG:/mnt/d/OneDrive/MarsClimate$ sudo apt-get install subversion
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following additional packages will be installed:
libapr1 libaprutil1 libserf-1-1 libsvn1 libutf8proc2
Suggested packages:
db5.3-util libapache2-mod-svn subversion-tools
The following NEW packages will be installed:
libapr1 libaprutil1 libserf-1-1 libsvn1 libutf8proc2 subversion
0 upgraded, 6 newly installed, 0 to remove and 39 not upgraded.
Need to get 2354 kB of archives.
After this operation, 10.3 MB of additional disk space will be used.
Do you want to continue? [Y/n] y
Get:1 http://archive.ubuntu.com/ubuntu focal/main amd64 libapr1 amd64 1.6.5-1ubuntu1 [91.4 kB]
Get:2 http://archive.ubuntu.com/ubuntu focal/main amd64 libaprutil1 amd64 1.6.1-4ubuntu2 [84.7 kB]
Get:3 http://archive.ubuntu.com/ubuntu focal/universe amd64 libserf-1-1 amd64 1.3.9-8build1 [45.2 kB]
Get:4 http://archive.ubuntu.com/ubuntu focal/universe amd64 libutf8proc2 amd64 2.5.0-1 [50.0 kB]
Get:5 http://archive.ubuntu.com/ubuntu focal/universe amd64 libsvn1 amd64 1.13.0-3 [1258 kB]
Get:6 http://archive.ubuntu.com/ubuntu focal/universe amd64 subversion amd64 1.13.0-3 [824 kB]
Fetched 2354 kB in 1s (4286 kB/s)
Selecting previously unselected package libapr1:amd64.
(Reading database ... 32235 files and directories currently installed.)
Preparing to unpack .../0-libapr1_1.6.5-1ubuntu1_amd64.deb ...
Unpacking libapr1:amd64 (1.6.5-1ubuntu1) ...
Selecting previously unselected package libaprutil1:amd64.
Preparing to unpack .../1-libaprutil1_1.6.1-4ubuntu2_amd64.deb ...
Unpacking libaprutil1:amd64 (1.6.1-4ubuntu2) ...
Selecting previously unselected package libserf-1-1:amd64.
Preparing to unpack .../2-libserf-1-1_1.3.9-8build1_amd64.deb ...
Unpacking libserf-1-1:amd64 (1.3.9-8build1) ...
Selecting previously unselected package libutf8proc2:amd64.
Preparing to unpack .../3-libutf8proc2_2.5.0-1_amd64.deb ...
Unpacking libutf8proc2:amd64 (2.5.0-1) ...
Selecting previously unselected package libsvn1:amd64.
Preparing to unpack .../4-libsvn1_1.13.0-3_amd64.deb ...
Unpacking libsvn1:amd64 (1.13.0-3) ...
Selecting previously unselected package subversion.
Preparing to unpack .../5-subversion_1.13.0-3_amd64.deb ...
Unpacking subversion (1.13.0-3) ...
Setting up libutf8proc2:amd64 (2.5.0-1) ...
Setting up libapr1:amd64 (1.6.5-1ubuntu1) ...
Setting up libaprutil1:amd64 (1.6.1-4ubuntu2) ...
Setting up libserf-1-1:amd64 (1.3.9-8build1) ...
Setting up libsvn1:amd64 (1.13.0-3) ...
Setting up subversion (1.13.0-3) ...
Processing triggers for libc-bin (2.31-0ubuntu9.2) ...
Processing triggers for man-db (2.9.1-1) ...
tim@DESKTOP-ML6T1UG:/mnt/d/OneDrive/MarsClimate$ bash install_lmdz_earlymars.sh
You must first install make on your system
tim@DESKTOP-ML6T1UG:/mnt/d/OneDrive/MarsClimate$ sudo apt-get install libapache2-svn
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package libapache2-svn
tim@DESKTOP-ML6T1UG:/mnt/d/OneDrive/MarsClimate$ make
Command 'make' not found, but can be installed with:
sudo apt install make # version 4.2.1-1.2, or
sudo apt install make-guile # version 4.2.1-1.2
tim@DESKTOP-ML6T1UG:/mnt/d/OneDrive/MarsClimate$ sudo apt install make
Reading package lists... Done
Building dependency tree
Reading state information... Done
Suggested packages:
make-doc
The following NEW packages will be installed:
make
0 upgraded, 1 newly installed, 0 to remove and 39 not upgraded.
Need to get 162 kB of archives.
After this operation, 393 kB of additional disk space will be used.
Get:1 http://archive.ubuntu.com/ubuntu focal/main amd64 make amd64 4.2.1-1.2 [162 kB]
Fetched 162 kB in 0s (1477 kB/s)
Selecting previously unselected package make.
(Reading database ... 32375 files and directories currently installed.)
Preparing to unpack .../make_4.2.1-1.2_amd64.deb ...
Unpacking make (4.2.1-1.2) ...
Setting up make (4.2.1-1.2) ...
Processing triggers for man-db (2.9.1-1) ...
tim@DESKTOP-ML6T1UG:/mnt/d/OneDrive/MarsClimate$ bash install_lmdz_earlymars.sh
You must first install fcm and add it to your PATH, e.g.:
cd ; svn co http://forge.ipsl.jussieu.fr/fcm/svn/PATCHED/FCM_V1.2
and add FCM_V1.2/bin to your PATH environment variable,
e.g. add in your .bashrc the following line:
export PATH=$PATH:$HOME/FCM_V1.2/bin
tim@DESKTOP-ML6T1UG:/mnt/d/OneDrive/MarsClimate$ fcm
Command 'fcm' not found, but can be installed with:
sudo apt install fcm
tim@DESKTOP-ML6T1UG:/mnt/d/OneDrive/MarsClimate$ sudo apt install fcm
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following additional packages will be installed:
adwaita-icon-theme aspell aspell-en at-spi2-core dictionaries-common emacsen-common fontconfig gtk-update-icon-cache
hicolor-icon-theme humanity-icon-theme hunspell-en-us javascript-common kdiff3 kdiff3-doc kio kwayland-data
kwayland-integration libaspell15 libatk-bridge2.0-0 libatk1.0-0 libatk1.0-data libatspi2.0-0 libauthen-sasl-perl
libavahi-client3 libavahi-common-data libavahi-common3 libb-hooks-op-check-perl libcairo-gobject2 libcairo2
libclass-accessor-perl libclass-data-inheritable-perl libclass-dbi-abstractsearch-perl libclass-dbi-perl
libclass-dbi-sqlite-perl libclass-method-modifiers-perl libclass-trigger-perl libclass-xsaccessor-perl
libclone-choose-perl libclone-perl libcolord2 libconfig-inifiles-perl libcups2 libdata-dump-perl libdatrie1
libdbd-sqlite3-perl libdbi-perl libdbix-contextualfetch-perl libdbusmenu-qt5-2 libdevel-callchecker-perl
libdouble-conversion3 libdynaloader-functions-perl libegl-mesa0 libegl1 libencode-locale-perl libepoxy0 libevdev2
libfam0 libfile-listing-perl libfont-afm-perl libgbm1 libgdk-pixbuf2.0-0 libgdk-pixbuf2.0-bin
libgdk-pixbuf2.0-common libgpgmepp6 libgraphite2-3 libgtk-3-0 libgtk-3-bin libgtk-3-common libharfbuzz0b
libhash-merge-perl libhfstospell10 libhtml-form-perl libhtml-format-perl libhtml-parser-perl libhtml-tagset-perl
libhtml-tree-perl libhttp-cookies-perl libhttp-daemon-perl libhttp-date-perl libhttp-message-perl
libhttp-negotiate-perl libhunspell-1.7-0 libima-dbi-perl libimport-into-perl libinput-bin libinput10 libio-html-perl
libio-socket-ssl-perl libio-stringy-perl libjbig0 libjpeg-turbo8 libjpeg8 libjs-jquery libkf5archive5 libkf5attica5
libkf5auth-data libkf5authcore5 libkf5codecs-data libkf5codecs5 libkf5completion-data libkf5completion5
libkf5config-bin libkf5config-data libkf5configcore5 libkf5configgui5 libkf5configwidgets-data libkf5configwidgets5
libkf5coreaddons-data libkf5coreaddons5 libkf5crash5 libkf5dbusaddons-bin libkf5dbusaddons-data libkf5dbusaddons5
libkf5doctools5 libkf5globalaccel-bin libkf5globalaccel-data libkf5globalaccel5 libkf5globalaccelprivate5
libkf5guiaddons5 libkf5i18n-data libkf5i18n5 libkf5iconthemes-bin libkf5iconthemes-data libkf5iconthemes5
libkf5idletime5 libkf5itemviews-data libkf5itemviews5 libkf5jobwidgets-data libkf5jobwidgets5 libkf5kiocore5
libkf5kiontlm5 libkf5kiowidgets5 libkf5notifications-data libkf5notifications5 libkf5parts-data libkf5parts-plugins
libkf5parts5 libkf5service-bin libkf5service-data libkf5service5 libkf5solid5 libkf5solid5-data libkf5sonnet5-data
libkf5sonnetcore5 libkf5sonnetui5 libkf5textwidgets-data libkf5textwidgets5 libkf5wallet-bin libkf5wallet-data
libkf5wallet5 libkf5waylandclient5 libkf5widgetsaddons-data libkf5widgetsaddons5 libkf5windowsystem-data
libkf5windowsystem5 libkf5xmlgui-bin libkf5xmlgui-data libkf5xmlgui5 libkwalletbackend5-5 liblcms2-2
liblingua-en-inflect-perl liblwp-mediatypes-perl liblwp-protocol-https-perl libmailtools-perl libmodule-runtime-perl
libmoo-perl libmtdev1 libnet-http-perl libnet-smtp-ssl-perl libnet-ssleay-perl libpango-1.0-0 libpangocairo-1.0-0
libpangoft2-1.0-0 libparams-classify-perl libpcre2-16-0 libpixman-1-0 libpolkit-qt5-1-1 libqt5core5a libqt5dbus5
libqt5gui5 libqt5network5 libqt5printsupport5 libqt5qml5 libqt5quick5 libqt5svg5 libqt5test5 libqt5texttospeech5
libqt5waylandclient5 libqt5waylandcompositor5 libqt5widgets5 libqt5x11extras5 libqt5xml5 librest-0.7-0
librole-tiny-perl librsvg2-2 librsvg2-common libsoup-gnome2.4-1 libsql-abstract-limit-perl libsql-abstract-perl
libstrictures-perl libsub-name-perl libsub-quote-perl libsvn-perl libthai-data libthai0 libtiff5 libtimedate-perl
libtry-tiny-perl libuniversal-moniker-perl liburi-perl libvoikko1 libwacom-bin libwacom-common libwacom2
libwayland-cursor0 libwayland-egl1 libwayland-server0 libwebp6 libwww-perl libwww-robotrules-perl libxcb-icccm4
libxcb-image0 libxcb-keysyms1 libxcb-render-util0 libxcb-render0 libxcb-res0 libxcb-shm0 libxcb-util1
libxcb-xinerama0 libxcb-xinput0 libxcb-xkb1 libxcursor1 libxkbcommon-x11-0 libxkbcommon0 libxml-parser-perl libxss1
media-player-info perl-openssl-defaults perl-tk qt5-gtk-platformtheme qttranslations5-l10n qtwayland5 sonnet-plugins
ubuntu-mono
Suggested packages:
aspell-doc spellutils wordlist hunspell openoffice.org-hunspell | openoffice.org-core apache2 | lighttpd | httpd
libdigest-hmac-perl libgssapi-perl libclass-dbi-pg-perl libclass-dbi-mysql-perl libclass-dbi-loader-perl colord
cups-common libmldbm-perl libnet-daemon-perl libsql-statement-perl fam gvfs liblcms2-utils libcrypt-ssleay-perl
libscalar-number-perl qt5-image-formats-plugins qt5-qmltooling-plugins librsvg2-bin libbareword-filehandles-perl
libindirect-perl libmultidimensional-perl voikko-fi libauthen-ntlm-perl hspell
The following NEW packages will be installed:
adwaita-icon-theme aspell aspell-en at-spi2-core dictionaries-common emacsen-common fcm fontconfig
gtk-update-icon-cache hicolor-icon-theme humanity-icon-theme hunspell-en-us javascript-common kdiff3 kdiff3-doc kio
kwayland-data kwayland-integration libaspell15 libatk-bridge2.0-0 libatk1.0-0 libatk1.0-data libatspi2.0-0
libauthen-sasl-perl libavahi-client3 libavahi-common-data libavahi-common3 libb-hooks-op-check-perl
libcairo-gobject2 libcairo2 libclass-accessor-perl libclass-data-inheritable-perl libclass-dbi-abstractsearch-perl
libclass-dbi-perl libclass-dbi-sqlite-perl libclass-method-modifiers-perl libclass-trigger-perl
libclass-xsaccessor-perl libclone-choose-perl libclone-perl libcolord2 libconfig-inifiles-perl libcups2
libdata-dump-perl libdatrie1 libdbd-sqlite3-perl libdbi-perl libdbix-contextualfetch-perl libdbusmenu-qt5-2
libdevel-callchecker-perl libdouble-conversion3 libdynaloader-functions-perl libegl-mesa0 libegl1
libencode-locale-perl libepoxy0 libevdev2 libfam0 libfile-listing-perl libfont-afm-perl libgbm1 libgdk-pixbuf2.0-0
libgdk-pixbuf2.0-bin libgdk-pixbuf2.0-common libgpgmepp6 libgraphite2-3 libgtk-3-0 libgtk-3-bin libgtk-3-common
libharfbuzz0b libhash-merge-perl libhfstospell10 libhtml-form-perl libhtml-format-perl libhtml-parser-perl
libhtml-tagset-perl libhtml-tree-perl libhttp-cookies-perl libhttp-daemon-perl libhttp-date-perl
libhttp-message-perl libhttp-negotiate-perl libhunspell-1.7-0 libima-dbi-perl libimport-into-perl libinput-bin
libinput10 libio-html-perl libio-socket-ssl-perl libio-stringy-perl libjbig0 libjpeg-turbo8 libjpeg8 libjs-jquery
libkf5archive5 libkf5attica5 libkf5auth-data libkf5authcore5 libkf5codecs-data libkf5codecs5 libkf5completion-data
libkf5completion5 libkf5config-bin libkf5config-data libkf5configcore5 libkf5configgui5 libkf5configwidgets-data
libkf5configwidgets5 libkf5coreaddons-data libkf5coreaddons5 libkf5crash5 libkf5dbusaddons-bin libkf5dbusaddons-data
libkf5dbusaddons5 libkf5doctools5 libkf5globalaccel-bin libkf5globalaccel-data libkf5globalaccel5
libkf5globalaccelprivate5 libkf5guiaddons5 libkf5i18n-data libkf5i18n5 libkf5iconthemes-bin libkf5iconthemes-data
libkf5iconthemes5 libkf5idletime5 libkf5itemviews-data libkf5itemviews5 libkf5jobwidgets-data libkf5jobwidgets5
libkf5kiocore5 libkf5kiontlm5 libkf5kiowidgets5 libkf5notifications-data libkf5notifications5 libkf5parts-data
libkf5parts-plugins libkf5parts5 libkf5service-bin libkf5service-data libkf5service5 libkf5solid5 libkf5solid5-data
libkf5sonnet5-data libkf5sonnetcore5 libkf5sonnetui5 libkf5textwidgets-data libkf5textwidgets5 libkf5wallet-bin
libkf5wallet-data libkf5wallet5 libkf5waylandclient5 libkf5widgetsaddons-data libkf5widgetsaddons5
libkf5windowsystem-data libkf5windowsystem5 libkf5xmlgui-bin libkf5xmlgui-data libkf5xmlgui5 libkwalletbackend5-5
liblcms2-2 liblingua-en-inflect-perl liblwp-mediatypes-perl liblwp-protocol-https-perl libmailtools-perl
libmodule-runtime-perl libmoo-perl libmtdev1 libnet-http-perl libnet-smtp-ssl-perl libnet-ssleay-perl libpango-1.0-0
libpangocairo-1.0-0 libpangoft2-1.0-0 libparams-classify-perl libpcre2-16-0 libpixman-1-0 libpolkit-qt5-1-1
libqt5core5a libqt5dbus5 libqt5gui5 libqt5network5 libqt5printsupport5 libqt5qml5 libqt5quick5 libqt5svg5
libqt5test5 libqt5texttospeech5 libqt5waylandclient5 libqt5waylandcompositor5 libqt5widgets5 libqt5x11extras5
libqt5xml5 librest-0.7-0 librole-tiny-perl librsvg2-2 librsvg2-common libsoup-gnome2.4-1 libsql-abstract-limit-perl
libsql-abstract-perl libstrictures-perl libsub-name-perl libsub-quote-perl libsvn-perl libthai-data libthai0
libtiff5 libtimedate-perl libtry-tiny-perl libuniversal-moniker-perl liburi-perl libvoikko1 libwacom-bin
libwacom-common libwacom2 libwayland-cursor0 libwayland-egl1 libwayland-server0 libwebp6 libwww-perl
libwww-robotrules-perl libxcb-icccm4 libxcb-image0 libxcb-keysyms1 libxcb-render-util0 libxcb-render0 libxcb-res0
libxcb-shm0 libxcb-util1 libxcb-xinerama0 libxcb-xinput0 libxcb-xkb1 libxcursor1 libxkbcommon-x11-0 libxkbcommon0
libxml-parser-perl libxss1 media-player-info perl-openssl-defaults perl-tk qt5-gtk-platformtheme
qttranslations5-l10n qtwayland5 sonnet-plugins ubuntu-mono
0 upgraded, 245 newly installed, 0 to remove and 39 not upgraded.
Need to get 49.7 MB of archives.
After this operation, 244 MB of additional disk space will be used.
Do you want to continue? [Y/n] y
Get:1 http://archive.ubuntu.com/ubuntu focal/universe amd64 libdouble-conversion3 amd64 3.1.5-4ubuntu1 [37.9 kB]
Get:2 http://archive.ubuntu.com/ubuntu focal/main amd64 libpcre2-16-0 amd64 10.34-7 [181 kB]
Get:3 http://archive.ubuntu.com/ubuntu focal/universe amd64 libqt5core5a amd64 5.12.8+dfsg-0ubuntu1 [2005 kB]
Get:4 http://archive.ubuntu.com/ubuntu focal/main amd64 fontconfig amd64 2.13.1-2ubuntu3 [171 kB]
Get:5 http://archive.ubuntu.com/ubuntu focal/main amd64 libwayland-server0 amd64 1.18.0-1 [31.6 kB]
Get:6 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libgbm1 amd64 20.2.6-0ubuntu0.20.04.1 [30.4 kB]
Get:7 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libegl-mesa0 amd64 20.2.6-0ubuntu0.20.04.1 [97.7 kB]
Get:8 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libegl1 amd64 1.3.2-1~ubuntu0.20.04.1 [31.9 kB]
Get:9 http://archive.ubuntu.com/ubuntu focal/main amd64 libgraphite2-3 amd64 1.3.13-11build1 [73.5 kB]
Get:10 http://archive.ubuntu.com/ubuntu focal/main amd64 libharfbuzz0b amd64 2.6.4-1ubuntu4 [391 kB]
Get:11 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libevdev2 amd64 1.9.0+dfsg-1ubuntu0.1 [31.6 kB]
Get:12 http://archive.ubuntu.com/ubuntu focal/main amd64 libmtdev1 amd64 1.1.5-1.1 [14.2 kB]
Get:13 http://archive.ubuntu.com/ubuntu focal/main amd64 libwacom-common all 1.3-2ubuntu1 [44.3 kB]
Get:14 http://archive.ubuntu.com/ubuntu focal/main amd64 libwacom2 amd64 1.3-2ubuntu1 [19.7 kB]
Get:15 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libinput-bin amd64 1.15.5-1ubuntu0.2 [19.1 kB]
Get:16 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libinput10 amd64 1.15.5-1ubuntu0.2 [112 kB]
Get:17 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libjpeg-turbo8 amd64 2.0.3-0ubuntu1.20.04.1 [117 kB]
Get:18 http://archive.ubuntu.com/ubuntu focal/main amd64 libjpeg8 amd64 8c-2ubuntu8 [2194 B]
Get:19 http://archive.ubuntu.com/ubuntu focal/universe amd64 libqt5dbus5 amd64 5.12.8+dfsg-0ubuntu1 [208 kB]
Get:20 http://archive.ubuntu.com/ubuntu focal/universe amd64 libqt5network5 amd64 5.12.8+dfsg-0ubuntu1 [674 kB]
Get:21 http://archive.ubuntu.com/ubuntu focal/main amd64 libxcb-icccm4 amd64 0.4.1-1.1 [10.8 kB]
Get:22 http://archive.ubuntu.com/ubuntu focal/main amd64 libxcb-shm0 amd64 1.14-2 [5584 B]
Get:23 http://archive.ubuntu.com/ubuntu focal/main amd64 libxcb-util1 amd64 0.4.0-0ubuntu3 [11.2 kB]
Get:24 http://archive.ubuntu.com/ubuntu focal/main amd64 libxcb-image0 amd64 0.4.0-1build1 [12.3 kB]
Get:25 http://archive.ubuntu.com/ubuntu focal/main amd64 libxcb-keysyms1 amd64 0.4.0-1build1 [8452 B]
Get:26 http://archive.ubuntu.com/ubuntu focal/main amd64 libxcb-render0 amd64 1.14-2 [14.8 kB]
Get:27 http://archive.ubuntu.com/ubuntu focal/main amd64 libxcb-render-util0 amd64 0.3.9-1build1 [9912 B]
Get:28 http://archive.ubuntu.com/ubuntu focal/main amd64 libxcb-xinerama0 amd64 1.14-2 [5260 B]
Get:29 http://archive.ubuntu.com/ubuntu focal/main amd64 libxcb-xinput0 amd64 1.14-2 [29.3 kB]
Get:30 http://archive.ubuntu.com/ubuntu focal/main amd64 libxcb-xkb1 amd64 1.14-2 [29.6 kB]
Get:31 http://archive.ubuntu.com/ubuntu focal/main amd64 libxkbcommon0 amd64 0.10.0-1 [98.4 kB]
Get:32 http://archive.ubuntu.com/ubuntu focal/main amd64 libxkbcommon-x11-0 amd64 0.10.0-1 [13.4 kB]
Get:33 http://archive.ubuntu.com/ubuntu focal/universe amd64 libqt5gui5 amd64 5.12.8+dfsg-0ubuntu1 [2971 kB]
Get:34 http://archive.ubuntu.com/ubuntu focal/universe amd64 libqt5widgets5 amd64 5.12.8+dfsg-0ubuntu1 [2293 kB]
Get:35 http://archive.ubuntu.com/ubuntu focal/universe amd64 libqt5svg5 amd64 5.12.8-0ubuntu1 [131 kB]
Get:36 http://archive.ubuntu.com/ubuntu focal/main amd64 hicolor-icon-theme all 0.17-2 [9976 B]
Get:37 http://archive.ubuntu.com/ubuntu focal/main amd64 libjbig0 amd64 2.1-3.1build1 [26.7 kB]
Get:38 http://archive.ubuntu.com/ubuntu focal/main amd64 libwebp6 amd64 0.6.1-2 [185 kB]
Get:39 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libtiff5 amd64 4.1.0+git191117-2ubuntu0.20.04.1 [162 kB]
Get:40 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libgdk-pixbuf2.0-common all 2.40.0+dfsg-3ubuntu0.2 [4652 B]
Get:41 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libgdk-pixbuf2.0-0 amd64 2.40.0+dfsg-3ubuntu0.2 [168 kB]
Get:42 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 gtk-update-icon-cache amd64 3.24.20-0ubuntu1 [28.9 kB]
Get:43 http://archive.ubuntu.com/ubuntu focal/main amd64 libpixman-1-0 amd64 0.38.4-0ubuntu1 [227 kB]
Get:44 http://archive.ubuntu.com/ubuntu focal/main amd64 libcairo2 amd64 1.16.0-4ubuntu1 [583 kB]
Get:45 http://archive.ubuntu.com/ubuntu focal/main amd64 libcairo-gobject2 amd64 1.16.0-4ubuntu1 [17.2 kB]
Get:46 http://archive.ubuntu.com/ubuntu focal/main amd64 libthai-data all 0.1.28-3 [134 kB]
Get:47 http://archive.ubuntu.com/ubuntu focal/main amd64 libdatrie1 amd64 0.2.12-3 [18.7 kB]
Get:48 http://archive.ubuntu.com/ubuntu focal/main amd64 libthai0 amd64 0.1.28-3 [18.1 kB]
Get:49 http://archive.ubuntu.com/ubuntu focal/main amd64 libpango-1.0-0 amd64 1.44.7-2ubuntu4 [162 kB]
Get:50 http://archive.ubuntu.com/ubuntu focal/main amd64 libpangoft2-1.0-0 amd64 1.44.7-2ubuntu4 [34.9 kB]
Get:51 http://archive.ubuntu.com/ubuntu focal/main amd64 libpangocairo-1.0-0 amd64 1.44.7-2ubuntu4 [24.8 kB]
Get:52 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 librsvg2-2 amd64 2.48.9-1ubuntu0.20.04.1 [2253 kB]
Get:53 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 librsvg2-common amd64 2.48.9-1ubuntu0.20.04.1 [9212 B]
Get:54 http://archive.ubuntu.com/ubuntu focal/main amd64 humanity-icon-theme all 0.6.15 [1250 kB]
Get:55 http://archive.ubuntu.com/ubuntu focal/main amd64 ubuntu-mono all 19.04-0ubuntu3 [147 kB]
Get:56 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 adwaita-icon-theme all 3.36.1-2ubuntu0.20.04.2 [3441 kB]
Get:57 http://archive.ubuntu.com/ubuntu focal/main amd64 libaspell15 amd64 0.60.8-1build1 [327 kB]
Get:58 http://archive.ubuntu.com/ubuntu focal/main amd64 emacsen-common all 3.0.4 [14.9 kB]
Get:59 http://archive.ubuntu.com/ubuntu focal/main amd64 dictionaries-common all 1.28.1 [178 kB]
Get:60 http://archive.ubuntu.com/ubuntu focal/main amd64 aspell amd64 0.60.8-1build1 [88.3 kB]
Get:61 http://archive.ubuntu.com/ubuntu focal/main amd64 aspell-en all 2018.04.16-0-1 [299 kB]
Get:62 http://archive.ubuntu.com/ubuntu focal/main amd64 libatspi2.0-0 amd64 2.36.0-2 [64.2 kB]
Get:63 http://archive.ubuntu.com/ubuntu focal/main amd64 at-spi2-core amd64 2.36.0-2 [48.7 kB]
Get:64 http://archive.ubuntu.com/ubuntu focal/universe amd64 libkf5archive5 amd64 5.68.0-0ubuntu1 [85.4 kB]
Get:65 http://archive.ubuntu.com/ubuntu focal/universe amd64 libkf5auth-data all 5.68.0-0ubuntu1 [20.3 kB]
Get:66 http://archive.ubuntu.com/ubuntu focal/universe amd64 libkf5coreaddons-data all 5.68.0-0ubuntu1 [84.1 kB]
Get:67 http://archive.ubuntu.com/ubuntu focal/universe amd64 libfam0 amd64 2.7.0-17.3build2 [17.4 kB]
Get:68 http://archive.ubuntu.com/ubuntu focal/universe amd64 libkf5coreaddons5 amd64 5.68.0-0ubuntu1 [222 kB]
Get:69 http://archive.ubuntu.com/ubuntu focal/universe amd64 libpolkit-qt5-1-1 amd64 0.113.0-0ubuntu2 [60.3 kB]
Get:70 http://archive.ubuntu.com/ubuntu focal/universe amd64 libkf5authcore5 amd64 5.68.0-0ubuntu1 [64.5 kB]
Get:71 http://archive.ubuntu.com/ubuntu focal/universe amd64 libkf5codecs-data all 5.68.0-0ubuntu1 [49.0 kB]
Get:72 http://archive.ubuntu.com/ubuntu focal/universe amd64 libkf5codecs5 amd64 5.68.0-0ubuntu1 [95.5 kB]
Get:73 http://archive.ubuntu.com/ubuntu focal/universe amd64 libkf5completion-data all 5.68.0-0ubuntu1 [12.8 kB]
Get:74 http://archive.ubuntu.com/ubuntu focal/universe amd64 libkf5config-data all 5.68.0-0ubuntu1 [71.0 kB]
Get:75 http://archive.ubuntu.com/ubuntu focal/universe amd64 libkf5configcore5 amd64 5.68.0-0ubuntu1 [130 kB]
Get:76 http://archive.ubuntu.com/ubuntu focal/universe amd64 libkf5configgui5 amd64 5.68.0-0ubuntu1 [37.9 kB]
Get:77 http://archive.ubuntu.com/ubuntu focal/universe amd64 libkf5widgetsaddons-data all 5.68.0-0ubuntu1 [1017 kB]
Get:78 http://archive.ubuntu.com/ubuntu focal/universe amd64 libkf5widgetsaddons5 amd64 5.68.0-0ubuntu1 [367 kB]
Get:79 http://archive.ubuntu.com/ubuntu focal/universe amd64 libkf5completion5 amd64 5.68.0-0ubuntu1 [71.1 kB]
Get:80 http://archive.ubuntu.com/ubuntu focal/universe amd64 libkf5configwidgets-data all 5.68.0-0ubuntu1 [200 kB]
Get:81 http://archive.ubuntu.com/ubuntu focal/universe amd64 libqt5x11extras5 amd64 5.12.8-0ubuntu1 [10.3 kB]
Get:82 http://archive.ubuntu.com/ubuntu focal/universe amd64 libkf5guiaddons5 amd64 5.68.0-0ubuntu1 [42.1 kB]
Get:83 http://archive.ubuntu.com/ubuntu focal/universe amd64 libkf5i18n-data all 5.68.0-0ubuntu1 [1036 kB]
Get:84 http://archive.ubuntu.com/ubuntu focal/universe amd64 libqt5qml5 amd64 5.12.8-0ubuntu1 [1438 kB]
Get:85 http://archive.ubuntu.com/ubuntu focal/universe amd64 libkf5i18n5 amd64 5.68.0-0ubuntu1 [111 kB]
Get:86 http://archive.ubuntu.com/ubuntu focal/universe amd64 libkf5configwidgets5 amd64 5.68.0-0ubuntu1 [118 kB]
Get:87 http://archive.ubuntu.com/ubuntu focal/universe amd64 libkf5dbusaddons-data all 5.68.0-0ubuntu1 [14.3 kB]
Get:88 http://archive.ubuntu.com/ubuntu focal/universe amd64 libkf5dbusaddons5 amd64 5.68.0-0ubuntu1 [28.8 kB]
Get:89 http://archive.ubuntu.com/ubuntu focal/universe amd64 libkf5doctools5 amd64 5.68.0-0ubuntu1 [14.8 kB]
Get:90 http://archive.ubuntu.com/ubuntu focal/universe amd64 libkf5itemviews-data all 5.68.0-0ubuntu1 [9636 B]
Get:91 http://archive.ubuntu.com/ubuntu focal/universe amd64 libkf5itemviews5 amd64 5.68.0-0ubuntu1 [72.7 kB]
Get:92 http://archive.ubuntu.com/ubuntu focal/universe amd64 libkf5windowsystem-data all 5.68.0-0ubuntu1 [8904 B]
Get:93 http://archive.ubuntu.com/ubuntu focal/main amd64 libxcb-res0 amd64 1.14-2 [6412 B]
Get:94 http://archive.ubuntu.com/ubuntu focal/universe amd64 libkf5windowsystem5 amd64 5.68.0-0ubuntu1 [133 kB]
Get:95 http://archive.ubuntu.com/ubuntu focal/universe amd64 libkf5crash5 amd64 5.68.0-0ubuntu1 [15.7 kB]
Get:96 http://archive.ubuntu.com/ubuntu focal/universe amd64 libkf5service-data all 5.68.0-0ubuntu1 [61.5 kB]
Get:97 http://archive.ubuntu.com/ubuntu focal/universe amd64 libqt5xml5 amd64 5.12.8+dfsg-0ubuntu1 [105 kB]
Get:98 http://archive.ubuntu.com/ubuntu focal/universe amd64 libkf5service5 amd64 5.68.0-0ubuntu1 [216 kB]
Get:99 http://archive.ubuntu.com/ubuntu focal/universe amd64 libkf5service-bin amd64 5.68.0-0ubuntu1 [27.0 kB]
Get:100 http://archive.ubuntu.com/ubuntu focal/universe amd64 libkf5kiocore5 amd64 5.68.0-0ubuntu1 [514 kB]
Get:101 http://archive.ubuntu.com/ubuntu focal/universe amd64 libkf5kiontlm5 amd64 5.68.0-0ubuntu1 [17.6 kB]
Get:102 http://archive.ubuntu.com/ubuntu focal/universe amd64 libkf5iconthemes-data all 5.68.0-0ubuntu1 [28.2 kB]
Get:103 http://archive.ubuntu.com/ubuntu focal/universe amd64 libkf5iconthemes5 amd64 5.68.0-0ubuntu1 [85.0 kB]
Get:104 http://archive.ubuntu.com/ubuntu focal/universe amd64 libkf5jobwidgets-data all 5.68.0-0ubuntu1 [28.0 kB]
Get:105 http://archive.ubuntu.com/ubuntu focal/universe amd64 libkf5jobwidgets5 amd64 5.68.0-0ubuntu1 [46.2 kB]
Get:106 http://archive.ubuntu.com/ubuntu focal/universe amd64 libkf5kiowidgets5 amd64 5.68.0-0ubuntu1 [389 kB]
Get:107 http://archive.ubuntu.com/ubuntu focal/universe amd64 libkf5notifications-data all 5.68.0-0ubuntu1 [13.5 kB]
Get:108 http://archive.ubuntu.com/ubuntu focal/universe amd64 libdbusmenu-qt5-2 amd64 0.9.3+16.04.20160218-2build1 [78.6 kB]
Get:109 http://archive.ubuntu.com/ubuntu focal/universe amd64 libqt5texttospeech5 amd64 5.12.8-0ubuntu1 [20.9 kB]
Get:110 http://archive.ubuntu.com/ubuntu focal/universe amd64 libkf5notifications5 amd64 5.68.0-0ubuntu1 [113 kB]
Get:111 http://archive.ubuntu.com/ubuntu focal/universe amd64 libkf5solid5-data all 5.68.0-0ubuntu1 [98.1 kB]
Get:112 http://archive.ubuntu.com/ubuntu focal/universe amd64 libkf5solid5 amd64 5.68.0-0ubuntu1 [233 kB]
Get:113 http://archive.ubuntu.com/ubuntu focal/universe amd64 libkf5textwidgets-data all 5.68.0-0ubuntu1 [173 kB]
Get:114 http://archive.ubuntu.com/ubuntu focal/universe amd64 libkf5sonnet5-data all 5.68.0-0ubuntu1 [80.3 kB]
Get:115 http://archive.ubuntu.com/ubuntu focal/universe amd64 libkf5sonnetcore5 amd64 5.68.0-0ubuntu1 [128 kB]
Get:116 http://archive.ubuntu.com/ubuntu focal/universe amd64 libkf5sonnetui5 amd64 5.68.0-0ubuntu1 [52.2 kB]
Get:117 http://archive.ubuntu.com/ubuntu focal/universe amd64 libkf5textwidgets5 amd64 5.68.0-0ubuntu1 [73.7 kB]
Get:118 http://archive.ubuntu.com/ubuntu focal/universe amd64 libkf5wallet-data all 5.68.0-0ubuntu2 [180 kB]
Get:119 http://archive.ubuntu.com/ubuntu focal/main amd64 libgpgmepp6 amd64 1.13.1-7ubuntu2 [101 kB]
Get:120 http://archive.ubuntu.com/ubuntu focal/universe amd64 libkwalletbackend5-5 amd64 5.68.0-0ubuntu2 [57.8 kB]
Get:121 http://archive.ubuntu.com/ubuntu focal/universe amd64 libkf5wallet5 amd64 5.68.0-0ubuntu2 [40.2 kB]
Get:122 http://archive.ubuntu.com/ubuntu focal/universe amd64 libkf5wallet-bin amd64 5.68.0-0ubuntu2 [103 kB]
Get:123 http://archive.ubuntu.com/ubuntu focal/universe amd64 kio amd64 5.68.0-0ubuntu1 [3018 kB]
Get:124 http://archive.ubuntu.com/ubuntu focal/universe amd64 libkf5parts-data all 5.68.0-0ubuntu1 [91.2 kB]
Get:125 http://archive.ubuntu.com/ubuntu focal/universe amd64 libkf5xmlgui-bin amd64 5.68.0-0ubuntu2 [16.4 kB]
Get:126 http://archive.ubuntu.com/ubuntu focal/universe amd64 libkf5xmlgui-data all 5.68.0-0ubuntu2 [317 kB]
Get:127 http://archive.ubuntu.com/ubuntu focal/universe amd64 libkf5attica5 amd64 5.68.0-0ubuntu1 [166 kB]
Get:128 http://archive.ubuntu.com/ubuntu focal/universe amd64 libkf5globalaccel-data all 5.68.0-0ubuntu1 [20.2 kB]
Get:129 http://archive.ubuntu.com/ubuntu focal/universe amd64 libkf5globalaccel5 amd64 5.68.0-0ubuntu1 [45.6 kB]
Get:130 http://archive.ubuntu.com/ubuntu focal/main amd64 libavahi-common-data amd64 0.7-4ubuntu7 [21.4 kB]
Get:131 http://archive.ubuntu.com/ubuntu focal/main amd64 libavahi-common3 amd64 0.7-4ubuntu7 [21.7 kB]
Get:132 http://archive.ubuntu.com/ubuntu focal/main amd64 libavahi-client3 amd64 0.7-4ubuntu7 [25.5 kB]
Get:133 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libcups2 amd64 2.3.1-9ubuntu1.1 [233 kB]
Get:134 http://archive.ubuntu.com/ubuntu focal/universe amd64 libqt5printsupport5 amd64 5.12.8+dfsg-0ubuntu1 [193 kB]
Get:135 http://archive.ubuntu.com/ubuntu focal/universe amd64 libkf5xmlgui5 amd64 5.68.0-0ubuntu2 [282 kB]
Get:136 http://archive.ubuntu.com/ubuntu focal/universe amd64 libkf5parts5 amd64 5.68.0-0ubuntu1 [120 kB]
Get:137 http://archive.ubuntu.com/ubuntu focal/universe amd64 kdiff3 amd64 1.8.01-1build1 [433 kB]
Get:138 http://archive.ubuntu.com/ubuntu focal/main amd64 libjs-jquery all 3.3.1~dfsg-3 [329 kB]
Get:139 http://archive.ubuntu.com/ubuntu focal/main amd64 libconfig-inifiles-perl all 3.000002-1 [40.6 kB]
Get:140 http://archive.ubuntu.com/ubuntu focal/main amd64 libsub-name-perl amd64 0.26-1 [11.5 kB]
Get:141 http://archive.ubuntu.com/ubuntu focal/universe amd64 libclass-accessor-perl all 0.51-1 [21.2 kB]
Get:142 http://archive.ubuntu.com/ubuntu focal/main amd64 libclass-data-inheritable-perl all 0.08-3 [8084 B]
Get:143 http://archive.ubuntu.com/ubuntu focal/main amd64 libdbi-perl amd64 1.643-1 [730 kB]
Get:144 http://archive.ubuntu.com/ubuntu focal/universe amd64 libdbix-contextualfetch-perl all 1.03-4 [8176 B]
Get:145 http://archive.ubuntu.com/ubuntu focal/universe amd64 libima-dbi-perl all 0.35-2 [21.1 kB]
Get:146 http://archive.ubuntu.com/ubuntu focal/main amd64 libio-stringy-perl all 2.111-3 [55.8 kB]
Get:147 http://archive.ubuntu.com/ubuntu focal/universe amd64 libclass-trigger-perl all 0.14-2 [10.6 kB]
Get:148 http://archive.ubuntu.com/ubuntu focal/universe amd64 libuniversal-moniker-perl all 0.08-8 [6452 B]
Get:149 http://archive.ubuntu.com/ubuntu focal/main amd64 libclone-perl amd64 0.43-2 [11.0 kB]
Get:150 http://archive.ubuntu.com/ubuntu focal/universe amd64 libclass-dbi-perl all 3.0.17-4 [107 kB]
Get:151 http://archive.ubuntu.com/ubuntu focal/universe amd64 libdbd-sqlite3-perl amd64 1.64-1build1 [154 kB]
Get:152 http://archive.ubuntu.com/ubuntu focal/universe amd64 libclass-dbi-sqlite-perl all 0.11-5 [5896 B]
Get:153 http://archive.ubuntu.com/ubuntu focal/main amd64 liburi-perl all 1.76-2 [77.5 kB]
Get:154 http://archive.ubuntu.com/ubuntu focal/main amd64 libencode-locale-perl all 1.05-1 [12.3 kB]
Get:155 http://archive.ubuntu.com/ubuntu focal/main amd64 libtimedate-perl all 2.3200-1 [34.0 kB]
Get:156 http://archive.ubuntu.com/ubuntu focal/main amd64 libhttp-date-perl all 6.05-1 [9920 B]
Get:157 http://archive.ubuntu.com/ubuntu focal/main amd64 libfile-listing-perl all 6.04-1 [9774 B]
Get:158 http://archive.ubuntu.com/ubuntu focal/main amd64 libhtml-tagset-perl all 3.20-4 [12.5 kB]
Get:159 http://archive.ubuntu.com/ubuntu focal/main amd64 libhtml-parser-perl amd64 3.72-5 [86.3 kB]
Get:160 http://archive.ubuntu.com/ubuntu focal/main amd64 libhtml-tree-perl all 5.07-2 [200 kB]
Get:161 http://archive.ubuntu.com/ubuntu focal/main amd64 libio-html-perl all 1.001-1 [14.9 kB]
Get:162 http://archive.ubuntu.com/ubuntu focal/main amd64 liblwp-mediatypes-perl all 6.04-1 [19.5 kB]
Get:163 http://archive.ubuntu.com/ubuntu focal/main amd64 libhttp-message-perl all 6.22-1 [76.1 kB]
Get:164 http://archive.ubuntu.com/ubuntu focal/main amd64 libhttp-cookies-perl all 6.08-1 [18.3 kB]
Get:165 http://archive.ubuntu.com/ubuntu focal/main amd64 libhttp-negotiate-perl all 6.01-1 [12.5 kB]
Get:166 http://archive.ubuntu.com/ubuntu focal/main amd64 perl-openssl-defaults amd64 4 [7192 B]
Get:167 http://archive.ubuntu.com/ubuntu focal/main amd64 libnet-ssleay-perl amd64 1.88-2ubuntu1 [291 kB]
Get:168 http://archive.ubuntu.com/ubuntu focal/main amd64 libio-socket-ssl-perl all 2.067-1 [176 kB]
Get:169 http://archive.ubuntu.com/ubuntu focal/main amd64 libnet-http-perl all 6.19-1 [22.8 kB]
Get:170 http://archive.ubuntu.com/ubuntu focal/main amd64 liblwp-protocol-https-perl all 6.07-2ubuntu2 [8560 B]
Get:171 http://archive.ubuntu.com/ubuntu focal/main amd64 libtry-tiny-perl all 0.30-1 [20.5 kB]
Get:172 http://archive.ubuntu.com/ubuntu focal/main amd64 libwww-robotrules-perl all 6.02-1 [12.6 kB]
Get:173 http://archive.ubuntu.com/ubuntu focal/main amd64 libwww-perl all 6.43-1 [140 kB]
Get:174 http://archive.ubuntu.com/ubuntu focal/main amd64 libxml-parser-perl amd64 2.46-1 [193 kB]
Get:175 http://archive.ubuntu.com/ubuntu focal/universe amd64 libsvn-perl amd64 1.13.0-3 [937 kB]
Get:176 http://archive.ubuntu.com/ubuntu focal/universe amd64 perl-tk amd64 1:804.033-2build3 [1939 kB]
Get:177 http://archive.ubuntu.com/ubuntu focal/universe amd64 fcm all 2019.09.0-2 [812 kB]
Get:178 http://archive.ubuntu.com/ubuntu focal/main amd64 hunspell-en-us all 1:2018.04.16-1 [170 kB]
Get:179 http://archive.ubuntu.com/ubuntu focal/main amd64 javascript-common all 11 [6066 B]
Get:180 http://archive.ubuntu.com/ubuntu focal/universe amd64 kdiff3-doc all 1.8.01-1build1 [443 kB]
Get:181 http://archive.ubuntu.com/ubuntu focal/universe amd64 kwayland-data all 4:5.68.0-0ubuntu1 [4576 B]
Get:182 http://archive.ubuntu.com/ubuntu focal/main amd64 libwayland-cursor0 amd64 1.18.0-1 [10.3 kB]
Get:183 http://archive.ubuntu.com/ubuntu focal/universe amd64 libqt5waylandclient5 amd64 5.12.8-0ubuntu1 [270 kB]
Get:184 http://archive.ubuntu.com/ubuntu focal/universe amd64 libqt5quick5 amd64 5.12.8-0ubuntu1 [1335 kB]
Get:185 http://archive.ubuntu.com/ubuntu focal/universe amd64 libqt5waylandcompositor5 amd64 5.12.8-0ubuntu1 [300 kB]
Get:186 http://archive.ubuntu.com/ubuntu focal/main amd64 libwayland-egl1 amd64 1.18.0-1 [5692 B]
Get:187 http://archive.ubuntu.com/ubuntu focal/universe amd64 qtwayland5 amd64 5.12.8-0ubuntu1 [166 kB]
Get:188 http://archive.ubuntu.com/ubuntu focal/main amd64 libxss1 amd64 1:1.2.3-1 [8140 B]
Get:189 http://archive.ubuntu.com/ubuntu focal/universe amd64 libkf5idletime5 amd64 5.68.0-0ubuntu1 [27.5 kB]
Get:190 http://archive.ubuntu.com/ubuntu focal/universe amd64 libkf5waylandclient5 amd64 4:5.68.0-0ubuntu1 [183 kB]
Get:191 http://archive.ubuntu.com/ubuntu focal/universe amd64 kwayland-integration amd64 4:5.18.4.1-0ubuntu1 [27.9 kB]
Get:192 http://archive.ubuntu.com/ubuntu focal/main amd64 libatk1.0-data all 2.35.1-1ubuntu2 [2964 B]
Get:193 http://archive.ubuntu.com/ubuntu focal/main amd64 libatk1.0-0 amd64 2.35.1-1ubuntu2 [45.5 kB]
Get:194 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libatk-bridge2.0-0 amd64 2.34.2-0ubuntu2~20.04.1 [58.2 kB]
Get:195 http://archive.ubuntu.com/ubuntu focal/main amd64 libb-hooks-op-check-perl amd64 0.22-1build2 [10.2 kB]
Get:196 http://archive.ubuntu.com/ubuntu focal/universe amd64 libclone-choose-perl all 0.010-1 [7672 B]
Get:197 http://archive.ubuntu.com/ubuntu focal/universe amd64 libhash-merge-perl all 0.300-1 [12.8 kB]
Get:198 http://archive.ubuntu.com/ubuntu focal/main amd64 libclass-method-modifiers-perl all 2.13-1 [16.2 kB]
Get:199 http://archive.ubuntu.com/ubuntu focal/main amd64 libdynaloader-functions-perl all 0.003-1 [11.9 kB]
Get:200 http://archive.ubuntu.com/ubuntu focal/main amd64 libdevel-callchecker-perl amd64 0.008-1ubuntu1 [14.5 kB]
Get:201 http://archive.ubuntu.com/ubuntu focal/main amd64 libparams-classify-perl amd64 0.015-1build2 [21.1 kB]
Get:202 http://archive.ubuntu.com/ubuntu focal/main amd64 libmodule-runtime-perl all 0.016-1 [16.2 kB]
Get:203 http://archive.ubuntu.com/ubuntu focal/main amd64 libimport-into-perl all 1.002005-1 [11.0 kB]
Get:204 http://archive.ubuntu.com/ubuntu focal/main amd64 librole-tiny-perl all 2.001004-1 [16.5 kB]
Get:205 http://archive.ubuntu.com/ubuntu focal/main amd64 libstrictures-perl all 2.000006-1 [16.3 kB]
Get:206 http://archive.ubuntu.com/ubuntu focal/main amd64 libsub-quote-perl all 2.006006-1 [19.5 kB]
Get:207 http://archive.ubuntu.com/ubuntu focal/main amd64 libmoo-perl all 2.003006-1 [46.3 kB]
Get:208 http://archive.ubuntu.com/ubuntu focal/universe amd64 libsql-abstract-perl all 1.86-1 [69.0 kB]
Get:209 http://archive.ubuntu.com/ubuntu focal/universe amd64 libsql-abstract-limit-perl all 2:0.14.1-5 [19.0 kB]
Get:210 http://archive.ubuntu.com/ubuntu focal/universe amd64 libclass-dbi-abstractsearch-perl all 0.07-4 [7280 B]
Get:211 http://archive.ubuntu.com/ubuntu focal/main amd64 libclass-xsaccessor-perl amd64 1.19-3build3 [33.6 kB]
Get:212 http://archive.ubuntu.com/ubuntu focal/main amd64 liblcms2-2 amd64 2.9-4 [140 kB]
Get:213 http://archive.ubuntu.com/ubuntu focal/main amd64 libcolord2 amd64 1.4.4-2 [133 kB]
Get:214 http://archive.ubuntu.com/ubuntu focal/main amd64 libdata-dump-perl all 1.23-1 [27.0 kB]
Get:215 http://archive.ubuntu.com/ubuntu focal/main amd64 libepoxy0 amd64 1.5.4-1 [191 kB]
Get:216 http://archive.ubuntu.com/ubuntu focal/main amd64 libfont-afm-perl all 1.20-2 [13.2 kB]
Get:217 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libgdk-pixbuf2.0-bin amd64 2.40.0+dfsg-3ubuntu0.2 [14.1 kB]
Get:218 http://archive.ubuntu.com/ubuntu focal/main amd64 libsoup-gnome2.4-1 amd64 2.70.0-1 [6136 B]
Get:219 http://archive.ubuntu.com/ubuntu focal/main amd64 librest-0.7-0 amd64 0.8.1-1 [32.2 kB]
Get:220 http://archive.ubuntu.com/ubuntu focal/main amd64 libxcursor1 amd64 1:1.2.0-2 [20.1 kB]
Get:221 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libgtk-3-common all 3.24.20-0ubuntu1 [235 kB]
Get:222 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libgtk-3-0 amd64 3.24.20-0ubuntu1 [2620 kB]
Get:223 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libgtk-3-bin amd64 3.24.20-0ubuntu1 [61.9 kB]
Get:224 http://archive.ubuntu.com/ubuntu focal/main amd64 libhfstospell10 amd64 0.5.0-2build2 [63.4 kB]
Get:225 http://archive.ubuntu.com/ubuntu focal/main amd64 libhtml-form-perl all 6.07-1 [22.2 kB]
Get:226 http://archive.ubuntu.com/ubuntu focal/main amd64 libhtml-format-perl all 2.12-1 [41.3 kB]
Get:227 http://archive.ubuntu.com/ubuntu focal/main amd64 libhttp-daemon-perl all 6.06-1 [21.4 kB]
Get:228 http://archive.ubuntu.com/ubuntu focal/main amd64 libhunspell-1.7-0 amd64 1.7.0-2build2 [147 kB]
Get:229 http://archive.ubuntu.com/ubuntu focal/universe amd64 libkf5config-bin amd64 5.68.0-0ubuntu1 [36.3 kB]
Get:230 http://archive.ubuntu.com/ubuntu focal/universe amd64 libkf5dbusaddons-bin amd64 5.68.0-0ubuntu1 [7416 B]
Get:231 http://archive.ubuntu.com/ubuntu focal/universe amd64 libkf5globalaccelprivate5 amd64 5.68.0-0ubuntu1 [43.3 kB]
Get:232 http://archive.ubuntu.com/ubuntu focal/universe amd64 libkf5globalaccel-bin amd64 5.68.0-0ubuntu1 [13.4 kB]
Get:233 http://archive.ubuntu.com/ubuntu focal/universe amd64 libkf5iconthemes-bin amd64 5.68.0-0ubuntu1 [8864 B]
Get:234 http://archive.ubuntu.com/ubuntu focal/universe amd64 libqt5test5 amd64 5.12.8+dfsg-0ubuntu1 [131 kB]
Get:235 http://archive.ubuntu.com/ubuntu focal/universe amd64 libkf5parts-plugins amd64 5.68.0-0ubuntu1 [13.2 kB]
Get:236 http://archive.ubuntu.com/ubuntu focal/universe amd64 liblingua-en-inflect-perl all 1.904-1 [50.4 kB]
Get:237 http://archive.ubuntu.com/ubuntu focal/main amd64 libnet-smtp-ssl-perl all 1.04-1 [5948 B]
Get:238 http://archive.ubuntu.com/ubuntu focal/main amd64 libmailtools-perl all 2.21-1 [80.7 kB]
Get:239 http://archive.ubuntu.com/ubuntu focal/main amd64 libvoikko1 amd64 4.3-1build1 [103 kB]
Get:240 http://archive.ubuntu.com/ubuntu focal/main amd64 libwacom-bin amd64 1.3-2ubuntu1 [5484 B]
Get:241 http://archive.ubuntu.com/ubuntu focal/main amd64 media-player-info all 24-2 [30.0 kB]
Get:242 http://archive.ubuntu.com/ubuntu focal/universe amd64 qt5-gtk-platformtheme amd64 5.12.8+dfsg-0ubuntu1 [124 kB]
Get:243 http://archive.ubuntu.com/ubuntu focal/universe amd64 qttranslations5-l10n all 5.12.8-0ubuntu1 [1486 kB]
Get:244 http://archive.ubuntu.com/ubuntu focal/universe amd64 sonnet-plugins amd64 5.68.0-0ubuntu1 [50.9 kB]
Get:245 http://archive.ubuntu.com/ubuntu focal/main amd64 libauthen-sasl-perl all 2.1600-1 [48.7 kB]
Fetched 49.7 MB in 31s (1588 kB/s)
Extracting templates from packages: 100%
Preconfiguring packages ...
Selecting previously unselected package libdouble-conversion3:amd64.
(Reading database ... 32391 files and directories currently installed.)
Preparing to unpack .../000-libdouble-conversion3_3.1.5-4ubuntu1_amd64.deb ...
Unpacking libdouble-conversion3:amd64 (3.1.5-4ubuntu1) ...
Selecting previously unselected package libpcre2-16-0:amd64.
Preparing to unpack .../001-libpcre2-16-0_10.34-7_amd64.deb ...
Unpacking libpcre2-16-0:amd64 (10.34-7) ...
Selecting previously unselected package libqt5core5a:amd64.
Preparing to unpack .../002-libqt5core5a_5.12.8+dfsg-0ubuntu1_amd64.deb ...
Unpacking libqt5core5a:amd64 (5.12.8+dfsg-0ubuntu1) ...
Selecting previously unselected package fontconfig.
Preparing to unpack .../003-fontconfig_2.13.1-2ubuntu3_amd64.deb ...
Unpacking fontconfig (2.13.1-2ubuntu3) ...
Selecting previously unselected package libwayland-server0:amd64.
Preparing to unpack .../004-libwayland-server0_1.18.0-1_amd64.deb ...
Unpacking libwayland-server0:amd64 (1.18.0-1) ...
Selecting previously unselected package libgbm1:amd64.
Preparing to unpack .../005-libgbm1_20.2.6-0ubuntu0.20.04.1_amd64.deb ...
Unpacking libgbm1:amd64 (20.2.6-0ubuntu0.20.04.1) ...
Selecting previously unselected package libegl-mesa0:amd64.
Preparing to unpack .../006-libegl-mesa0_20.2.6-0ubuntu0.20.04.1_amd64.deb ...
Unpacking libegl-mesa0:amd64 (20.2.6-0ubuntu0.20.04.1) ...
Selecting previously unselected package libegl1:amd64.
Preparing to unpack .../007-libegl1_1.3.2-1~ubuntu0.20.04.1_amd64.deb ...
Unpacking libegl1:amd64 (1.3.2-1~ubuntu0.20.04.1) ...
Selecting previously unselected package libgraphite2-3:amd64.
Preparing to unpack .../008-libgraphite2-3_1.3.13-11build1_amd64.deb ...
Unpacking libgraphite2-3:amd64 (1.3.13-11build1) ...
Selecting previously unselected package libharfbuzz0b:amd64.
Preparing to unpack .../009-libharfbuzz0b_2.6.4-1ubuntu4_amd64.deb ...
Unpacking libharfbuzz0b:amd64 (2.6.4-1ubuntu4) ...
Selecting previously unselected package libevdev2:amd64.
Preparing to unpack .../010-libevdev2_1.9.0+dfsg-1ubuntu0.1_amd64.deb ...
Unpacking libevdev2:amd64 (1.9.0+dfsg-1ubuntu0.1) ...
Selecting previously unselected package libmtdev1:amd64.
Preparing to unpack .../011-libmtdev1_1.1.5-1.1_amd64.deb ...
Unpacking libmtdev1:amd64 (1.1.5-1.1) ...
Selecting previously unselected package libwacom-common.
Preparing to unpack .../012-libwacom-common_1.3-2ubuntu1_all.deb ...
Unpacking libwacom-common (1.3-2ubuntu1) ...
Selecting previously unselected package libwacom2:amd64.
Preparing to unpack .../013-libwacom2_1.3-2ubuntu1_amd64.deb ...
Unpacking libwacom2:amd64 (1.3-2ubuntu1) ...
Selecting previously unselected package libinput-bin.
Preparing to unpack .../014-libinput-bin_1.15.5-1ubuntu0.2_amd64.deb ...
Unpacking libinput-bin (1.15.5-1ubuntu0.2) ...
Selecting previously unselected package libinput10:amd64.
Preparing to unpack .../015-libinput10_1.15.5-1ubuntu0.2_amd64.deb ...
Unpacking libinput10:amd64 (1.15.5-1ubuntu0.2) ...
Selecting previously unselected package libjpeg-turbo8:amd64.
Preparing to unpack .../016-libjpeg-turbo8_2.0.3-0ubuntu1.20.04.1_amd64.deb ...
Unpacking libjpeg-turbo8:amd64 (2.0.3-0ubuntu1.20.04.1) ...
Selecting previously unselected package libjpeg8:amd64.
Preparing to unpack .../017-libjpeg8_8c-2ubuntu8_amd64.deb ...
Unpacking libjpeg8:amd64 (8c-2ubuntu8) ...
Selecting previously unselected package libqt5dbus5:amd64.
Preparing to unpack .../018-libqt5dbus5_5.12.8+dfsg-0ubuntu1_amd64.deb ...
Unpacking libqt5dbus5:amd64 (5.12.8+dfsg-0ubuntu1) ...
Selecting previously unselected package libqt5network5:amd64.
Preparing to unpack .../019-libqt5network5_5.12.8+dfsg-0ubuntu1_amd64.deb ...
Unpacking libqt5network5:amd64 (5.12.8+dfsg-0ubuntu1) ...
Selecting previously unselected package libxcb-icccm4:amd64.
Preparing to unpack .../020-libxcb-icccm4_0.4.1-1.1_amd64.deb ...
Unpacking libxcb-icccm4:amd64 (0.4.1-1.1) ...
Selecting previously unselected package libxcb-shm0:amd64.
Preparing to unpack .../021-libxcb-shm0_1.14-2_amd64.deb ...
Unpacking libxcb-shm0:amd64 (1.14-2) ...
Selecting previously unselected package libxcb-util1:amd64.
Preparing to unpack .../022-libxcb-util1_0.4.0-0ubuntu3_amd64.deb ...
Unpacking libxcb-util1:amd64 (0.4.0-0ubuntu3) ...
Selecting previously unselected package libxcb-image0:amd64.
Preparing to unpack .../023-libxcb-image0_0.4.0-1build1_amd64.deb ...
Unpacking libxcb-image0:amd64 (0.4.0-1build1) ...
Selecting previously unselected package libxcb-keysyms1:amd64.
Preparing to unpack .../024-libxcb-keysyms1_0.4.0-1build1_amd64.deb ...
Unpacking libxcb-keysyms1:amd64 (0.4.0-1build1) ...
Selecting previously unselected package libxcb-render0:amd64.
Preparing to unpack .../025-libxcb-render0_1.14-2_amd64.deb ...
Unpacking libxcb-render0:amd64 (1.14-2) ...
Selecting previously unselected package libxcb-render-util0:amd64.
Preparing to unpack .../026-libxcb-render-util0_0.3.9-1build1_amd64.deb ...
Unpacking libxcb-render-util0:amd64 (0.3.9-1build1) ...
Selecting previously unselected package libxcb-xinerama0:amd64.
Preparing to unpack .../027-libxcb-xinerama0_1.14-2_amd64.deb ...
Unpacking libxcb-xinerama0:amd64 (1.14-2) ...
Selecting previously unselected package libxcb-xinput0:amd64.
Preparing to unpack .../028-libxcb-xinput0_1.14-2_amd64.deb ...
Unpacking libxcb-xinput0:amd64 (1.14-2) ...
Selecting previously unselected package libxcb-xkb1:amd64.
Preparing to unpack .../029-libxcb-xkb1_1.14-2_amd64.deb ...
Unpacking libxcb-xkb1:amd64 (1.14-2) ...
Selecting previously unselected package libxkbcommon0:amd64.
Preparing to unpack .../030-libxkbcommon0_0.10.0-1_amd64.deb ...
Unpacking libxkbcommon0:amd64 (0.10.0-1) ...
Selecting previously unselected package libxkbcommon-x11-0:amd64.
Preparing to unpack .../031-libxkbcommon-x11-0_0.10.0-1_amd64.deb ...
Unpacking libxkbcommon-x11-0:amd64 (0.10.0-1) ...
Selecting previously unselected package libqt5gui5:amd64.
Preparing to unpack .../032-libqt5gui5_5.12.8+dfsg-0ubuntu1_amd64.deb ...
Unpacking libqt5gui5:amd64 (5.12.8+dfsg-0ubuntu1) ...
Selecting previously unselected package libqt5widgets5:amd64.
Preparing to unpack .../033-libqt5widgets5_5.12.8+dfsg-0ubuntu1_amd64.deb ...
Unpacking libqt5widgets5:amd64 (5.12.8+dfsg-0ubuntu1) ...
Selecting previously unselected package libqt5svg5:amd64.
Preparing to unpack .../034-libqt5svg5_5.12.8-0ubuntu1_amd64.deb ...
Unpacking libqt5svg5:amd64 (5.12.8-0ubuntu1) ...
Selecting previously unselected package hicolor-icon-theme.
Preparing to unpack .../035-hicolor-icon-theme_0.17-2_all.deb ...
Unpacking hicolor-icon-theme (0.17-2) ...
Selecting previously unselected package libjbig0:amd64.
Preparing to unpack .../036-libjbig0_2.1-3.1build1_amd64.deb ...
Unpacking libjbig0:amd64 (2.1-3.1build1) ...
Selecting previously unselected package libwebp6:amd64.
Preparing to unpack .../037-libwebp6_0.6.1-2_amd64.deb ...
Unpacking libwebp6:amd64 (0.6.1-2) ...
Selecting previously unselected package libtiff5:amd64.
Preparing to unpack .../038-libtiff5_4.1.0+git191117-2ubuntu0.20.04.1_amd64.deb ...
Unpacking libtiff5:amd64 (4.1.0+git191117-2ubuntu0.20.04.1) ...
Selecting previously unselected package libgdk-pixbuf2.0-common.
Preparing to unpack .../039-libgdk-pixbuf2.0-common_2.40.0+dfsg-3ubuntu0.2_all.deb ...
Unpacking libgdk-pixbuf2.0-common (2.40.0+dfsg-3ubuntu0.2) ...
Selecting previously unselected package libgdk-pixbuf2.0-0:amd64.
Preparing to unpack .../040-libgdk-pixbuf2.0-0_2.40.0+dfsg-3ubuntu0.2_amd64.deb ...
Unpacking libgdk-pixbuf2.0-0:amd64 (2.40.0+dfsg-3ubuntu0.2) ...
Selecting previously unselected package gtk-update-icon-cache.
Preparing to unpack .../041-gtk-update-icon-cache_3.24.20-0ubuntu1_amd64.deb ...
No diversion 'diversion of /usr/sbin/update-icon-caches to /usr/sbin/update-icon-caches.gtk2 by libgtk-3-bin', none removed.
No diversion 'diversion of /usr/share/man/man8/update-icon-caches.8.gz to /usr/share/man/man8/update-icon-caches.gtk2.8.gz by libgtk-3-bin', none removed.
Unpacking gtk-update-icon-cache (3.24.20-0ubuntu1) ...
Selecting previously unselected package libpixman-1-0:amd64.
Preparing to unpack .../042-libpixman-1-0_0.38.4-0ubuntu1_amd64.deb ...
Unpacking libpixman-1-0:amd64 (0.38.4-0ubuntu1) ...
Selecting previously unselected package libcairo2:amd64.
Preparing to unpack .../043-libcairo2_1.16.0-4ubuntu1_amd64.deb ...
Unpacking libcairo2:amd64 (1.16.0-4ubuntu1) ...
Selecting previously unselected package libcairo-gobject2:amd64.
Preparing to unpack .../044-libcairo-gobject2_1.16.0-4ubuntu1_amd64.deb ...
Unpacking libcairo-gobject2:amd64 (1.16.0-4ubuntu1) ...
Selecting previously unselected package libthai-data.
Preparing to unpack .../045-libthai-data_0.1.28-3_all.deb ...
Unpacking libthai-data (0.1.28-3) ...
Selecting previously unselected package libdatrie1:amd64.
Preparing to unpack .../046-libdatrie1_0.2.12-3_amd64.deb ...
Unpacking libdatrie1:amd64 (0.2.12-3) ...
Selecting previously unselected package libthai0:amd64.
Preparing to unpack .../047-libthai0_0.1.28-3_amd64.deb ...
Unpacking libthai0:amd64 (0.1.28-3) ...
Selecting previously unselected package libpango-1.0-0:amd64.
Preparing to unpack .../048-libpango-1.0-0_1.44.7-2ubuntu4_amd64.deb ...
Unpacking libpango-1.0-0:amd64 (1.44.7-2ubuntu4) ...
Selecting previously unselected package libpangoft2-1.0-0:amd64.
Preparing to unpack .../049-libpangoft2-1.0-0_1.44.7-2ubuntu4_amd64.deb ...
Unpacking libpangoft2-1.0-0:amd64 (1.44.7-2ubuntu4) ...
Selecting previously unselected package libpangocairo-1.0-0:amd64.
Preparing to unpack .../050-libpangocairo-1.0-0_1.44.7-2ubuntu4_amd64.deb ...
Unpacking libpangocairo-1.0-0:amd64 (1.44.7-2ubuntu4) ...
Selecting previously unselected package librsvg2-2:amd64.
Preparing to unpack .../051-librsvg2-2_2.48.9-1ubuntu0.20.04.1_amd64.deb ...
Unpacking librsvg2-2:amd64 (2.48.9-1ubuntu0.20.04.1) ...
Selecting previously unselected package librsvg2-common:amd64.
Preparing to unpack .../052-librsvg2-common_2.48.9-1ubuntu0.20.04.1_amd64.deb ...
Unpacking librsvg2-common:amd64 (2.48.9-1ubuntu0.20.04.1) ...
Selecting previously unselected package humanity-icon-theme.
Preparing to unpack .../053-humanity-icon-theme_0.6.15_all.deb ...
Unpacking humanity-icon-theme (0.6.15) ...
Selecting previously unselected package ubuntu-mono.
Preparing to unpack .../054-ubuntu-mono_19.04-0ubuntu3_all.deb ...
Unpacking ubuntu-mono (19.04-0ubuntu3) ...
Selecting previously unselected package adwaita-icon-theme.
Preparing to unpack .../055-adwaita-icon-theme_3.36.1-2ubuntu0.20.04.2_all.deb .....................................]
Unpacking adwaita-icon-theme (3.36.1-2ubuntu0.20.04.2) ...
Selecting previously unselected package libaspell15:amd64.
Preparing to unpack .../056-libaspell15_0.60.8-1build1_amd64.deb ...
Unpacking libaspell15:amd64 (0.60.8-1build1) ...
Selecting previously unselected package emacsen-common.
Preparing to unpack .../057-emacsen-common_3.0.4_all.deb ...
Unpacking emacsen-common (3.0.4) ...
Selecting previously unselected package dictionaries-common.
Preparing to unpack .../058-dictionaries-common_1.28.1_all.deb ...
Adding 'diversion of /usr/share/dict/words to /usr/share/dict/words.pre-dictionaries-common by dictionaries-common'
Unpacking dictionaries-common (1.28.1) ...
Selecting previously unselected package aspell......................................................................]
Preparing to unpack .../059-aspell_0.60.8-1build1_amd64.deb ...
Unpacking aspell (0.60.8-1build1) ...
Selecting previously unselected package aspell-en.
Preparing to unpack .../060-aspell-en_2018.04.16-0-1_all.deb ...
Unpacking aspell-en (2018.04.16-0-1) ...
Selecting previously unselected package libatspi2.0-0:amd64.
Selecting previously unselected package libkf5auth-data.............................................................]
Preparing to unpack .../064-libkf5auth-data_5.68.0-0ubuntu1_all.deb ...
Unpacking libkf5auth-data (5.68.0-0ubuntu1) ...-core.
Selecting previously unselected package libkf5authcore5:amd64.......................................................]
Preparing to unpack .../069-libkf5authcore5_5.68.0-0ubuntu1_amd64.deb ... ...
Unpacking libkf5authcore5:amd64 (5.68.0-0ubuntu1) ...5:amd64.
Selecting previously unselected package libkf5codecs-data._amd64.deb ...
Preparing to unpack .../070-libkf5codecs-data_5.68.0-0ubuntu1_all.deb ...
Unpacking libkf5codecs-data (5.68.0-0ubuntu1) ...
Selecting previously unselected package libkf5codecs5:amd64.d64.
Preparing to unpack .../071-libkf5codecs5_5.68.0-0ubuntu1_amd64.deb ... ...
Unpacking libkf5codecs5:amd64 (5.68.0-0ubuntu1) ... ...
Selecting previously unselected package libkf5completion-data.4.
Preparing to unpack .../072-libkf5completion-data_5.68.0-0ubuntu1_all.deb ...
Unpacking libkf5completion-data (5.68.0-0ubuntu1) ......
Selecting previously unselected package libkf5config-data.
Preparing to unpack .../073-libkf5config-data_5.68.0-0ubuntu1_all.deb ...
Unpacking libkf5config-data (5.68.0-0ubuntu1) ...
Selecting previously unselected package libkf5configcore5:amd64.....................................................]
Preparing to unpack .../074-libkf5configcore5_5.68.0-0ubuntu1_amd64.deb ...
Unpacking libkf5configcore5:amd64 (5.68.0-0ubuntu1) ...
Selecting previously unselected package libkf5configgui5:amd64.
Preparing to unpack .../075-libkf5configgui5_5.68.0-0ubuntu1_amd64.deb ...
Unpacking libkf5configgui5:amd64 (5.68.0-0ubuntu1) ...
Selecting previously unselected package libkf5widgetsaddons-data.
Preparing to unpack .../076-libkf5widgetsaddons-data_5.68.0-0ubuntu1_all.deb ...
Unpacking libkf5widgetsaddons-data (5.68.0-0ubuntu1) ...
Progress: [ 17%] [#######82-libkf5i18n-data_5.68.0-0ubuntu1_all.deb ................................................]
Unpacking libkf5i18n-data (5.68.0-0ubuntu1) ...5_5.68.0-0ubuntu1_amd64.deb ...
Selecting previously unselected package libqt5qml5:amd64..
Preparing to unpack .../083-libqt5qml5_5.12.8-0ubuntu1_amd64.deb ...
Unpacking libqt5qml5:amd64 (5.12.8-0ubuntu1) ...68.0-0ubuntu1_amd64.deb ...
Selecting previously unselected package libkf5i18n5:amd64.
Preparing to unpack .../084-libkf5i18n5_5.68.0-0ubuntu1_amd64.deb ...
Unpacking libkf5i18n5:amd64 (5.68.0-0ubuntu1) ...ata_5.68.0-0ubuntu1_all.deb ...
Selecting previously unselected package libkf5configwidgets5:amd64.
Preparing to unpack .../085-libkf5configwidgets5_5.68.0-0ubuntu1_amd64.deb ...
Unpacking libkf5configwidgets5:amd64 (5.68.0-0ubuntu1) ...u1_amd64.deb ...
Selecting previously unselected package libkf5dbusaddons-data.
Preparing to unpack .../086-libkf5dbusaddons-data_5.68.0-0ubuntu1_all.deb ...
Unpacking libkf5dbusaddons-data (5.68.0-0ubuntu1) ...ubuntu1_amd64.deb ...
Selecting previously unselected package libkf5dbusaddons5:amd64.
Preparing to unpack .../087-libkf5dbusaddons5_5.68.0-0ubuntu1_amd64.deb ...
Progress: [ 18%]dbusaddons5:amd64 (5.68.0-0ubuntu1) ................................................................]
Selecting previously unselected package libkf5doctools5:amd64.
Preparing to unpack .../088-libkf5doctools5_5.68.0-0ubuntu1_amd64.deb ...
Unpacking libkf5doctools5:amd64 (5.68.0-0ubuntu1) ...
Selecting previously unselected package libkf5itemviews-data.
Preparing to unpack .../089-libkf5itemviews-data_5.68.0-0ubuntu1_all.deb ...
Unpacking libkf5itemviews-data (5.68.0-0ubuntu1) ...
Selecting previously unselected package libkf5itemviews5:amd64.
Preparing to unpack .../090-libkf5itemviews5_5.68.0-0ubuntu1_amd64.deb ...
Unpacking libkf5itemviews5:amd64 (5.68.0-0ubuntu1) ...
Selecting previously unselected package libkf5windowsystem-data.
Preparing to unpack .../091-libkf5windowsystem-data_5.68.0-0ubuntu1_all.deb ...
Unpacking libkf5windowsystem-data (5.68.0-0ubuntu1) ...
Selecting previously unselected package libxcb-res0:amd64.
Preparing to unpack .../092-libxcb-res0_1.14-2_amd64.deb ...
Unpacking libxcb-res0:amd64 (1.14-2) ...
Progress: [ 20%] [###########ed package libkf5windowsystem5:amd64...................................................]
Preparing to unpack .../093-libkf5windowsystem5_5.68.0-0ubuntu1_amd64.deb ...
Unpacking libkf5windowsystem5:amd64 (5.68.0-0ubuntu1) ...
Selecting previously unselected package libkf5crash5:amd64.
Preparing to unpack .../094-libkf5crash5_5.68.0-0ubuntu1_amd64.deb ...
Unpacking libkf5crash5:amd64 (5.68.0-0ubuntu1) ...
Selecting previously unselected package libkf5service-data.
Preparing to unpack .../095-libkf5service-data_5.68.0-0ubuntu1_all.deb ...
Unpacking libkf5service-data (5.68.0-0ubuntu1) ...
Selecting previously unselected package libqt5xml5:amd64.
Preparing to unpack .../096-libqt5xml5_5.12.8+dfsg-0ubuntu1_amd64.deb ...
Unpacking libqt5xml5:amd64 (5.12.8+dfsg-0ubuntu1) ...
Selecting previously unselected package libkf5service5:amd64.
Preparing to unpack .../097-libkf5service5_5.68.0-0ubuntu1_amd64.deb ...
Unpacking libkf5service5:amd64 (5.68.0-0ubuntu1) ...
Selecting previously unselected package libkf5service-bin.
Progress: [ 22%] [###############5service-bin_5.68.0-0ubuntu1_amd64.deb ............................................]
Unpacking libkf5service-bin (5.68.0-0ubuntu1) ...
Selecting previously unselected package libkf5kiocore5:amd64.
Preparing to unpack .../099-libkf5kiocore5_5.68.0-0ubuntu1_amd64.deb ...
Unpacking libkf5kiocore5:amd64 (5.68.0-0ubuntu1) ...
Selecting previously unselected package libkf5kiontlm5:amd64.
Preparing to unpack .../100-libkf5kiontlm5_5.68.0-0ubuntu1_amd64.deb ...
Unpacking libkf5kiontlm5:amd64 (5.68.0-0ubuntu1) ...
Selecting previously unselected package libkf5iconthemes-data.
Preparing to unpack .../101-libkf5iconthemes-data_5.68.0-0ubuntu1_all.deb ...
Unpacking libkf5iconthemes-data (5.68.0-0ubuntu1) ...
Selecting previously unselected package libkf5iconthemes5:amd64.
Preparing to unpack .../102-libkf5iconthemes5_5.68.0-0ubuntu1_amd64.deb ...
Unpacking libkf5iconthemes5:amd64 (5.68.0-0ubuntu1) ...
Selecting previously unselected package libkf5jobwidgets-data.
Preparing to unpack .../103-libkf5jobwidgets-data_5.68.0-0ubuntu1_all.deb ...
Progreing libkf5jobwidgets-data (5.68.0-0ubuntu1) ..................................................................]
Selecting previously unselected package libkf5jobwidgets5:amd64.
Preparing to unpack .../104-libkf5jobwidgets5_5.68.0-0ubuntu1_amd64.deb ...
Unpacking libkf5jobwidgets5:amd64 (5.68.0-0ubuntu1) ...
Selecting previously unselected package libkf5kiowidgets5:amd64.
Preparing to unpack .../105-libkf5kiowidgets5_5.68.0-0ubuntu1_amd64.deb ...
Unpacking libkf5kiowidgets5:amd64 (5.68.0-0ubuntu1) ...
Selecting previously unselected package libkf5notifications-data.
Preparing to unpack .../106-libkf5notifications-data_5.68.0-0ubuntu1_all.deb ...
Unpacking libkf5notifications-data (5.68.0-0ubuntu1) ...
Selecting previously unselected package libdbusmenu-qt5-2:amd64.
Preparing to unpack .../107-libdbusmenu-qt5-2_0.9.3+16.04.20160218-2build1_amd64.deb ...
Unpacking libdbusmenu-qt5-2:amd64 (0.9.3+16.04.20160218-2build1) ...
Selecting previously unselected package libqt5texttospeech5:amd64.
Progress: [ 25%] [########################..........................................................................]
Unpacking libqt5texttospeech5:amd64 (5.12.8-0ubuntu1) ...
Selecting previously unselected package libkf5notifications5:amd64.
Preparing to unpack .../109-libkf5notifications5_5.68.0-0ubuntu1_amd64.deb ...
Unpacking libkf5notifications5:amd64 (5.68.0-0ubuntu1) ...
Selecting previously unselected package libkf5solid5-data.
Preparing to unpack .../110-libkf5solid5-data_5.68.0-0ubuntu1_all.deb ...
Unpacking libkf5solid5-data (5.68.0-0ubuntu1) ...
Selecting previously unselected package libkf5solid5:amd64.
Preparing to unpack .../111-libkf5solid5_5.68.0-0ubuntu1_amd64.deb ...
Unpacking libkf5solid5:amd64 (5.68.0-0ubuntu1) ...
Selecting previously unselected package libkf5textwidgets-data.
Preparing to unpack .../112-libkf5textwidgets-data_5.68.0-0ubuntu1_all.deb ...
Unpacking libkf5textwidgets-data (5.68.0-0ubuntu1) ...
Selecting previously unselected package libkf5sonnet5-data.
Preparing to unpack .../113-libkf5sonnet5-data_5.68.0-0ubuntu1_all.deb ...
Progress: [ 26%] [########################tu1) .....................................................................]
Selecting previously unselected package libkf5sonnetcore5:amd64.
Preparing to unpack .../114-libkf5sonnetcore5_5.68.0-0ubuntu1_amd64.deb ...
Unpacking libkf5sonnetcore5:amd64 (5.68.0-0ubuntu1) ...
Selecting previously unselected package libkf5sonnetui5:amd64.
Preparing to unpack .../115-libkf5sonnetui5_5.68.0-0ubuntu1_amd64.deb ...
Unpacking libkf5sonnetui5:amd64 (5.68.0-0ubuntu1) ...
Selecting previously unselected package libkf5textwidgets5:amd64.
Preparing to unpack .../116-libkf5textwidgets5_5.68.0-0ubuntu1_amd64.deb ...
Unpacking libkf5textwidgets5:amd64 (5.68.0-0ubuntu1) ...
Selecting previously unselected package libkf5wallet-data.
Preparing to unpack .../117-libkf5wallet-data_5.68.0-0ubuntu2_all.deb ...
Unpacking libkf5wallet-data (5.68.0-0ubuntu2) ...
Selecting previously unselected package libgpgmepp6:amd64.
Preparing to unpack .../118-libgpgmepp6_1.13.1-7ubuntu2_amd64.deb ...
Unpacking libgpgmepp6:amd64 (1.13.1-7ubuntu2) ...
Progress: [ 28%] [###########################....tbackend5-5:amd64..................................................]
Preparing to unpack .../119-libkwalletbackend5-5_5.68.0-0ubuntu2_amd64.deb ...
Unpacking libkwalletbackend5-5:amd64 (5.68.0-0ubuntu2) ...
Selecting previously unselected package libkf5wallet5:amd64.
Preparing to unpack .../120-libkf5wallet5_5.68.0-0ubuntu2_amd64.deb ...
Unpacking libkf5wallet5:amd64 (5.68.0-0ubuntu2) ...
Selecting previously unselected package libkf5wallet-bin.
Preparing to unpack .../121-libkf5wallet-bin_5.68.0-0ubuntu2_amd64.deb ...
Unpacking libkf5wallet-bin (5.68.0-0ubuntu2) ...
Selecting previously unselected package kio.
Preparing to unpack .../122-kio_5.68.0-0ubuntu1_amd64.deb ...
Unpacking kio (5.68.0-0ubuntu1) ...
Selecting previously unselected package libkf5parts-data.
Preparing to unpack .../123-libkf5parts-data_5.68.0-0ubuntu1_all.deb ...
Unpacking libkf5parts-data (5.68.0-0ubuntu1) ...
Selecting previously unselected package libkf5xmlgui-bin.
Preparing to unpack .../124-libkf5xmlgui-bin_5.68.0-0ubuntu2_amd64.deb ...
Progress: [ 30%] [#########(5.68.0-0ubuntu2) .......................................................................]
Selecting previously unselected package libkf5xmlgui-data.
Preparing to unpack .../125-libkf5xmlgui-data_5.68.0-0ubuntu2_all.deb ...
Unpacking libkf5xmlgui-data (5.68.0-0ubuntu2) ...
Selecting previously unselected package libkf5attica5:amd64.
Preparing to unpack .../126-libkf5attica5_5.68.0-0ubuntu1_amd64.deb ...
Unpacking libkf5attica5:amd64 (5.68.0-0ubuntu1) ...
Selecting previously unselected package libkf5globalaccel-data.
Preparing to unpack .../127-libkf5globalaccel-data_5.68.0-0ubuntu1_all.deb ...
Unpacking libkf5globalaccel-data (5.68.0-0ubuntu1) ...
Selecting previously unselected package libkf5globalaccel5:amd64.
Preparing to unpack .../128-libkf5globalaccel5_5.68.0-0ubuntu1_amd64.deb ...
Unpacking libkf5globalaccel5:amd64 (5.68.0-0ubuntu1) ...
Selecting previously unselected package libavahi-common-data:amd64.
Preparing to unpack .../129-libavahi-common-data_0.7-4ubuntu7_amd64.deb ...
Unpacking libavahi-common-data:amd64 (0.7-4ubuntu7) ...
Progress: [ 31%] [## unselected package libavahi-common3:amd64......................................................]
Preparing to unpack .../130-libavahi-common3_0.7-4ubuntu7_amd64.deb ...
Unpacking libavahi-common3:amd64 (0.7-4ubuntu7) ...
Selecting previously unselected package libavahi-client3:amd64.
Preparing to unpack .../131-libavahi-client3_0.7-4ubuntu7_amd64.deb ...
Unpacking libavahi-client3:amd64 (0.7-4ubuntu7) ...
Selecting previously unselected package libcups2:amd64.
Preparing to unpack .../132-libcups2_2.3.1-9ubuntu1.1_amd64.deb ...
Unpacking libcups2:amd64 (2.3.1-9ubuntu1.1) ...
Selecting previously unselected package libqt5printsupport5:amd64.
Preparing to unpack .../133-libqt5printsupport5_5.12.8+dfsg-0ubuntu1_amd64.deb ...
Unpacking libqt5printsupport5:amd64 (5.12.8+dfsg-0ubuntu1) ...
Selecting previously unselected package libkf5xmlgui5:amd64.
Preparing to unpack .../134-libkf5xmlgui5_5.68.0-0ubuntu2_amd64.deb ...
Unpacking libkf5xmlgui5:amd64 (5.68.0-0ubuntu2) ...
Selecting previously unselected package libkf5parts5:amd64.
Progress: [ 33%] [####./135-libkf5parts5_5.68.0-0ubuntu1_amd64.deb .................................................]
Unpacking libkf5parts5:amd64 (5.68.0-0ubuntu1) ...
Selecting previously unselected package kdiff3.
Preparing to unpack .../136-kdiff3_1.8.01-1build1_amd64.deb ...
Unpacking kdiff3 (1.8.01-1build1) ...
Selecting previously unselected package libjs-jquery.
Preparing to unpack .../137-libjs-jquery_3.3.1~dfsg-3_all.deb ...
Unpacking libjs-jquery (3.3.1~dfsg-3) ...
Selecting previously unselected package libconfig-inifiles-perl.
Preparing to unpack .../138-libconfig-inifiles-perl_3.000002-1_all.deb ...
Unpacking libconfig-inifiles-perl (3.000002-1) ...
Selecting previously unselected package libsub-name-perl.
Preparing to unpack .../139-libsub-name-perl_0.26-1_amd64.deb ...
Unpacking libsub-name-perl (0.26-1) ...
Selecting previously unselected package libclass-accessor-perl.
Preparing to unpack .../140-libclass-accessor-perl_0.51-1_all.deb ...
Unpacking libclass-accessor-perl (0.51-1) ...
Progress: [ 35%] [##################################........table-perl..............................................]
Preparing to unpack .../141-libclass-data-inheritable-perl_0.08-3_all.deb ...
Unpacking libclass-data-inheritable-perl (0.08-3) ...
Selecting previously unselected package libdbi-perl:amd64.
Preparing to unpack .../142-libdbi-perl_1.643-1_amd64.deb ...
Unpacking libdbi-perl:amd64 (1.643-1) ...
Selecting previously unselected package libdbix-contextualfetch-perl.
Preparing to unpack .../143-libdbix-contextualfetch-perl_1.03-4_all.deb ...
Unpacking libdbix-contextualfetch-perl (1.03-4) ...
Selecting previously unselected package libima-dbi-perl.
Preparing to unpack .../144-libima-dbi-perl_0.35-2_all.deb ...