forked from yatt-ze/WiBr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.log
1241 lines (1219 loc) · 97.9 KB
/
build.log
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
```
Worker information
hostname: i-0f8209e-precise-production-2-worker-org-docker.travisci.net:61dd212f-fb5c-4e4e-acbd-219f099a4f1e
version: v2.5.0 https://github.com/travis-ci/worker/tree/da3a43228dffc0fcca5a46569ca786b22991979f
instance: 881ff4f:travis:default
startup: 767.924117ms
Build system information
Build language: csharp
Build group: stable
Build dist: precise
Build id: 228969983
Job id: 228969984
travis-build version: 66bd59b85
Build image provisioning date and time
Thu Feb 5 15:09:33 UTC 2015
Operating System Details
Distributor ID: Ubuntu
Description: Ubuntu 12.04.5 LTS
Release: 12.04
Codename: precise
Linux Version
3.13.0-29-generic
Cookbooks Version
a68419e https://github.com/travis-ci/travis-cookbooks/tree/a68419e
GCC version
gcc (Ubuntu/Linaro 4.6.3-1ubuntu5) 4.6.3
Copyright (C) 2011 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
LLVM version
clang version 3.4 (tags/RELEASE_34/final)
Target: x86_64-unknown-linux-gnu
Thread model: posix
Pre-installed Ruby versions
ruby-1.9.3-p551
Pre-installed Node.js versions
v0.10.36
Pre-installed Go versions
1.4.1
Redis version
redis-server 2.8.19
riak version
2.0.2
MongoDB version
MongoDB 2.4.12
CouchDB version
couchdb 1.6.1
Neo4j version
1.9.4
RabbitMQ Version
3.4.3
ElasticSearch version
1.4.0
Installed Sphinx versions
2.0.10
2.1.9
2.2.6
Default Sphinx version
2.2.6
Installed Firefox version
firefox 31.0esr
PhantomJS version
1.9.8
ant -version
Apache Ant(TM) version 1.8.2 compiled on December 3 2011
mvn -version
Apache Maven 3.2.5 (12a6b3acb947671f09b81f49094c53f426d8cea1; 2014-12-14T17:29:23+00:00)
Maven home: /usr/local/maven
Java version: 1.7.0_76, vendor: Oracle Corporation
Java home: /usr/lib/jvm/java-7-oracle/jre
Default locale: en_US, platform encoding: ANSI_X3.4-1968
OS name: "linux", version: "3.13.0-29-generic", arch: "amd64", family: "unix"
$ export DEBIAN_FRONTEND=noninteractive
Reading package lists...
Building dependency tree...
Reading state information...
The following extra packages will be installed:
libc-bin libc-dev-bin libc6-dev
Suggested packages:
glibc-doc
The following packages will be upgraded:
libc-bin libc-dev-bin libc6 libc6-dev
4 upgraded, 0 newly installed, 0 to remove and 277 not upgraded.
Need to get 8,856 kB of archives.
After this operation, 13.3 kB of additional disk space will be used.
Get:1 http://us.archive.ubuntu.com/ubuntu/ precise-updates/main libc6-dev amd64 2.15-0ubuntu10.18 [2,948 kB]
Get:2 http://us.archive.ubuntu.com/ubuntu/ precise-updates/main libc-dev-bin amd64 2.15-0ubuntu10.18 [84.5 kB]
Get:3 http://us.archive.ubuntu.com/ubuntu/ precise-updates/main libc-bin amd64 2.15-0ubuntu10.18 [1,178 kB]
Get:4 http://us.archive.ubuntu.com/ubuntu/ precise-updates/main libc6 amd64 2.15-0ubuntu10.18 [4,646 kB]
Fetched 8,856 kB in 0s (22.2 MB/s)
Preconfiguring packages ...
(Reading database ... 71420 files and directories currently installed.)
Preparing to replace libc6-dev 2.15-0ubuntu10.10 (using .../libc6-dev_2.15-0ubuntu10.18_amd64.deb) ...
Unpacking replacement libc6-dev ...
Preparing to replace libc-dev-bin 2.15-0ubuntu10.10 (using .../libc-dev-bin_2.15-0ubuntu10.18_amd64.deb) ...
Unpacking replacement libc-dev-bin ...
Preparing to replace libc-bin 2.15-0ubuntu10.10 (using .../libc-bin_2.15-0ubuntu10.18_amd64.deb) ...
Unpacking replacement libc-bin ...
Processing triggers for man-db ...
Setting up libc-bin (2.15-0ubuntu10.18) ...
(Reading database ... 71419 files and directories currently installed.)
Preparing to replace libc6 2.15-0ubuntu10.10 (using .../libc6_2.15-0ubuntu10.18_amd64.deb) ...
Unpacking replacement libc6 ...
Setting up libc6 (2.15-0ubuntu10.18) ...
Setting up libc-dev-bin (2.15-0ubuntu10.18) ...
Setting up libc6-dev (2.15-0ubuntu10.18) ...
Processing triggers for libc-bin ...
ldconfig deferred processing now taking place
C# support for Travis-CI is community maintained.
Please open any issues at https://github.com/travis-ci/travis-ci/issues/new and cc @joshua-anderson @akoeplinger @nterry
Installing Mono
Executing: gpg --ignore-time-conflict --no-options --no-default-keyring --secret-keyring /tmp/tmp.T0gnnPp2HD --trustdb-name /etc/apt/trustdb.gpg --keyring /etc/apt/trusted.gpg --primary-keyring /etc/apt/trusted.gpg --keyring /etc/apt/trusted.gpg.d//apt.postgresql.org.gpg --keyserver keyserver.ubuntu.com --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF
gpg: requesting key D3D831EF from hkp server keyserver.ubuntu.com
gpg: key D3D831EF: public key "Xamarin Public Jenkins (auto-signing) <[email protected]>" imported
gpg: no ultimately trusted keys found
gpg: Total number processed: 1
gpg: imported: 1 (RSA: 1)
Extracting templates from packages: 100%
Preconfiguring packages ...
Selecting previously unselected package mono-runtime-sgen.
(Reading database ... 71419 files and directories currently installed.)
Unpacking mono-runtime-sgen (from .../mono-runtime-sgen_4.8.1.0-0xamarin1_amd64.deb) ...
Selecting previously unselected package mono-runtime.
Unpacking mono-runtime (from .../mono-runtime_4.8.1.0-0xamarin1_amd64.deb) ...
Selecting previously unselected package libmono-corlib4.5-cil.
Unpacking libmono-corlib4.5-cil (from .../libmono-corlib4.5-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system-xml4.0-cil.
Unpacking libmono-system-xml4.0-cil (from .../libmono-system-xml4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system-security4.0-cil.
Unpacking libmono-system-security4.0-cil (from .../libmono-system-security4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system-configuration4.0-cil.
Unpacking libmono-system-configuration4.0-cil (from .../libmono-system-configuration4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system4.0-cil.
Unpacking libmono-system4.0-cil (from .../libmono-system4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-security4.0-cil.
Unpacking libmono-security4.0-cil (from .../libmono-security4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package mono-4.0-gac.
Unpacking mono-4.0-gac (from .../mono-4.0-gac_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package mono-gac.
Unpacking mono-gac (from .../mono-gac_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package mono-runtime-common.
Unpacking mono-runtime-common (from .../mono-runtime-common_4.8.1.0-0xamarin1_amd64.deb) ...
Selecting previously unselected package cli-common.
Unpacking cli-common (from .../cli-common_0.9+xamarin1_all.deb) ...
Selecting previously unselected package libmono-posix4.0-cil.
Unpacking libmono-posix4.0-cil (from .../libmono-posix4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system-core4.0-cil.
Unpacking libmono-system-core4.0-cil (from .../libmono-system-core4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system-numerics4.0-cil.
Unpacking libmono-system-numerics4.0-cil (from .../libmono-system-numerics4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Processing triggers for man-db ...
Setting up mono-4.0-gac (4.8.1.0-0xamarin1) ...
Setting up mono-gac (4.8.1.0-0xamarin1) ...
update-alternatives: using /usr/bin/gacutil to provide /usr/bin/cli-gacutil (global-assembly-cache-tool) in auto mode.
Setting up mono-runtime-common (4.8.1.0-0xamarin1) ...
Setting up mono-runtime-sgen (4.8.1.0-0xamarin1) ...
Setting up mono-runtime (4.8.1.0-0xamarin1) ...
update-alternatives: using /usr/bin/mono to provide /usr/bin/cli (cli) in auto mode.
Setting up libmono-corlib4.5-cil (4.8.1.0-0xamarin1) ...
Setting up libmono-system-xml4.0-cil (4.8.1.0-0xamarin1) ...
Setting up libmono-system-configuration4.0-cil (4.8.1.0-0xamarin1) ...
Setting up libmono-system4.0-cil (4.8.1.0-0xamarin1) ...
Setting up libmono-security4.0-cil (4.8.1.0-0xamarin1) ...
Setting up libmono-system-security4.0-cil (4.8.1.0-0xamarin1) ...
Processing triggers for libc-bin ...
ldconfig deferred processing now taking place
Selecting previously unselected package libfsharp-core4.3-cil.
(Reading database ... 71582 files and directories currently installed.)
Unpacking libfsharp-core4.3-cil (from .../libfsharp-core4.3-cil_4.1.6-0xamarin1+debian7b1_all.deb) ...
Preparing to replace libgtk2.0-dev 2.24.10-0ubuntu6.1 (using .../libgtk2.0-dev_2.24.10-0ubuntu6.3_amd64.deb) ...
Unpacking replacement libgtk2.0-dev ...
Preparing to replace libgtk2.0-0 2.24.10-0ubuntu6.1 (using .../libgtk2.0-0_2.24.10-0ubuntu6.3_amd64.deb) ...
Unpacking replacement libgtk2.0-0 ...
Selecting previously unselected package libgail18.
Unpacking libgail18 (from .../libgail18_2.24.10-0ubuntu6.3_amd64.deb) ...
Selecting previously unselected package libglade2-0.
Unpacking libglade2-0 (from .../libglade2-0_1%3a2.6.4-1ubuntu1.1_amd64.deb) ...
Selecting previously unselected package libhunspell-1.3-0.
Unpacking libhunspell-1.3-0 (from .../libhunspell-1.3-0_1.3.2-4_amd64.deb) ...
Selecting previously unselected package libproxy1.
Unpacking libproxy1 (from .../libproxy1_0.4.7-0ubuntu4.1_amd64.deb) ...
Selecting previously unselected package glib-networking-common.
Unpacking glib-networking-common (from .../glib-networking-common_2.32.1-1ubuntu2.1_all.deb) ...
Selecting previously unselected package glib-networking-services.
Unpacking glib-networking-services (from .../glib-networking-services_2.32.1-1ubuntu2.1_amd64.deb) ...
Selecting previously unselected package gsettings-desktop-schemas.
Unpacking gsettings-desktop-schemas (from .../gsettings-desktop-schemas_3.4.1-0ubuntu1_all.deb) ...
Selecting previously unselected package glib-networking.
Unpacking glib-networking (from .../glib-networking_2.32.1-1ubuntu2.1_amd64.deb) ...
Selecting previously unselected package libsoup2.4-1.
Unpacking libsoup2.4-1 (from .../libsoup2.4-1_2.38.1-1_amd64.deb) ...
Selecting previously unselected package libtext-iconv-perl.
Unpacking libtext-iconv-perl (from .../libtext-iconv-perl_1.7-5_amd64.deb) ...
Selecting previously unselected package libaspell15.
Unpacking libaspell15 (from .../libaspell15_0.60.7~20110707-1_amd64.deb) ...
Selecting previously unselected package dictionaries-common.
Unpacking dictionaries-common (from .../dictionaries-common_1.12.1ubuntu2_all.deb) ...
Adding 'diversion of /usr/share/dict/words to /usr/share/dict/words.pre-dictionaries-common by dictionaries-common'
Selecting previously unselected package aspell.
Unpacking aspell (from .../aspell_0.60.7~20110707-1_amd64.deb) ...
Selecting previously unselected package aspell-en.
Unpacking aspell-en (from .../aspell-en_6.0-0-6ubuntu2_all.deb) ...
Selecting previously unselected package binfmt-support.
Unpacking binfmt-support (from .../binfmt-support_2.0.8_amd64.deb) ...
Selecting previously unselected package ca-certificates-mono.
Unpacking ca-certificates-mono (from .../ca-certificates-mono_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package hunspell-en-us.
Unpacking hunspell-en-us (from .../hunspell-en-us_20070829-4ubuntu3_all.deb) ...
Selecting previously unselected package libenchant1c2a.
Unpacking libenchant1c2a (from .../libenchant1c2a_1.6.0-7_amd64.deb) ...
Selecting previously unselected package enchant.
Unpacking enchant (from .../enchant_1.6.0-7_amd64.deb) ...
Selecting previously unselected package libmono-system-io-compression4.0-cil.
Unpacking libmono-system-io-compression4.0-cil (from .../libmono-system-io-compression4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system-runtime-serialization-formatters-soap4.0-cil.
Unpacking libmono-system-runtime-serialization-formatters-soap4.0-cil (from .../libmono-system-runtime-serialization-formatters-soap4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-data-tds4.0-cil.
Unpacking libmono-data-tds4.0-cil (from .../libmono-data-tds4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system-transactions4.0-cil.
Unpacking libmono-system-transactions4.0-cil (from .../libmono-system-transactions4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system-enterpriseservices4.0-cil.
Unpacking libmono-system-enterpriseservices4.0-cil (from .../libmono-system-enterpriseservices4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system-data4.0-cil.
Unpacking libmono-system-data4.0-cil (from .../libmono-system-data4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-sqlite4.0-cil.
Unpacking libmono-sqlite4.0-cil (from .../libmono-sqlite4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system-componentmodel-dataannotations4.0-cil.
Unpacking libmono-system-componentmodel-dataannotations4.0-cil (from .../libmono-system-componentmodel-dataannotations4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libgdiplus.
Unpacking libgdiplus (from .../libgdiplus_4.2-0xamarin3+ubuntu1204b1_amd64.deb) ...
Selecting previously unselected package libmono-system-drawing4.0-cil.
Unpacking libmono-system-drawing4.0-cil (from .../libmono-system-drawing4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system-web-applicationservices4.0-cil.
Unpacking libmono-system-web-applicationservices4.0-cil (from .../libmono-system-web-applicationservices4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-accessibility4.0-cil.
Unpacking libmono-accessibility4.0-cil (from .../libmono-accessibility4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-webbrowser4.0-cil.
Unpacking libmono-webbrowser4.0-cil (from .../libmono-webbrowser4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-i18n4.0-cil.
Unpacking libmono-i18n4.0-cil (from .../libmono-i18n4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-i18n-west4.0-cil.
Unpacking libmono-i18n-west4.0-cil (from .../libmono-i18n-west4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system-windows-forms4.0-cil.
Unpacking libmono-system-windows-forms4.0-cil (from .../libmono-system-windows-forms4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system-design4.0-cil.
Unpacking libmono-system-design4.0-cil (from .../libmono-system-design4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-ldap4.0-cil.
Unpacking libmono-ldap4.0-cil (from .../libmono-ldap4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system-ldap4.0-cil.
Unpacking libmono-system-ldap4.0-cil (from .../libmono-system-ldap4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system-web-services4.0-cil.
Unpacking libmono-system-web-services4.0-cil (from .../libmono-system-web-services4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system-web4.0-cil.
Unpacking libmono-system-web4.0-cil (from .../libmono-system-web4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system-runtime4.0-cil.
Unpacking libmono-system-runtime4.0-cil (from .../libmono-system-runtime4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-microsoft-build-framework4.0-cil.
Unpacking libmono-microsoft-build-framework4.0-cil (from .../libmono-microsoft-build-framework4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-microsoft-build-utilities-v4.0-4.0-cil.
Unpacking libmono-microsoft-build-utilities-v4.0-4.0-cil (from .../libmono-microsoft-build-utilities-v4.0-4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-microsoft-build-engine4.0-cil.
Unpacking libmono-microsoft-build-engine4.0-cil (from .../libmono-microsoft-build-engine4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-xbuild-tasks4.0-cil.
Unpacking libmono-xbuild-tasks4.0-cil (from .../libmono-xbuild-tasks4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-microsoft-build-tasks-v4.0-4.0-cil.
Unpacking libmono-microsoft-build-tasks-v4.0-4.0-cil (from .../libmono-microsoft-build-tasks-v4.0-4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system-servicemodel-internals0.0-cil.
Unpacking libmono-system-servicemodel-internals0.0-cil (from .../libmono-system-servicemodel-internals0.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system-runtime-serialization4.0-cil.
Unpacking libmono-system-runtime-serialization4.0-cil (from .../libmono-system-runtime-serialization4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system-xml-linq4.0-cil.
Unpacking libmono-system-xml-linq4.0-cil (from .../libmono-system-xml-linq4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package mono-xbuild.
Unpacking mono-xbuild (from .../mono-xbuild_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-compilerservices-symbolwriter4.0-cil.
Unpacking libmono-compilerservices-symbolwriter4.0-cil (from .../libmono-compilerservices-symbolwriter4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-cecil-private-cil.
Unpacking libmono-cecil-private-cil (from .../libmono-cecil-private-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-codecontracts4.0-cil.
Unpacking libmono-codecontracts4.0-cil (from .../libmono-codecontracts4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-peapi4.0a-cil.
Unpacking libmono-peapi4.0a-cil (from .../libmono-peapi4.0a-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-relaxng4.0-cil.
Unpacking libmono-relaxng4.0-cil (from .../libmono-relaxng4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system-configuration-install4.0-cil.
Unpacking libmono-system-configuration-install4.0-cil (from .../libmono-system-configuration-install4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system-data-linq4.0-cil.
Unpacking libmono-system-data-linq4.0-cil (from .../libmono-system-data-linq4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system-io-compression-filesystem4.0-cil.
Unpacking libmono-system-io-compression-filesystem4.0-cil (from .../libmono-system-io-compression-filesystem4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system-identitymodel4.0-cil.
Unpacking libmono-system-identitymodel4.0-cil (from .../libmono-system-identitymodel4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system-identitymodel-selectors4.0-cil.
Unpacking libmono-system-identitymodel-selectors4.0-cil (from .../libmono-system-identitymodel-selectors4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-messaging4.0-cil.
Unpacking libmono-messaging4.0-cil (from .../libmono-messaging4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system-messaging4.0-cil.
Unpacking libmono-system-messaging4.0-cil (from .../libmono-system-messaging4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system-servicemodel-activation4.0-cil.
Unpacking libmono-system-servicemodel-activation4.0-cil (from .../libmono-system-servicemodel-activation4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system-servicemodel4.0a-cil.
Unpacking libmono-system-servicemodel4.0a-cil (from .../libmono-system-servicemodel4.0a-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-csharp4.0c-cil.
Unpacking libmono-csharp4.0c-cil (from .../libmono-csharp4.0c-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-microsoft-csharp4.0-cil.
Unpacking libmono-microsoft-csharp4.0-cil (from .../libmono-microsoft-csharp4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package mono-mcs.
Unpacking mono-mcs (from .../mono-mcs_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-cairo4.0-cil.
Unpacking libmono-cairo4.0-cil (from .../libmono-cairo4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-cscompmgd0.0-cil.
Unpacking libmono-cscompmgd0.0-cil (from .../libmono-cscompmgd0.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-custommarshalers4.0-cil.
Unpacking libmono-custommarshalers4.0-cil (from .../libmono-custommarshalers4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-db2-1.0-cil.
Unpacking libmono-db2-1.0-cil (from .../libmono-db2-1.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-debugger-soft4.0a-cil.
Unpacking libmono-debugger-soft4.0a-cil (from .../libmono-debugger-soft4.0a-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-sharpzip4.84-cil.
Unpacking libmono-sharpzip4.84-cil (from .../libmono-sharpzip4.84-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-http4.0-cil.
Unpacking libmono-http4.0-cil (from .../libmono-http4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-i18n-cjk4.0-cil.
Unpacking libmono-i18n-cjk4.0-cil (from .../libmono-i18n-cjk4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-i18n-mideast4.0-cil.
Unpacking libmono-i18n-mideast4.0-cil (from .../libmono-i18n-mideast4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-i18n-other4.0-cil.
Unpacking libmono-i18n-other4.0-cil (from .../libmono-i18n-other4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-i18n-rare4.0-cil.
Unpacking libmono-i18n-rare4.0-cil (from .../libmono-i18n-rare4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-i18n4.0-all.
Unpacking libmono-i18n4.0-all (from .../libmono-i18n4.0-all_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-management4.0-cil.
Unpacking libmono-management4.0-cil (from .../libmono-management4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-rabbitmq4.0-cil.
Unpacking libmono-rabbitmq4.0-cil (from .../libmono-rabbitmq4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-messaging-rabbitmq4.0-cil.
Unpacking libmono-messaging-rabbitmq4.0-cil (from .../libmono-messaging-rabbitmq4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-microsoft-build4.0-cil.
Unpacking libmono-microsoft-build4.0-cil (from .../libmono-microsoft-build4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-microsoft-visualc10.0-cil.
Unpacking libmono-microsoft-visualc10.0-cil (from .../libmono-microsoft-visualc10.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-microsoft-web-infrastructure1.0-cil.
Unpacking libmono-microsoft-web-infrastructure1.0-cil (from .../libmono-microsoft-web-infrastructure1.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-oracle4.0-cil.
Unpacking libmono-oracle4.0-cil (from .../libmono-oracle4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-parallel4.0-cil.
Unpacking libmono-parallel4.0-cil (from .../libmono-parallel4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-simd4.0-cil.
Unpacking libmono-simd4.0-cil (from .../libmono-simd4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-smdiagnostics0.0-cil.
Unpacking libmono-smdiagnostics0.0-cil (from .../libmono-smdiagnostics0.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system-componentmodel-composition4.0-cil.
Unpacking libmono-system-componentmodel-composition4.0-cil (from .../libmono-system-componentmodel-composition4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system-data-datasetextensions4.0-cil.
Unpacking libmono-system-data-datasetextensions4.0-cil (from .../libmono-system-data-datasetextensions4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system-data-entity4.0-cil.
Unpacking libmono-system-data-entity4.0-cil (from .../libmono-system-data-entity4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system-data-services-client4.0-cil.
Unpacking libmono-system-data-services-client4.0-cil (from .../libmono-system-data-services-client4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system-web-extensions4.0-cil.
Unpacking libmono-system-web-extensions4.0-cil (from .../libmono-system-web-extensions4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system-servicemodel-web4.0-cil.
Unpacking libmono-system-servicemodel-web4.0-cil (from .../libmono-system-servicemodel-web4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system-data-services4.0-cil.
Unpacking libmono-system-data-services4.0-cil (from .../libmono-system-data-services4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system-deployment4.0-cil.
Unpacking libmono-system-deployment4.0-cil (from .../libmono-system-deployment4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system-drawing-design4.0-cil.
Unpacking libmono-system-drawing-design4.0-cil (from .../libmono-system-drawing-design4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system-dynamic4.0-cil.
Unpacking libmono-system-dynamic4.0-cil (from .../libmono-system-dynamic4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system-json4.0-cil.
Unpacking libmono-system-json4.0-cil (from .../libmono-system-json4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system-json-microsoft4.0-cil.
Unpacking libmono-system-json-microsoft4.0-cil (from .../libmono-system-json-microsoft4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system-ldap-protocols4.0-cil.
Unpacking libmono-system-ldap-protocols4.0-cil (from .../libmono-system-ldap-protocols4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system-management4.0-cil.
Unpacking libmono-system-management4.0-cil (from .../libmono-system-management4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system-net4.0-cil.
Unpacking libmono-system-net4.0-cil (from .../libmono-system-net4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system-net-http4.0-cil.
Unpacking libmono-system-net-http4.0-cil (from .../libmono-system-net-http4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system-net-http-formatting4.0-cil.
Unpacking libmono-system-net-http-formatting4.0-cil (from .../libmono-system-net-http-formatting4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system-net-http-webrequest4.0-cil.
Unpacking libmono-system-net-http-webrequest4.0-cil (from .../libmono-system-net-http-webrequest4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system-numerics-vectors4.0-cil.
Unpacking libmono-system-numerics-vectors4.0-cil (from .../libmono-system-numerics-vectors4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system-reactive-interfaces2.2-cil.
Unpacking libmono-system-reactive-interfaces2.2-cil (from .../libmono-system-reactive-interfaces2.2-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system-reactive-core2.2-cil.
Unpacking libmono-system-reactive-core2.2-cil (from .../libmono-system-reactive-core2.2-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system-reactive-linq2.2-cil.
Unpacking libmono-system-reactive-linq2.2-cil (from .../libmono-system-reactive-linq2.2-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system-reactive-debugger2.2-cil.
Unpacking libmono-system-reactive-debugger2.2-cil (from .../libmono-system-reactive-debugger2.2-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system-reactive-experimental2.2-cil.
Unpacking libmono-system-reactive-experimental2.2-cil (from .../libmono-system-reactive-experimental2.2-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system-reactive-providers2.2-cil.
Unpacking libmono-system-reactive-providers2.2-cil (from .../libmono-system-reactive-providers2.2-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system-reactive-observable-aliases0.0-cil.
Unpacking libmono-system-reactive-observable-aliases0.0-cil (from .../libmono-system-reactive-observable-aliases0.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system-reactive-platformservices2.2-cil.
Unpacking libmono-system-reactive-platformservices2.2-cil (from .../libmono-system-reactive-platformservices2.2-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system-reactive-runtime-remoting2.2-cil.
Unpacking libmono-system-reactive-runtime-remoting2.2-cil (from .../libmono-system-reactive-runtime-remoting2.2-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system-reactive-windows-forms2.2-cil.
Unpacking libmono-system-reactive-windows-forms2.2-cil (from .../libmono-system-reactive-windows-forms2.2-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system-xaml4.0-cil.
Unpacking libmono-system-xaml4.0-cil (from .../libmono-system-xaml4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-windowsbase4.0-cil.
Unpacking libmono-windowsbase4.0-cil (from .../libmono-windowsbase4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system-reactive-windows-threading2.2-cil.
Unpacking libmono-system-reactive-windows-threading2.2-cil (from .../libmono-system-reactive-windows-threading2.2-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system-reflection-context4.0-cil.
Unpacking libmono-system-reflection-context4.0-cil (from .../libmono-system-reflection-context4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system-runtime-caching4.0-cil.
Unpacking libmono-system-runtime-caching4.0-cil (from .../libmono-system-runtime-caching4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system-runtime-durableinstancing4.0-cil.
Unpacking libmono-system-runtime-durableinstancing4.0-cil (from .../libmono-system-runtime-durableinstancing4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system-runtime-interopservices-runtimeinformation4.0-cil.
Unpacking libmono-system-runtime-interopservices-runtimeinformation4.0-cil (from .../libmono-system-runtime-interopservices-runtimeinformation4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system-servicemodel-discovery4.0-cil.
Unpacking libmono-system-servicemodel-discovery4.0-cil (from .../libmono-system-servicemodel-discovery4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system-servicemodel-routing4.0-cil.
Unpacking libmono-system-servicemodel-routing4.0-cil (from .../libmono-system-servicemodel-routing4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system-serviceprocess4.0-cil.
Unpacking libmono-system-serviceprocess4.0-cil (from .../libmono-system-serviceprocess4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system-threading-tasks-dataflow4.0-cil.
Unpacking libmono-system-threading-tasks-dataflow4.0-cil (from .../libmono-system-threading-tasks-dataflow4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system-web-abstractions4.0-cil.
Unpacking libmono-system-web-abstractions4.0-cil (from .../libmono-system-web-abstractions4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system-web-dynamicdata4.0-cil.
Unpacking libmono-system-web-dynamicdata4.0-cil (from .../libmono-system-web-dynamicdata4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system-web-extensions-design4.0-cil.
Unpacking libmono-system-web-extensions-design4.0-cil (from .../libmono-system-web-extensions-design4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system-web-http4.0-cil.
Unpacking libmono-system-web-http4.0-cil (from .../libmono-system-web-http4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system-web-http-selfhost4.0-cil.
Unpacking libmono-system-web-http-selfhost4.0-cil (from .../libmono-system-web-http-selfhost4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system-web-http-webhost4.0-cil.
Unpacking libmono-system-web-http-webhost4.0-cil (from .../libmono-system-web-http-webhost4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system-web-mobile4.0-cil.
Unpacking libmono-system-web-mobile4.0-cil (from .../libmono-system-web-mobile4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system-web-razor2.0-cil.
Unpacking libmono-system-web-razor2.0-cil (from .../libmono-system-web-razor2.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system-web-webpages-deployment2.0-cil.
Unpacking libmono-system-web-webpages-deployment2.0-cil (from .../libmono-system-web-webpages-deployment2.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system-web-webpages2.0-cil.
Unpacking libmono-system-web-webpages2.0-cil (from .../libmono-system-web-webpages2.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system-web-webpages-razor2.0-cil.
Unpacking libmono-system-web-webpages-razor2.0-cil (from .../libmono-system-web-webpages-razor2.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system-web-mvc3.0-cil.
Unpacking libmono-system-web-mvc3.0-cil (from .../libmono-system-web-mvc3.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system-web-regularexpressions4.0-cil.
Unpacking libmono-system-web-regularexpressions4.0-cil (from .../libmono-system-web-regularexpressions4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system-web-routing4.0-cil.
Unpacking libmono-system-web-routing4.0-cil (from .../libmono-system-web-routing4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system-windows4.0-cil.
Unpacking libmono-system-windows4.0-cil (from .../libmono-system-windows4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system-windows-forms-datavisualization4.0a-cil.
Unpacking libmono-system-windows-forms-datavisualization4.0a-cil (from .../libmono-system-windows-forms-datavisualization4.0a-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system-workflow-activities4.0-cil.
Unpacking libmono-system-workflow-activities4.0-cil (from .../libmono-system-workflow-activities4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system-workflow-componentmodel4.0-cil.
Unpacking libmono-system-workflow-componentmodel4.0-cil (from .../libmono-system-workflow-componentmodel4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system-workflow-runtime4.0-cil.
Unpacking libmono-system-workflow-runtime4.0-cil (from .../libmono-system-workflow-runtime4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-system-xml-serialization4.0-cil.
Unpacking libmono-system-xml-serialization4.0-cil (from .../libmono-system-xml-serialization4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-tasklets4.0-cil.
Unpacking libmono-tasklets4.0-cil (from .../libmono-tasklets4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-webmatrix-data4.0-cil.
Unpacking libmono-webmatrix-data4.0-cil (from .../libmono-webmatrix-data4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libnunit-core-interfaces2.6.3-cil.
Unpacking libnunit-core-interfaces2.6.3-cil (from .../libnunit-core-interfaces2.6.3-cil_2.6.3+dfsg-1~xamarin2_all.deb) ...
Selecting previously unselected package libnunit-core2.6.3-cil.
Unpacking libnunit-core2.6.3-cil (from .../libnunit-core2.6.3-cil_2.6.3+dfsg-1~xamarin2_all.deb) ...
Selecting previously unselected package libnunit-util2.6.3-cil.
Unpacking libnunit-util2.6.3-cil (from .../libnunit-util2.6.3-cil_2.6.3+dfsg-1~xamarin2_all.deb) ...
Selecting previously unselected package libnunit-console-runner2.6.3-cil.
Unpacking libnunit-console-runner2.6.3-cil (from .../libnunit-console-runner2.6.3-cil_2.6.3+dfsg-1~xamarin2_all.deb) ...
Selecting previously unselected package libnunit-framework2.6.3-cil.
Unpacking libnunit-framework2.6.3-cil (from .../libnunit-framework2.6.3-cil_2.6.3+dfsg-1~xamarin2_all.deb) ...
Selecting previously unselected package libnunit-mocks2.6.3-cil.
Unpacking libnunit-mocks2.6.3-cil (from .../libnunit-mocks2.6.3-cil_2.6.3+dfsg-1~xamarin2_all.deb) ...
Selecting previously unselected package libnunit-cil-dev.
Unpacking libnunit-cil-dev (from .../libnunit-cil-dev_2.6.3+dfsg-1~xamarin2_all.deb) ...
Selecting previously unselected package libmono-cil-dev.
Unpacking libmono-cil-dev (from .../libmono-cil-dev_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmonosgen-2.0-1.
Unpacking libmonosgen-2.0-1 (from .../libmonosgen-2.0-1_4.8.1.0-0xamarin1_amd64.deb) ...
Selecting previously unselected package libmonosgen-2.0-dev.
Unpacking libmonosgen-2.0-dev (from .../libmonosgen-2.0-dev_4.8.1.0-0xamarin1_amd64.deb) ...
Selecting previously unselected package libmono-2.0-dev.
Unpacking libmono-2.0-dev (from .../libmono-2.0-dev_4.8.1.0-0xamarin1_amd64.deb) ...
Selecting previously unselected package mono-devel.
Unpacking mono-devel (from .../mono-devel_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package fsharp.
Unpacking fsharp (from .../fsharp_4.1.6-0xamarin1+debian7b1_all.deb) ...
Selecting previously unselected package libgeoclue0.
Unpacking libgeoclue0 (from .../libgeoclue0_0.12.0-1ubuntu12_amd64.deb) ...
Selecting previously unselected package libglib2.0-cil.
Unpacking libglib2.0-cil (from .../libglib2.0-cil_2.12.26-0xamarin1+compat1_amd64.deb) ...
Selecting previously unselected package libgtk2.0-cil.
Unpacking libgtk2.0-cil (from .../libgtk2.0-cil_2.12.26-0xamarin1+compat1_amd64.deb) ...
Selecting previously unselected package libglade2.0-cil.
Unpacking libglade2.0-cil (from .../libglade2.0-cil_2.12.26-0xamarin1+compat1_amd64.deb) ...
Selecting previously unselected package libjavascriptcoregtk-1.0-0.
Unpacking libjavascriptcoregtk-1.0-0 (from .../libjavascriptcoregtk-1.0-0_1.8.3-0ubuntu0.12.04.1_amd64.deb) ...
Selecting previously unselected package libmono-2.0-1.
Unpacking libmono-2.0-1 (from .../libmono-2.0-1_4.8.1.0-0xamarin1_amd64.deb) ...
Selecting previously unselected package libmono-btls-interface4.0-cil.
Unpacking libmono-btls-interface4.0-cil (from .../libmono-btls-interface4.0-cil_4.8.1.0-0xamarin1_amd64.deb) ...
Selecting previously unselected package libmono-cecil-vb0.9-cil.
Unpacking libmono-cecil-vb0.9-cil (from .../libmono-cecil-vb0.9-cil_4.0.1-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-corlib4.0-cil.
Unpacking libmono-corlib4.0-cil (from .../libmono-corlib4.0-cil_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-microsoft-visualbasic10.0-cil.
Unpacking libmono-microsoft-visualbasic10.0-cil (from .../libmono-microsoft-visualbasic10.0-cil_4.0.1-0xamarin1_all.deb) ...
Selecting previously unselected package libmono-profiler.
Unpacking libmono-profiler (from .../libmono-profiler_4.8.1.0-0xamarin1_amd64.deb) ...
Selecting previously unselected package libmonoboehm-2.0-1.
Unpacking libmonoboehm-2.0-1 (from .../libmonoboehm-2.0-1_4.8.1.0-0xamarin1_amd64.deb) ...
Selecting previously unselected package libnuget-core-cil.
Unpacking libnuget-core-cil (from .../libnuget-core-cil_2.12+mono-0xamarin1_all.deb) ...
Selecting previously unselected package libwebkitgtk-1.0-common.
Unpacking libwebkitgtk-1.0-common (from .../libwebkitgtk-1.0-common_1.8.3-0ubuntu0.12.04.1_all.deb) ...
Selecting previously unselected package libwebkitgtk-1.0-0.
Unpacking libwebkitgtk-1.0-0 (from .../libwebkitgtk-1.0-0_1.8.3-0ubuntu0.12.04.1_amd64.deb) ...
Selecting previously unselected package libwebkit1.1-cil.
Unpacking libwebkit1.1-cil (from .../libwebkit1.1-cil_0.3-5_all.deb) ...
Selecting previously unselected package mono-4.0-service.
Unpacking mono-4.0-service (from .../mono-4.0-service_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package mono-utils.
Unpacking mono-utils (from .../mono-utils_4.8.1.0-0xamarin1_amd64.deb) ...
Selecting previously unselected package mono-jay.
Unpacking mono-jay (from .../mono-jay_4.8.1.0-0xamarin1_amd64.deb) ...
Selecting previously unselected package mono-csharp-shell.
Unpacking mono-csharp-shell (from .../mono-csharp-shell_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package monodoc-base.
Unpacking monodoc-base (from .../monodoc-base_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package monodoc-browser.
Unpacking monodoc-browser (from .../monodoc-browser_4.2-0xamarin1_all.deb) ...
Selecting previously unselected package monodoc-manual.
Unpacking monodoc-manual (from .../monodoc-manual_4.8.1.0-0xamarin1_all.deb) ...
Selecting previously unselected package mono-complete.
Unpacking mono-complete (from .../mono-complete_4.8.1.0-0xamarin1_amd64.deb) ...
Selecting previously unselected package mono-vbnc.
Unpacking mono-vbnc (from .../mono-vbnc_4.0.1-0xamarin1_all.deb) ...
Selecting previously unselected package nuget.
Unpacking nuget (from .../nuget_2.12+mono-0xamarin1_all.deb) ...
Selecting previously unselected package referenceassemblies-pcl.
Unpacking referenceassemblies-pcl (from .../referenceassemblies-pcl_2014.04.14-1_all.deb) ...
Processing triggers for man-db ...
Processing triggers for gconf2 ...
Processing triggers for libglib2.0-0 ...
Processing triggers for postgresql-common ...
Building PostgreSQL dictionaries from installed myspell/hunspell packages...
en_us
Removing obsolete dictionary files:
Setting up cli-common (0.9+xamarin1) ...
Setting up libmono-posix4.0-cil (4.8.1.0-0xamarin1) ...
Setting up libmono-system-core4.0-cil (4.8.1.0-0xamarin1) ...
Setting up libmono-system-numerics4.0-cil (4.8.1.0-0xamarin1) ...
Setting up libfsharp-core4.3-cil (4.1.6-0xamarin1+debian7b1) ...
* Installing 22 assemblies from libfsharp-core4.3-cil into Mono
Setting up libgtk2.0-0 (2.24.10-0ubuntu6.3) ...
Setting up libgtk2.0-dev (2.24.10-0ubuntu6.3) ...
Setting up libgail18 (2.24.10-0ubuntu6.3) ...
Setting up libglade2-0 (1:2.6.4-1ubuntu1.1) ...
Setting up libhunspell-1.3-0 (1.3.2-4) ...
Setting up libproxy1 (0.4.7-0ubuntu4.1) ...
Setting up glib-networking-common (2.32.1-1ubuntu2.1) ...
Setting up glib-networking-services (2.32.1-1ubuntu2.1) ...
Setting up gsettings-desktop-schemas (3.4.1-0ubuntu1) ...
Setting up glib-networking (2.32.1-1ubuntu2.1) ...
Setting up libsoup2.4-1 (2.38.1-1) ...
Setting up libtext-iconv-perl (1.7-5) ...
Setting up libaspell15 (0.60.7~20110707-1) ...
Setting up dictionaries-common (1.12.1ubuntu2) ...
install/dictionaries-common: Byte-compiling for emacsen flavour emacs23
Wrote /usr/share/emacs23/site-lisp/dictionaries-common/debian-ispell.elc
Wrote /usr/share/emacs23/site-lisp/dictionaries-common/ispell.elc
Wrote /usr/share/emacs23/site-lisp/dictionaries-common/flyspell.elc
Setting up binfmt-support (2.0.8) ...
FATAL: Could not load /lib/modules/4.8.12-040812-generic/modules.dep: No such file or directory
update-binfmts: warning: Couldn't load the binfmt_misc module.
FATAL: Could not load /lib/modules/4.8.12-040812-generic/modules.dep: No such file or directory
update-binfmts: warning: Couldn't load the binfmt_misc module.
FATAL: Could not load /lib/modules/4.8.12-040812-generic/modules.dep: No such file or directory
update-binfmts: warning: Couldn't load the binfmt_misc module.
binfmt-support stop/waiting
Setting up ca-certificates-mono (4.8.1.0-0xamarin1) ...
Updating certificates in /etc/ssl/certs... 0 added, 0 removed; done.
Running hooks in /etc/ca-certificates/update.d....
done.
Updating Mono key store
Mono Certificate Store Sync - version 4.8.1.0
Populate Mono certificate store from a concatenated list of certificates.
Copyright 2002, 2003 Motus Technologies. Copyright 2004-2008 Novell. BSD licensed.
Importing into legacy system store:
I already trust 0, your new list has 164
Certificate added: C=AT, O=A-Trust Ges. f. Sicherheitssysteme im elektr. Datenverkehr GmbH, OU=A-Trust-nQual-03, CN=A-Trust-nQual-03
Certificate added: CN=ACEDICOM Root, OU=PKI, O=EDICOM, C=ES
Certificate added: C=CO, O=Sociedad Cameral de Certificación Digital - Certicámara S.A., CN=AC Raíz Certicámara S.A.
Certificate added: C=IT, L=Milan, O=Actalis S.p.A./03358520967, CN=Actalis Authentication Root CA
Certificate added: C=SE, O=AddTrust AB, OU=AddTrust External TTP Network, CN=AddTrust External CA Root
Certificate added: C=SE, O=AddTrust AB, OU=AddTrust TTP Network, CN=AddTrust Class 1 CA Root
Certificate added: C=SE, O=AddTrust AB, OU=AddTrust TTP Network, CN=AddTrust Public CA Root
Certificate added: C=SE, O=AddTrust AB, OU=AddTrust TTP Network, CN=AddTrust Qualified CA Root
Certificate added: C=US, O=AffirmTrust, CN=AffirmTrust Commercial
Certificate added: C=US, O=AffirmTrust, CN=AffirmTrust Networking
Certificate added: C=US, O=AffirmTrust, CN=AffirmTrust Premium
Certificate added: C=US, O=AffirmTrust, CN=AffirmTrust Premium ECC
Certificate added: C=US, O=America Online Inc., CN=America Online Root Certification Authority 1
Certificate added: C=US, O=America Online Inc., CN=America Online Root Certification Authority 2
Certificate added: C=JP, O=Japanese Government, OU=ApplicationCA
Certificate added: C=ES, CN=Autoridad de Certificacion Firmaprofesional CIF A62634068
Certificate added: C=IE, O=Baltimore, OU=CyberTrust, CN=Baltimore CyberTrust Root
Certificate added: C=NO, O=Buypass AS-983163327, CN=Buypass Class 2 CA 1
Certificate added: C=NO, O=Buypass AS-983163327, CN=Buypass Class 2 Root CA
Certificate added: C=NO, O=Buypass AS-983163327, CN=Buypass Class 3 CA 1
Certificate added: C=NO, O=Buypass AS-983163327, CN=Buypass Class 3 Root CA
Certificate added: C=SK, L=Bratislava, O=Disig a.s., CN=CA Disig
Certificate added: C=SK, L=Bratislava, O=Disig a.s., CN=CA Disig Root R1
Certificate added: C=SK, L=Bratislava, O=Disig a.s., CN=CA Disig Root R2
Certificate added: C=CN, O=CNNIC, CN=CNNIC ROOT
Certificate added: C=GB, S=Greater Manchester, L=Salford, O=COMODO CA Limited, CN=COMODO Certification Authority
Certificate added: C=GB, S=Greater Manchester, L=Salford, O=COMODO CA Limited, CN=COMODO ECC Certification Authority
Certificate added: C=EU, O=AC Camerfirma SA CIF A82743287, OU=http://www.chambersign.org, CN=Chambers of Commerce Root
Certificate added: C=EU, O=AC Camerfirma SA CIF A82743287, OU=http://www.chambersign.org, CN=Global Chambersign Root
Certificate added: C=FR, O=Dhimyotis, CN=Certigna
Certificate added: C=FR, O=Certinomis, OU=0002 433998903, CN=Certinomis - Autorité Racine
Certificate added: C=FR, O=Certplus, CN=Class 2 Primary CA
Certificate added: C=PL, O=Unizeto Sp. z o.o., CN=Certum CA
Certificate added: C=PL, O=Unizeto Technologies S.A., OU=Certum Certification Authority, CN=Certum Trusted Network CA
Certificate added: C=EU, L=Madrid (see current address at www.camerfirma.com/address), OID.2.5.4.5=A82743287, O=AC Camerfirma S.A., CN=Chambers of Commerce Root - 2008
Certificate added: C=CN, O=China Internet Network Information Center, CN=China Internet Network Information Center EV Certificates Root
Certificate added: CN=ComSign CA, O=ComSign, C=IL
Certificate added: CN=ComSign Secured CA, O=ComSign, C=IL
Certificate added: C=GB, S=Greater Manchester, L=Salford, O=Comodo CA Limited, CN=AAA Certificate Services
Certificate added: C=GB, S=Greater Manchester, L=Salford, O=Comodo CA Limited, CN=Secure Certificate Services
Certificate added: C=GB, S=Greater Manchester, L=Salford, O=Comodo CA Limited, CN=Trusted Certificate Services
Certificate added: O="Cybertrust, Inc", CN=Cybertrust Global Root
Certificate added: C=DE, O=D-Trust GmbH, CN=D-TRUST Root Class 3 CA 2 2009
Certificate added: C=DE, O=D-Trust GmbH, CN=D-TRUST Root Class 3 CA 2 EV 2009
Certificate added: C=US, O=Digital Signature Trust, OU=DST ACES, CN=DST ACES CA X6
Certificate added: O=Digital Signature Trust Co., CN=DST Root CA X3
Certificate added: C=DE, O=Deutsche Telekom AG, OU=T-TeleSec Trust Center, CN=Deutsche Telekom Root CA 2
Certificate added: C=US, O=DigiCert Inc, OU=www.digicert.com, CN=DigiCert Assured ID Root CA
Certificate added: C=US, O=DigiCert Inc, OU=www.digicert.com, CN=DigiCert Global Root CA
Certificate added: C=US, O=DigiCert Inc, OU=www.digicert.com, CN=DigiCert High Assurance EV Root CA
Certificate added: C=US, O=Digital Signature Trust Co., OU=DSTCA E1
Certificate added: C=US, O=Digital Signature Trust Co., OU=DSTCA E2
Certificate added: C=TR, O=Elektronik Bilgi Guvenligi A.S., CN=e-Guven Kok Elektronik Sertifika Hizmet Saglayicisi
Certificate added: CN=EBG Elektronik Sertifika Hizmet Sağlayıcısı, O=EBG Bilişim Teknolojileri ve Hizmetleri A.Ş., C=TR
Certificate added: C=ES, O=Agencia Catalana de Certificacio (NIF Q-0801176-I), OU=Serveis Publics de Certificacio, OU=Vegeu https://www.catcert.net/verarrel (c)03, OU=Jerarquia Entitats de Certificacio Catalanes, CN=EC-ACC
Certificate added: C=EE, O=AS Sertifitseerimiskeskus, CN=EE Certification Centre Root CA, [email protected]
Certificate added: O=Entrust.net, OU=www.entrust.net/CPS_2048 incorp. by ref. (limits liab.), OU=(c) 1999 Entrust.net Limited, CN=Entrust.net Certification Authority (2048)
Certificate added: C=US, O=Entrust.net, OU=www.entrust.net/CPS incorp. by ref. (limits liab.), OU=(c) 1999 Entrust.net Limited, CN=Entrust.net Secure Server Certification Authority
Certificate added: C=US, O="Entrust, Inc.", OU=www.entrust.net/CPS is incorporated by reference, OU="(c) 2006 Entrust, Inc.", CN=Entrust Root Certification Authority
Certificate added: C=US, O=Equifax, OU=Equifax Secure Certificate Authority
Certificate added: C=US, O=Equifax Secure Inc., CN=Equifax Secure Global eBusiness CA-1
Certificate added: C=US, O=Equifax Secure Inc., CN=Equifax Secure eBusiness CA-1
Certificate added: C=ES, L=C/ Muntaner 244 Barcelona, CN=Autoridad de Certificacion Firmaprofesional CIF A62634068, [email protected]
Certificate added: C=US, O=GTE Corporation, OU="GTE CyberTrust Solutions, Inc.", CN=GTE CyberTrust Global Root
Certificate added: C=US, O=GeoTrust Inc., CN=GeoTrust Global CA
Certificate added: C=US, O=GeoTrust Inc., CN=GeoTrust Global CA 2
Certificate added: C=US, O=GeoTrust Inc., CN=GeoTrust Primary Certification Authority
Certificate added: C=US, O=GeoTrust Inc., OU=(c) 2007 GeoTrust Inc. - For authorized use only, CN=GeoTrust Primary Certification Authority - G2
Certificate added: C=US, O=GeoTrust Inc., OU=(c) 2008 GeoTrust Inc. - For authorized use only, CN=GeoTrust Primary Certification Authority - G3
Certificate added: C=US, O=GeoTrust Inc., CN=GeoTrust Universal CA
Certificate added: C=US, O=GeoTrust Inc., CN=GeoTrust Universal CA 2
Certificate added: C=BE, O=GlobalSign nv-sa, OU=Root CA, CN=GlobalSign Root CA
Certificate added: OU=GlobalSign Root CA - R2, O=GlobalSign, CN=GlobalSign
Certificate added: OU=GlobalSign Root CA - R3, O=GlobalSign, CN=GlobalSign
Certificate added: C=EU, L=Madrid (see current address at www.camerfirma.com/address), OID.2.5.4.5=A82743287, O=AC Camerfirma S.A., CN=Global Chambersign Root - 2008
Certificate added: C=US, O="The Go Daddy Group, Inc.", OU=Go Daddy Class 2 Certification Authority
Certificate added: C=US, S=Arizona, L=Scottsdale, O="GoDaddy.com, Inc.", CN=Go Daddy Root Certificate Authority - G2
Certificate added: C=GR, O=Hellenic Academic and Research Institutions Cert. Authority, CN=Hellenic Academic and Research Institutions RootCA 2011
Certificate added: C=HK, O=Hongkong Post, CN=Hongkong Post Root CA 1
Certificate added: C=FR, S=France, L=Paris, O=PM/SGDN, OU=DCSSI, CN=IGC/A, [email protected]
Certificate added: C=ES, O=IZENPE S.A., CN=Izenpe.com
Certificate added: [email protected], C=EE, O=AS Sertifitseerimiskeskus, CN=Juur-SK
Certificate added: C=HU, L=Budapest, O=Microsec Ltd., OU=e-Szigno CA, CN=Microsec e-Szigno Root CA
Certificate added: C=HU, L=Budapest, O=Microsec Ltd., CN=Microsec e-Szigno Root CA 2009, [email protected]
Certificate added: C=HU, L=Budapest, O=NetLock Kft., OU=Tanúsítványkiadók (Certification Services), CN=NetLock Arany (Class Gold) Főtanúsítvány
Certificate added: C=HU, L=Budapest, O=NetLock Halozatbiztonsagi Kft., OU=Tanusitvanykiadok, CN=NetLock Uzleti (Class B) Tanusitvanykiado
Certificate added: C=HU, L=Budapest, O=NetLock Halozatbiztonsagi Kft., OU=Tanusitvanykiadok, CN=NetLock Expressz (Class C) Tanusitvanykiado
Certificate added: C=HU, S=Hungary, L=Budapest, O=NetLock Halozatbiztonsagi Kft., OU=Tanusitvanykiadok, CN=NetLock Kozjegyzoi (Class A) Tanusitvanykiado
Certificate added: C=HU, L=Budapest, O=NetLock Halozatbiztonsagi Kft., OU=Tanusitvanykiadok, CN=NetLock Minositett Kozjegyzoi (Class QA) Tanusitvanykiado, [email protected]
Certificate added: C=US, O=Network Solutions L.L.C., CN=Network Solutions Certificate Authority
Certificate added: C=CH, O=WISeKey, OU=Copyright (c) 2005, OU=OISTE Foundation Endorsed, CN=OISTE WISeKey Global Root GA CA
Certificate added: [email protected], L=Chacao, S=Miranda, OU=Proveedor de Certificados PROCERT, O=Sistema Nacional de Certificacion Electronica, C=VE, CN=PSCProcert
Certificate added: C=BM, O=QuoVadis Limited, OU=Root Certification Authority, CN=QuoVadis Root Certification Authority
Certificate added: C=BM, O=QuoVadis Limited, CN=QuoVadis Root CA 2
Certificate added: C=BM, O=QuoVadis Limited, CN=QuoVadis Root CA 3
Certificate added: L=ValiCert Validation Network, O="ValiCert, Inc.", OU=ValiCert Class 3 Policy Validation Authority, CN=http://www.valicert.com/, [email protected]
Certificate added: O=RSA Security Inc, OU=RSA Security 2048 V3
Certificate added: C=ES, O=Generalitat Valenciana, OU=PKIGVA, CN=Root CA Generalitat Valenciana
Certificate added: C=DE, S=Baden-Wuerttemberg (BW), L=Stuttgart, O=Deutscher Sparkassen Verlag GmbH, CN=S-TRUST Authentication and Encryption Root CA 2005:PN
Certificate added: C=JP, O="Japan Certification Services, Inc.", CN=SecureSign RootCA11
Certificate added: C=US, O=SecureTrust Corporation, CN=SecureTrust CA
Certificate added: C=US, O=SecureTrust Corporation, CN=Secure Global CA
Certificate added: C=JP, O="SECOM Trust Systems CO.,LTD.", OU=Security Communication EV RootCA1
Certificate added: C=JP, O="SECOM Trust Systems CO.,LTD.", OU=Security Communication RootCA2
Certificate added: C=JP, O=SECOM Trust.net, OU=Security Communication RootCA1
Certificate added: C=FI, O=Sonera, CN=Sonera Class1 CA
Certificate added: C=FI, O=Sonera, CN=Sonera Class2 CA
Certificate added: C=NL, O=Staat der Nederlanden, CN=Staat der Nederlanden Root CA
Certificate added: C=NL, O=Staat der Nederlanden, CN=Staat der Nederlanden Root CA - G2
Certificate added: C=US, O="Starfield Technologies, Inc.", OU=Starfield Class 2 Certification Authority
Certificate added: C=US, S=Arizona, L=Scottsdale, O="Starfield Technologies, Inc.", CN=Starfield Root Certificate Authority - G2
Certificate added: C=US, S=Arizona, L=Scottsdale, O="Starfield Technologies, Inc.", CN=Starfield Services Root Certificate Authority - G2
Certificate added: C=IL, O=StartCom Ltd., OU=Secure Digital Certificate Signing, CN=StartCom Certification Authority
Certificate added: C=IL, O=StartCom Ltd., OU=Secure Digital Certificate Signing, CN=StartCom Certification Authority
Certificate added: C=IL, O=StartCom Ltd., CN=StartCom Certification Authority G2
Certificate added: C=CH, O=SwissSign AG, CN=SwissSign Gold CA - G2
Certificate added: C=CH, O=SwissSign AG, CN=SwissSign Platinum CA - G2
Certificate added: C=CH, O=SwissSign AG, CN=SwissSign Silver CA - G2
Certificate added: C=ch, O=Swisscom, OU=Digital Certificate Services, CN=Swisscom Root CA 1
Certificate added: C=ch, O=Swisscom, OU=Digital Certificate Services, CN=Swisscom Root CA 2
Certificate added: C=ch, O=Swisscom, OU=Digital Certificate Services, CN=Swisscom Root EV CA 2
Certificate added: C=DE, O=T-Systems Enterprise Services GmbH, OU=T-Systems Trust Center, CN=T-TeleSec GlobalRoot Class 3
Certificate added: C=DE, O=TC TrustCenter GmbH, OU=TC TrustCenter Class 2 CA, CN=TC TrustCenter Class 2 CA II
Certificate added: C=DE, O=TC TrustCenter GmbH, OU=TC TrustCenter Class 3 CA, CN=TC TrustCenter Class 3 CA II
Certificate added: C=DE, O=TC TrustCenter GmbH, OU=TC TrustCenter Universal CA, CN=TC TrustCenter Universal CA I
Certificate added: C=DK, O=TDC Internet, OU=TDC Internet Root CA
Certificate added: C=DK, O=TDC, CN=TDC OCES CA
Certificate added: CN=TÜRKTRUST Elektronik Sertifika Hizmet Sağlayıcısı, C=TR, L=ANKARA, O=(c) 2005 TÜRKTRUST Bilgi İletişim ve Bilişim Güvenliği Hizmetleri A.Ş.
Certificate added: CN=TÜRKTRUST Elektronik Sertifika Hizmet Sağlayıcısı, C=TR, L=Ankara, O=TÜRKTRUST Bilgi İletişim ve Bilişim Güvenliği Hizmetleri A.Ş. (c) Kasım 2005
Certificate added: CN=TÜRKTRUST Elektronik Sertifika Hizmet Sağlayıcısı, C=TR, L=Ankara, O=TÜRKTRUST Bilgi İletişim ve Bilişim Güvenliği Hizmetleri A.Ş. (c) Aralık 2007
Certificate added: C=TW, O=TAIWAN-CA, OU=Root CA, CN=TWCA Root Certification Authority
Certificate added: C=TW, O=Government Root Certification Authority
Certificate added: C=ZA, S=Western Cape, L=Cape Town, O=Thawte Consulting cc, OU=Certification Services Division, CN=Thawte Premium Server CA, [email protected]
Certificate added: C=ZA, S=Western Cape, L=Cape Town, O=Thawte Consulting cc, OU=Certification Services Division, CN=Thawte Server CA, [email protected]
Certificate added: C=GB, O=Trustis Limited, OU=Trustis FPS Root CA
Certificate added: C=TR, L=Gebze - Kocaeli, O=Türkiye Bilimsel ve Teknolojik Araştırma Kurumu - TÜBİTAK, OU=Ulusal Elektronik ve Kriptoloji Araştırma Enstitüsü - UEKAE, OU=Kamu Sertifikasyon Merkezi, CN=TÜBİTAK UEKAE Kök Sertifika Hizmet Sağlayıcısı - Sürüm 3
Certificate added: C=US, S=UT, L=Salt Lake City, O=The USERTRUST Network, OU=http://www.usertrust.com, CN=UTN - DATACorp SGC
Certificate added: C=US, S=UT, L=Salt Lake City, O=The USERTRUST Network, OU=http://www.usertrust.com, CN=UTN-USERFirst-Client Authentication and Email
Certificate added: C=US, S=UT, L=Salt Lake City, O=The USERTRUST Network, OU=http://www.usertrust.com, CN=UTN-USERFirst-Hardware
Certificate added: L=ValiCert Validation Network, O="ValiCert, Inc.", OU=ValiCert Class 1 Policy Validation Authority, CN=http://www.valicert.com/, [email protected]
Certificate added: L=ValiCert Validation Network, O="ValiCert, Inc.", OU=ValiCert Class 2 Policy Validation Authority, CN=http://www.valicert.com/, [email protected]
Certificate added: C=US, O="VeriSign, Inc.", OU=VeriSign Trust Network, OU="(c) 2007 VeriSign, Inc. - For authorized use only", CN=VeriSign Class 3 Public Primary Certification Authority - G4
Certificate added: C=US, O="VeriSign, Inc.", OU=VeriSign Trust Network, OU="(c) 2006 VeriSign, Inc. - For authorized use only", CN=VeriSign Class 3 Public Primary Certification Authority - G5
Certificate added: C=US, O="VeriSign, Inc.", OU=VeriSign Trust Network, OU="(c) 2008 VeriSign, Inc. - For authorized use only", CN=VeriSign Universal Root Certification Authority
Certificate added: C=US, O="VeriSign, Inc.", OU=Class 1 Public Primary Certification Authority
Certificate added: C=US, O="VeriSign, Inc.", OU=Class 1 Public Primary Certification Authority - G2, OU="(c) 1998 VeriSign, Inc. - For authorized use only", OU=VeriSign Trust Network
Certificate added: C=US, O="VeriSign, Inc.", OU=VeriSign Trust Network, OU="(c) 1999 VeriSign, Inc. - For authorized use only", CN=VeriSign Class 1 Public Primary Certification Authority - G3
Certificate added: C=US, O="VeriSign, Inc.", OU=Class 2 Public Primary Certification Authority - G2, OU="(c) 1998 VeriSign, Inc. - For authorized use only", OU=VeriSign Trust Network
Certificate added: C=US, O="VeriSign, Inc.", OU=VeriSign Trust Network, OU="(c) 1999 VeriSign, Inc. - For authorized use only", CN=VeriSign Class 2 Public Primary Certification Authority - G3
Certificate added: C=US, O="VeriSign, Inc.", OU=Class 3 Public Primary Certification Authority
Certificate added: C=US, O="VeriSign, Inc.", OU=Class 3 Public Primary Certification Authority - G2, OU="(c) 1998 VeriSign, Inc. - For authorized use only", OU=VeriSign Trust Network
Certificate added: C=US, O="VeriSign, Inc.", OU=VeriSign Trust Network, OU="(c) 1999 VeriSign, Inc. - For authorized use only", CN=VeriSign Class 3 Public Primary Certification Authority - G3
Certificate added: C=US, O="VeriSign, Inc.", OU=Class 3 Public Primary Certification Authority
Certificate added: C=US, O="VeriSign, Inc.", OU=VeriSign Trust Network, OU="(c) 1999 VeriSign, Inc. - For authorized use only", CN=VeriSign Class 4 Public Primary Certification Authority - G3
Certificate added: C=US, O=VISA, OU=Visa International Service Association, CN=Visa eCommerce Root
Certificate added: C=US, O=Wells Fargo WellsSecure, OU=Wells Fargo Bank NA, CN=WellsSecure Public Root Certificate Authority
Certificate added: C=US, O=Wells Fargo, OU=Wells Fargo Certification Authority, CN=Wells Fargo Root Certificate Authority
Certificate added: C=US, OU=www.xrampsecurity.com, O=XRamp Security Services Inc, CN=XRamp Global Certification Authority
Certificate added: C=RO, O=certSIGN, OU=certSIGN ROOT CA
Certificate added: C=TW, O="Chunghwa Telecom Co., Ltd.", OU=ePKI Root Certification Authority
Certificate added: C=US, O="thawte, Inc.", OU=Certification Services Division, OU="(c) 2006 thawte, Inc. - For authorized use only", CN=thawte Primary Root CA
Certificate added: C=US, O="thawte, Inc.", OU="(c) 2007 thawte, Inc. - For authorized use only", CN=thawte Primary Root CA - G2
Certificate added: C=US, O="thawte, Inc.", OU=Certification Services Division, OU="(c) 2008 thawte, Inc. - For authorized use only", CN=thawte Primary Root CA - G3
Certificate added: C=US, S=Indiana, L=Indianapolis, O=Software in the Public Interest, OU=hostmaster, CN=Certificate Authority, [email protected]
164 new root certificates were added to your trust store.
Import process completed.
Importing into BTLS system store:
I already trust 0, your new list has 164
Certificate added: C=AT, O=A-Trust Ges. f. Sicherheitssysteme im elektr. Datenverkehr GmbH, OU=A-Trust-nQual-03, CN=A-Trust-nQual-03
Certificate added: CN=ACEDICOM Root, OU=PKI, O=EDICOM, C=ES
Certificate added: C=CO, O=Sociedad Cameral de Certificación Digital - Certicámara S.A., CN=AC Raíz Certicámara S.A.
Certificate added: C=IT, L=Milan, O=Actalis S.p.A./03358520967, CN=Actalis Authentication Root CA
Certificate added: C=SE, O=AddTrust AB, OU=AddTrust External TTP Network, CN=AddTrust External CA Root
Certificate added: C=SE, O=AddTrust AB, OU=AddTrust TTP Network, CN=AddTrust Class 1 CA Root
Certificate added: C=SE, O=AddTrust AB, OU=AddTrust TTP Network, CN=AddTrust Public CA Root
Certificate added: C=SE, O=AddTrust AB, OU=AddTrust TTP Network, CN=AddTrust Qualified CA Root
Certificate added: C=US, O=AffirmTrust, CN=AffirmTrust Commercial
Certificate added: C=US, O=AffirmTrust, CN=AffirmTrust Networking
Certificate added: C=US, O=AffirmTrust, CN=AffirmTrust Premium
Certificate added: C=US, O=AffirmTrust, CN=AffirmTrust Premium ECC
Certificate added: C=US, O=America Online Inc., CN=America Online Root Certification Authority 1
Certificate added: C=US, O=America Online Inc., CN=America Online Root Certification Authority 2
Certificate added: C=JP, O=Japanese Government, OU=ApplicationCA
Certificate added: C=ES, CN=Autoridad de Certificacion Firmaprofesional CIF A62634068
Certificate added: C=IE, O=Baltimore, OU=CyberTrust, CN=Baltimore CyberTrust Root
Certificate added: C=NO, O=Buypass AS-983163327, CN=Buypass Class 2 CA 1
Certificate added: C=NO, O=Buypass AS-983163327, CN=Buypass Class 2 Root CA
Certificate added: C=NO, O=Buypass AS-983163327, CN=Buypass Class 3 CA 1
Certificate added: C=NO, O=Buypass AS-983163327, CN=Buypass Class 3 Root CA
Certificate added: C=SK, L=Bratislava, O=Disig a.s., CN=CA Disig
Certificate added: C=SK, L=Bratislava, O=Disig a.s., CN=CA Disig Root R1
Certificate added: C=SK, L=Bratislava, O=Disig a.s., CN=CA Disig Root R2
Certificate added: C=CN, O=CNNIC, CN=CNNIC ROOT
Certificate added: C=GB, S=Greater Manchester, L=Salford, O=COMODO CA Limited, CN=COMODO Certification Authority
Certificate added: C=GB, S=Greater Manchester, L=Salford, O=COMODO CA Limited, CN=COMODO ECC Certification Authority
Certificate added: C=EU, O=AC Camerfirma SA CIF A82743287, OU=http://www.chambersign.org, CN=Chambers of Commerce Root
Certificate added: C=EU, O=AC Camerfirma SA CIF A82743287, OU=http://www.chambersign.org, CN=Global Chambersign Root
Certificate added: C=FR, O=Dhimyotis, CN=Certigna
Certificate added: C=FR, O=Certinomis, OU=0002 433998903, CN=Certinomis - Autorité Racine
Certificate added: C=FR, O=Certplus, CN=Class 2 Primary CA
Certificate added: C=PL, O=Unizeto Sp. z o.o., CN=Certum CA
Certificate added: C=PL, O=Unizeto Technologies S.A., OU=Certum Certification Authority, CN=Certum Trusted Network CA
Certificate added: C=EU, L=Madrid (see current address at www.camerfirma.com/address), OID.2.5.4.5=A82743287, O=AC Camerfirma S.A., CN=Chambers of Commerce Root - 2008
Certificate added: C=CN, O=China Internet Network Information Center, CN=China Internet Network Information Center EV Certificates Root
Certificate added: CN=ComSign CA, O=ComSign, C=IL
Certificate added: CN=ComSign Secured CA, O=ComSign, C=IL
Certificate added: C=GB, S=Greater Manchester, L=Salford, O=Comodo CA Limited, CN=AAA Certificate Services
Certificate added: C=GB, S=Greater Manchester, L=Salford, O=Comodo CA Limited, CN=Secure Certificate Services
Certificate added: C=GB, S=Greater Manchester, L=Salford, O=Comodo CA Limited, CN=Trusted Certificate Services
Certificate added: O="Cybertrust, Inc", CN=Cybertrust Global Root
Certificate added: C=DE, O=D-Trust GmbH, CN=D-TRUST Root Class 3 CA 2 2009
Certificate added: C=DE, O=D-Trust GmbH, CN=D-TRUST Root Class 3 CA 2 EV 2009
Certificate added: C=US, O=Digital Signature Trust, OU=DST ACES, CN=DST ACES CA X6
Certificate added: O=Digital Signature Trust Co., CN=DST Root CA X3
Certificate added: C=DE, O=Deutsche Telekom AG, OU=T-TeleSec Trust Center, CN=Deutsche Telekom Root CA 2
Certificate added: C=US, O=DigiCert Inc, OU=www.digicert.com, CN=DigiCert Assured ID Root CA
Certificate added: C=US, O=DigiCert Inc, OU=www.digicert.com, CN=DigiCert Global Root CA
Certificate added: C=US, O=DigiCert Inc, OU=www.digicert.com, CN=DigiCert High Assurance EV Root CA
Certificate added: C=US, O=Digital Signature Trust Co., OU=DSTCA E1
Certificate added: C=US, O=Digital Signature Trust Co., OU=DSTCA E2
Certificate added: C=TR, O=Elektronik Bilgi Guvenligi A.S., CN=e-Guven Kok Elektronik Sertifika Hizmet Saglayicisi
Certificate added: CN=EBG Elektronik Sertifika Hizmet Sağlayıcısı, O=EBG Bilişim Teknolojileri ve Hizmetleri A.Ş., C=TR
Certificate added: C=ES, O=Agencia Catalana de Certificacio (NIF Q-0801176-I), OU=Serveis Publics de Certificacio, OU=Vegeu https://www.catcert.net/verarrel (c)03, OU=Jerarquia Entitats de Certificacio Catalanes, CN=EC-ACC
Certificate added: C=EE, O=AS Sertifitseerimiskeskus, CN=EE Certification Centre Root CA, [email protected]
Certificate added: O=Entrust.net, OU=www.entrust.net/CPS_2048 incorp. by ref. (limits liab.), OU=(c) 1999 Entrust.net Limited, CN=Entrust.net Certification Authority (2048)
Certificate added: C=US, O=Entrust.net, OU=www.entrust.net/CPS incorp. by ref. (limits liab.), OU=(c) 1999 Entrust.net Limited, CN=Entrust.net Secure Server Certification Authority
Certificate added: C=US, O="Entrust, Inc.", OU=www.entrust.net/CPS is incorporated by reference, OU="(c) 2006 Entrust, Inc.", CN=Entrust Root Certification Authority
Certificate added: C=US, O=Equifax, OU=Equifax Secure Certificate Authority
Certificate added: C=US, O=Equifax Secure Inc., CN=Equifax Secure Global eBusiness CA-1
Certificate added: C=US, O=Equifax Secure Inc., CN=Equifax Secure eBusiness CA-1
Certificate added: C=ES, L=C/ Muntaner 244 Barcelona, CN=Autoridad de Certificacion Firmaprofesional CIF A62634068, [email protected]
Certificate added: C=US, O=GTE Corporation, OU="GTE CyberTrust Solutions, Inc.", CN=GTE CyberTrust Global Root
Certificate added: C=US, O=GeoTrust Inc., CN=GeoTrust Global CA
Certificate added: C=US, O=GeoTrust Inc., CN=GeoTrust Global CA 2
Certificate added: C=US, O=GeoTrust Inc., CN=GeoTrust Primary Certification Authority
Certificate added: C=US, O=GeoTrust Inc., OU=(c) 2007 GeoTrust Inc. - For authorized use only, CN=GeoTrust Primary Certification Authority - G2
Certificate added: C=US, O=GeoTrust Inc., OU=(c) 2008 GeoTrust Inc. - For authorized use only, CN=GeoTrust Primary Certification Authority - G3
Certificate added: C=US, O=GeoTrust Inc., CN=GeoTrust Universal CA
Certificate added: C=US, O=GeoTrust Inc., CN=GeoTrust Universal CA 2
Certificate added: C=BE, O=GlobalSign nv-sa, OU=Root CA, CN=GlobalSign Root CA
Certificate added: OU=GlobalSign Root CA - R2, O=GlobalSign, CN=GlobalSign
Certificate added: OU=GlobalSign Root CA - R3, O=GlobalSign, CN=GlobalSign
Certificate added: C=EU, L=Madrid (see current address at www.camerfirma.com/address), OID.2.5.4.5=A82743287, O=AC Camerfirma S.A., CN=Global Chambersign Root - 2008
Certificate added: C=US, O="The Go Daddy Group, Inc.", OU=Go Daddy Class 2 Certification Authority
Certificate added: C=US, S=Arizona, L=Scottsdale, O="GoDaddy.com, Inc.", CN=Go Daddy Root Certificate Authority - G2
Certificate added: C=GR, O=Hellenic Academic and Research Institutions Cert. Authority, CN=Hellenic Academic and Research Institutions RootCA 2011
Certificate added: C=HK, O=Hongkong Post, CN=Hongkong Post Root CA 1
Certificate added: C=FR, S=France, L=Paris, O=PM/SGDN, OU=DCSSI, CN=IGC/A, [email protected]
Certificate added: C=ES, O=IZENPE S.A., CN=Izenpe.com
Certificate added: [email protected], C=EE, O=AS Sertifitseerimiskeskus, CN=Juur-SK
Certificate added: C=HU, L=Budapest, O=Microsec Ltd., OU=e-Szigno CA, CN=Microsec e-Szigno Root CA
Certificate added: C=HU, L=Budapest, O=Microsec Ltd., CN=Microsec e-Szigno Root CA 2009, [email protected]
Certificate added: C=HU, L=Budapest, O=NetLock Kft., OU=Tanúsítványkiadók (Certification Services), CN=NetLock Arany (Class Gold) Főtanúsítvány
Certificate added: C=HU, L=Budapest, O=NetLock Halozatbiztonsagi Kft., OU=Tanusitvanykiadok, CN=NetLock Uzleti (Class B) Tanusitvanykiado
Certificate added: C=HU, L=Budapest, O=NetLock Halozatbiztonsagi Kft., OU=Tanusitvanykiadok, CN=NetLock Expressz (Class C) Tanusitvanykiado
Certificate added: C=HU, S=Hungary, L=Budapest, O=NetLock Halozatbiztonsagi Kft., OU=Tanusitvanykiadok, CN=NetLock Kozjegyzoi (Class A) Tanusitvanykiado
Certificate added: C=HU, L=Budapest, O=NetLock Halozatbiztonsagi Kft., OU=Tanusitvanykiadok, CN=NetLock Minositett Kozjegyzoi (Class QA) Tanusitvanykiado, [email protected]
Certificate added: C=US, O=Network Solutions L.L.C., CN=Network Solutions Certificate Authority
Certificate added: C=CH, O=WISeKey, OU=Copyright (c) 2005, OU=OISTE Foundation Endorsed, CN=OISTE WISeKey Global Root GA CA
Certificate added: [email protected], L=Chacao, S=Miranda, OU=Proveedor de Certificados PROCERT, O=Sistema Nacional de Certificacion Electronica, C=VE, CN=PSCProcert
Certificate added: C=BM, O=QuoVadis Limited, OU=Root Certification Authority, CN=QuoVadis Root Certification Authority
Certificate added: C=BM, O=QuoVadis Limited, CN=QuoVadis Root CA 2
Certificate added: C=BM, O=QuoVadis Limited, CN=QuoVadis Root CA 3
Certificate added: L=ValiCert Validation Network, O="ValiCert, Inc.", OU=ValiCert Class 3 Policy Validation Authority, CN=http://www.valicert.com/, [email protected]
Certificate added: O=RSA Security Inc, OU=RSA Security 2048 V3
Certificate added: C=ES, O=Generalitat Valenciana, OU=PKIGVA, CN=Root CA Generalitat Valenciana
Certificate added: C=DE, S=Baden-Wuerttemberg (BW), L=Stuttgart, O=Deutscher Sparkassen Verlag GmbH, CN=S-TRUST Authentication and Encryption Root CA 2005:PN
Certificate added: C=JP, O="Japan Certification Services, Inc.", CN=SecureSign RootCA11
Certificate added: C=US, O=SecureTrust Corporation, CN=SecureTrust CA
Certificate added: C=US, O=SecureTrust Corporation, CN=Secure Global CA
Certificate added: C=JP, O="SECOM Trust Systems CO.,LTD.", OU=Security Communication EV RootCA1
Certificate added: C=JP, O="SECOM Trust Systems CO.,LTD.", OU=Security Communication RootCA2
Certificate added: C=JP, O=SECOM Trust.net, OU=Security Communication RootCA1
Certificate added: C=FI, O=Sonera, CN=Sonera Class1 CA
Certificate added: C=FI, O=Sonera, CN=Sonera Class2 CA
Certificate added: C=NL, O=Staat der Nederlanden, CN=Staat der Nederlanden Root CA
Certificate added: C=NL, O=Staat der Nederlanden, CN=Staat der Nederlanden Root CA - G2
Certificate added: C=US, O="Starfield Technologies, Inc.", OU=Starfield Class 2 Certification Authority
Certificate added: C=US, S=Arizona, L=Scottsdale, O="Starfield Technologies, Inc.", CN=Starfield Root Certificate Authority - G2
Certificate added: C=US, S=Arizona, L=Scottsdale, O="Starfield Technologies, Inc.", CN=Starfield Services Root Certificate Authority - G2
Certificate added: C=IL, O=StartCom Ltd., OU=Secure Digital Certificate Signing, CN=StartCom Certification Authority
Certificate added: C=IL, O=StartCom Ltd., OU=Secure Digital Certificate Signing, CN=StartCom Certification Authority
Certificate added: C=IL, O=StartCom Ltd., CN=StartCom Certification Authority G2
Certificate added: C=CH, O=SwissSign AG, CN=SwissSign Gold CA - G2
Certificate added: C=CH, O=SwissSign AG, CN=SwissSign Platinum CA - G2
Certificate added: C=CH, O=SwissSign AG, CN=SwissSign Silver CA - G2
Certificate added: C=ch, O=Swisscom, OU=Digital Certificate Services, CN=Swisscom Root CA 1
Certificate added: C=ch, O=Swisscom, OU=Digital Certificate Services, CN=Swisscom Root CA 2
Certificate added: C=ch, O=Swisscom, OU=Digital Certificate Services, CN=Swisscom Root EV CA 2
Certificate added: C=DE, O=T-Systems Enterprise Services GmbH, OU=T-Systems Trust Center, CN=T-TeleSec GlobalRoot Class 3
Certificate added: C=DE, O=TC TrustCenter GmbH, OU=TC TrustCenter Class 2 CA, CN=TC TrustCenter Class 2 CA II
Certificate added: C=DE, O=TC TrustCenter GmbH, OU=TC TrustCenter Class 3 CA, CN=TC TrustCenter Class 3 CA II
Certificate added: C=DE, O=TC TrustCenter GmbH, OU=TC TrustCenter Universal CA, CN=TC TrustCenter Universal CA I
Certificate added: C=DK, O=TDC Internet, OU=TDC Internet Root CA
Certificate added: C=DK, O=TDC, CN=TDC OCES CA
Certificate added: CN=TÜRKTRUST Elektronik Sertifika Hizmet Sağlayıcısı, C=TR, L=ANKARA, O=(c) 2005 TÜRKTRUST Bilgi İletişim ve Bilişim Güvenliği Hizmetleri A.Ş.
Certificate added: CN=TÜRKTRUST Elektronik Sertifika Hizmet Sağlayıcısı, C=TR, L=Ankara, O=TÜRKTRUST Bilgi İletişim ve Bilişim Güvenliği Hizmetleri A.Ş. (c) Kasım 2005
Certificate added: CN=TÜRKTRUST Elektronik Sertifika Hizmet Sağlayıcısı, C=TR, L=Ankara, O=TÜRKTRUST Bilgi İletişim ve Bilişim Güvenliği Hizmetleri A.Ş. (c) Aralık 2007
Certificate added: C=TW, O=TAIWAN-CA, OU=Root CA, CN=TWCA Root Certification Authority
Certificate added: C=TW, O=Government Root Certification Authority
Certificate added: C=ZA, S=Western Cape, L=Cape Town, O=Thawte Consulting cc, OU=Certification Services Division, CN=Thawte Premium Server CA, [email protected]
Certificate added: C=ZA, S=Western Cape, L=Cape Town, O=Thawte Consulting cc, OU=Certification Services Division, CN=Thawte Server CA, [email protected]
Certificate added: C=GB, O=Trustis Limited, OU=Trustis FPS Root CA
Certificate added: C=TR, L=Gebze - Kocaeli, O=Türkiye Bilimsel ve Teknolojik Araştırma Kurumu - TÜBİTAK, OU=Ulusal Elektronik ve Kriptoloji Araştırma Enstitüsü - UEKAE, OU=Kamu Sertifikasyon Merkezi, CN=TÜBİTAK UEKAE Kök Sertifika Hizmet Sağlayıcısı - Sürüm 3
Certificate added: C=US, S=UT, L=Salt Lake City, O=The USERTRUST Network, OU=http://www.usertrust.com, CN=UTN - DATACorp SGC
Certificate added: C=US, S=UT, L=Salt Lake City, O=The USERTRUST Network, OU=http://www.usertrust.com, CN=UTN-USERFirst-Client Authentication and Email
Certificate added: C=US, S=UT, L=Salt Lake City, O=The USERTRUST Network, OU=http://www.usertrust.com, CN=UTN-USERFirst-Hardware
Certificate added: L=ValiCert Validation Network, O="ValiCert, Inc.", OU=ValiCert Class 1 Policy Validation Authority, CN=http://www.valicert.com/, [email protected]
Certificate added: L=ValiCert Validation Network, O="ValiCert, Inc.", OU=ValiCert Class 2 Policy Validation Authority, CN=http://www.valicert.com/, [email protected]
Certificate added: C=US, O="VeriSign, Inc.", OU=VeriSign Trust Network, OU="(c) 2007 VeriSign, Inc. - For authorized use only", CN=VeriSign Class 3 Public Primary Certification Authority - G4
Certificate added: C=US, O="VeriSign, Inc.", OU=VeriSign Trust Network, OU="(c) 2006 VeriSign, Inc. - For authorized use only", CN=VeriSign Class 3 Public Primary Certification Authority - G5
Certificate added: C=US, O="VeriSign, Inc.", OU=VeriSign Trust Network, OU="(c) 2008 VeriSign, Inc. - For authorized use only", CN=VeriSign Universal Root Certification Authority
Certificate added: C=US, O="VeriSign, Inc.", OU=Class 1 Public Primary Certification Authority
Certificate added: C=US, O="VeriSign, Inc.", OU=Class 1 Public Primary Certification Authority - G2, OU="(c) 1998 VeriSign, Inc. - For authorized use only", OU=VeriSign Trust Network
Certificate added: C=US, O="VeriSign, Inc.", OU=VeriSign Trust Network, OU="(c) 1999 VeriSign, Inc. - For authorized use only", CN=VeriSign Class 1 Public Primary Certification Authority - G3
Certificate added: C=US, O="VeriSign, Inc.", OU=Class 2 Public Primary Certification Authority - G2, OU="(c) 1998 VeriSign, Inc. - For authorized use only", OU=VeriSign Trust Network
Certificate added: C=US, O="VeriSign, Inc.", OU=VeriSign Trust Network, OU="(c) 1999 VeriSign, Inc. - For authorized use only", CN=VeriSign Class 2 Public Primary Certification Authority - G3
Certificate added: C=US, O="VeriSign, Inc.", OU=Class 3 Public Primary Certification Authority
Certificate added: C=US, O="VeriSign, Inc.", OU=Class 3 Public Primary Certification Authority - G2, OU="(c) 1998 VeriSign, Inc. - For authorized use only", OU=VeriSign Trust Network
Certificate added: C=US, O="VeriSign, Inc.", OU=VeriSign Trust Network, OU="(c) 1999 VeriSign, Inc. - For authorized use only", CN=VeriSign Class 3 Public Primary Certification Authority - G3
Certificate added: C=US, O="VeriSign, Inc.", OU=Class 3 Public Primary Certification Authority
Certificate added: C=US, O="VeriSign, Inc.", OU=VeriSign Trust Network, OU="(c) 1999 VeriSign, Inc. - For authorized use only", CN=VeriSign Class 4 Public Primary Certification Authority - G3
Certificate added: C=US, O=VISA, OU=Visa International Service Association, CN=Visa eCommerce Root
Certificate added: C=US, O=Wells Fargo WellsSecure, OU=Wells Fargo Bank NA, CN=WellsSecure Public Root Certificate Authority
Certificate added: C=US, O=Wells Fargo, OU=Wells Fargo Certification Authority, CN=Wells Fargo Root Certificate Authority
Certificate added: C=US, OU=www.xrampsecurity.com, O=XRamp Security Services Inc, CN=XRamp Global Certification Authority
Certificate added: C=RO, O=certSIGN, OU=certSIGN ROOT CA
Certificate added: C=TW, O="Chunghwa Telecom Co., Ltd.", OU=ePKI Root Certification Authority
Certificate added: C=US, O="thawte, Inc.", OU=Certification Services Division, OU="(c) 2006 thawte, Inc. - For authorized use only", CN=thawte Primary Root CA
Certificate added: C=US, O="thawte, Inc.", OU="(c) 2007 thawte, Inc. - For authorized use only", CN=thawte Primary Root CA - G2
Certificate added: C=US, O="thawte, Inc.", OU=Certification Services Division, OU="(c) 2008 thawte, Inc. - For authorized use only", CN=thawte Primary Root CA - G3
Certificate added: C=US, S=Indiana, L=Indianapolis, O=Software in the Public Interest, OU=hostmaster, CN=Certificate Authority, [email protected]
164 new root certificates were added to your trust store.
Import process completed.
Done
done.
Setting up libmono-system-io-compression4.0-cil (4.8.1.0-0xamarin1) ...
Setting up libmono-system-runtime-serialization-formatters-soap4.0-cil (4.8.1.0-0xamarin1) ...
Setting up libmono-data-tds4.0-cil (4.8.1.0-0xamarin1) ...
Setting up libmono-system-transactions4.0-cil (4.8.1.0-0xamarin1) ...
Setting up libmono-system-enterpriseservices4.0-cil (4.8.1.0-0xamarin1) ...
Setting up libmono-system-data4.0-cil (4.8.1.0-0xamarin1) ...
Setting up libmono-sqlite4.0-cil (4.8.1.0-0xamarin1) ...
Setting up libmono-system-componentmodel-dataannotations4.0-cil (4.8.1.0-0xamarin1) ...
Setting up libgdiplus (4.2-0xamarin3+ubuntu1204b1) ...
Setting up libmono-system-drawing4.0-cil (4.8.1.0-0xamarin1) ...
Setting up libmono-system-web-applicationservices4.0-cil (4.8.1.0-0xamarin1) ...
Setting up libmono-accessibility4.0-cil (4.8.1.0-0xamarin1) ...
Setting up libmono-webbrowser4.0-cil (4.8.1.0-0xamarin1) ...
Setting up libmono-i18n4.0-cil (4.8.1.0-0xamarin1) ...
Setting up libmono-i18n-west4.0-cil (4.8.1.0-0xamarin1) ...
Setting up libmono-system-windows-forms4.0-cil (4.8.1.0-0xamarin1) ...
Setting up libmono-ldap4.0-cil (4.8.1.0-0xamarin1) ...
Setting up libmono-system-ldap4.0-cil (4.8.1.0-0xamarin1) ...
Setting up libmono-microsoft-build-framework4.0-cil (4.8.1.0-0xamarin1) ...
Setting up libmono-microsoft-build-utilities-v4.0-4.0-cil (4.8.1.0-0xamarin1) ...
Setting up libmono-microsoft-build-engine4.0-cil (4.8.1.0-0xamarin1) ...
Setting up libmono-xbuild-tasks4.0-cil (4.8.1.0-0xamarin1) ...
Setting up libmono-microsoft-build-tasks-v4.0-4.0-cil (4.8.1.0-0xamarin1) ...
Setting up libmono-system-servicemodel-internals0.0-cil (4.8.1.0-0xamarin1) ...
Setting up libmono-system-runtime-serialization4.0-cil (4.8.1.0-0xamarin1) ...
Setting up libmono-system-xml-linq4.0-cil (4.8.1.0-0xamarin1) ...
Setting up mono-xbuild (4.8.1.0-0xamarin1) ...
Setting up libmono-compilerservices-symbolwriter4.0-cil (4.8.1.0-0xamarin1) ...
Setting up libmono-cecil-private-cil (4.8.1.0-0xamarin1) ...
Setting up libmono-codecontracts4.0-cil (4.8.1.0-0xamarin1) ...
Setting up libmono-peapi4.0a-cil (4.8.1.0-0xamarin1) ...
Setting up libmono-relaxng4.0-cil (4.8.1.0-0xamarin1) ...
Setting up libmono-system-configuration-install4.0-cil (4.8.1.0-0xamarin1) ...
Setting up libmono-system-data-linq4.0-cil (4.8.1.0-0xamarin1) ...
Setting up libmono-system-io-compression-filesystem4.0-cil (4.8.1.0-0xamarin1) ...
Setting up libmono-system-identitymodel4.0-cil (4.8.1.0-0xamarin1) ...
Setting up libmono-system-identitymodel-selectors4.0-cil (4.8.1.0-0xamarin1) ...
Setting up libmono-messaging4.0-cil (4.8.1.0-0xamarin1) ...
Setting up libmono-system-messaging4.0-cil (4.8.1.0-0xamarin1) ...
Setting up libmono-csharp4.0c-cil (4.8.1.0-0xamarin1) ...
Setting up libmono-microsoft-csharp4.0-cil (4.8.1.0-0xamarin1) ...
Setting up mono-mcs (4.8.1.0-0xamarin1) ...
Setting up libmono-cairo4.0-cil (4.8.1.0-0xamarin1) ...
Setting up libmono-cscompmgd0.0-cil (4.8.1.0-0xamarin1) ...
Setting up libmono-custommarshalers4.0-cil (4.8.1.0-0xamarin1) ...
Setting up libmono-db2-1.0-cil (4.8.1.0-0xamarin1) ...
Setting up libmono-debugger-soft4.0a-cil (4.8.1.0-0xamarin1) ...
Setting up libmono-sharpzip4.84-cil (4.8.1.0-0xamarin1) ...
Setting up libmono-i18n-cjk4.0-cil (4.8.1.0-0xamarin1) ...
Setting up libmono-i18n-mideast4.0-cil (4.8.1.0-0xamarin1) ...
Setting up libmono-i18n-other4.0-cil (4.8.1.0-0xamarin1) ...
Setting up libmono-i18n-rare4.0-cil (4.8.1.0-0xamarin1) ...
Setting up libmono-i18n4.0-all (4.8.1.0-0xamarin1) ...