-
Notifications
You must be signed in to change notification settings - Fork 6
/
log_docker_modflow_image_installation.log
5083 lines (4923 loc) · 327 KB
/
log_docker_modflow_image_installation.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
Ralf@Ralfs-Macbook-Pro-190:inowas-homework (master)$ docker build -t inowas/modflow .
Sending build context to Docker daemon 72.19 kB
Step 1 : FROM debian:latest
---> f50f9524513f
Step 2 : RUN apt-get -y update && apt-get install -y build-essential gcc gfortran-4.9 make libfreetype6-dev libpng-dev pkg-config python python-dev python-pip unzip sed wget
---> Running in 796aca0e1c43
Get:1 http://security.debian.org jessie/updates InRelease [63.1 kB]
Ign http://httpredir.debian.org jessie InRelease
Get:2 http://httpredir.debian.org jessie-updates InRelease [142 kB]
Get:3 http://security.debian.org jessie/updates/main amd64 Packages [288 kB]
Get:4 http://httpredir.debian.org jessie Release.gpg [2373 B]
Get:5 http://httpredir.debian.org jessie Release [148 kB]
Get:6 http://httpredir.debian.org jessie-updates/main amd64 Packages [4982 B]
Get:7 http://httpredir.debian.org jessie/main amd64 Packages [9034 kB]
Fetched 9683 kB in 18s (524 kB/s)
Reading package lists...
Reading package lists...
Building dependency tree...
Reading state information...
sed is already the newest version.
The following extra packages will be installed:
binutils bzip2 ca-certificates cpp cpp-4.9 dpkg-dev fakeroot file g++
g++-4.9 gcc-4.9 libalgorithm-c3-perl libalgorithm-diff-perl
libalgorithm-diff-xs-perl libalgorithm-merge-perl libarchive-extract-perl
libasan1 libatomic1 libc-dev-bin libc6 libc6-dev libcgi-fast-perl
libcgi-pm-perl libcilkrts5 libclass-c3-perl libclass-c3-xs-perl
libcloog-isl4 libcpan-meta-perl libdata-optlist-perl libdata-section-perl
libdpkg-perl libexpat1 libexpat1-dev libfakeroot libfcgi-perl libffi6
libfile-fcntllock-perl libfreetype6 libgcc-4.9-dev libgdbm3
libgfortran-4.9-dev libgfortran3 libglib2.0-0 libglib2.0-data libgmp10
libgnutls-deb0-28 libgomp1 libhogweed2 libicu52 libidn11 libisl10 libitm1
liblog-message-perl liblog-message-simple-perl liblsan0 libmagic1
libmodule-build-perl libmodule-pluggable-perl libmodule-signature-perl
libmpc3 libmpfr4 libmro-compat-perl libnettle4 libp11-kit0
libpackage-constants-perl libparams-util-perl libpng12-0 libpod-latex-perl
libpod-readme-perl libpsl0 libpython-dev libpython-stdlib libpython2.7
libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib libquadmath0
libregexp-common-perl libsoftware-license-perl libsqlite3-0 libssl1.0.0
libstdc++-4.9-dev libsub-exporter-perl libsub-install-perl libtasn1-6
libterm-ui-perl libtext-soundex-perl libtext-template-perl libtimedate-perl
libtsan0 libubsan0 libxml2 linux-libc-dev manpages manpages-dev mime-support
openssl patch perl perl-modules python-cffi python-chardet python-colorama
python-cryptography python-distlib python-html5lib python-minimal
python-ndg-httpsclient python-openssl python-pkg-resources python-ply
python-pyasn1 python-pycparser python-requests python-setuptools python-six
python-support python-urllib3 python-wheel python2.7 python2.7-dev
python2.7-minimal rename sgml-base shared-mime-info xdg-user-dirs xml-core
xz-utils zlib1g-dev
Suggested packages:
binutils-doc bzip2-doc cpp-doc gcc-4.9-locales debian-keyring g++-multilib
g++-4.9-multilib gcc-4.9-doc libstdc++6-4.9-dbg gcc-multilib autoconf
automake libtool flex bison gdb gcc-doc gcc-4.9-multilib libgcc1-dbg
libgomp1-dbg libitm1-dbg libatomic1-dbg libasan1-dbg liblsan0-dbg
libtsan0-dbg libubsan0-dbg libcilkrts5-dbg libquadmath0-dbg
gfortran-4.9-multilib gfortran-4.9-doc libgfortran3-dbg glibc-doc gnutls-bin
libstdc++-4.9-doc make-doc man-browser ed diffutils-doc perl-doc
libterm-readline-gnu-perl libterm-readline-perl-perl libb-lint-perl
libcpanplus-dist-build-perl libcpanplus-perl libfile-checktree-perl
libobject-accessor-perl python-doc python-tk python-cryptography-doc
python-cryptography-vectors python-genshi python-lxml python-openssl-doc
python-openssl-dbg python-distribute python-distribute-doc python-ply-doc
doc-base python2.7-doc binfmt-support sgml-base-doc zip debhelper
Recommended packages:
libarchive-tar-perl python-dev-all
The following NEW packages will be installed:
binutils build-essential bzip2 ca-certificates cpp cpp-4.9 dpkg-dev fakeroot
file g++ g++-4.9 gcc gcc-4.9 gfortran-4.9 libalgorithm-c3-perl
libalgorithm-diff-perl libalgorithm-diff-xs-perl libalgorithm-merge-perl
libarchive-extract-perl libasan1 libatomic1 libc-dev-bin libc6-dev
libcgi-fast-perl libcgi-pm-perl libcilkrts5 libclass-c3-perl
libclass-c3-xs-perl libcloog-isl4 libcpan-meta-perl libdata-optlist-perl
libdata-section-perl libdpkg-perl libexpat1 libexpat1-dev libfakeroot
libfcgi-perl libffi6 libfile-fcntllock-perl libfreetype6 libfreetype6-dev
libgcc-4.9-dev libgdbm3 libgfortran-4.9-dev libgfortran3 libglib2.0-0
libglib2.0-data libgmp10 libgnutls-deb0-28 libgomp1 libhogweed2 libicu52
libidn11 libisl10 libitm1 liblog-message-perl liblog-message-simple-perl
liblsan0 libmagic1 libmodule-build-perl libmodule-pluggable-perl
libmodule-signature-perl libmpc3 libmpfr4 libmro-compat-perl libnettle4
libp11-kit0 libpackage-constants-perl libparams-util-perl libpng12-0
libpng12-dev libpod-latex-perl libpod-readme-perl libpsl0 libpython-dev
libpython-stdlib libpython2.7 libpython2.7-dev libpython2.7-minimal
libpython2.7-stdlib libquadmath0 libregexp-common-perl
libsoftware-license-perl libsqlite3-0 libssl1.0.0 libstdc++-4.9-dev
libsub-exporter-perl libsub-install-perl libtasn1-6 libterm-ui-perl
libtext-soundex-perl libtext-template-perl libtimedate-perl libtsan0
libubsan0 libxml2 linux-libc-dev make manpages manpages-dev mime-support
openssl patch perl perl-modules pkg-config python python-cffi python-chardet
python-colorama python-cryptography python-dev python-distlib
python-html5lib python-minimal python-ndg-httpsclient python-openssl
python-pip python-pkg-resources python-ply python-pyasn1 python-pycparser
python-requests python-setuptools python-six python-support python-urllib3
python-wheel python2.7 python2.7-dev python2.7-minimal rename sgml-base
shared-mime-info unzip wget xdg-user-dirs xml-core xz-utils zlib1g-dev
The following packages will be upgraded:
libc6
1 upgraded, 140 newly installed, 0 to remove and 17 not upgraded.
Need to get 113 MB of archives.
After this operation, 333 MB of additional disk space will be used.
Get:1 http://httpredir.debian.org/debian/ jessie/main libc6 amd64 2.19-18+deb8u4 [4665 kB]
Get:2 http://httpredir.debian.org/debian/ jessie/main libgdbm3 amd64 1.8.3-13.1 [30.0 kB]
Get:3 http://httpredir.debian.org/debian/ jessie/main libssl1.0.0 amd64 1.0.1k-3+deb8u4 [1039 kB]
Get:4 http://httpredir.debian.org/debian/ jessie/main libgmp10 amd64 2:6.0.0+dfsg-6 [253 kB]
Get:5 http://httpredir.debian.org/debian/ jessie/main libnettle4 amd64 2.7.1-5+deb8u1 [176 kB]
Get:6 http://httpredir.debian.org/debian/ jessie/main libhogweed2 amd64 2.7.1-5+deb8u1 [126 kB]
Get:7 http://httpredir.debian.org/debian/ jessie/main libffi6 amd64 3.1-2+b2 [20.1 kB]
Get:8 http://httpredir.debian.org/debian/ jessie/main libp11-kit0 amd64 0.20.7-1 [81.2 kB]
Get:9 http://httpredir.debian.org/debian/ jessie/main libtasn1-6 amd64 4.2-3+deb8u1 [48.9 kB]
Get:10 http://httpredir.debian.org/debian/ jessie/main libgnutls-deb0-28 amd64 3.3.8-6+deb8u3 [694 kB]
Get:11 http://httpredir.debian.org/debian/ jessie/main libidn11 amd64 1.29-1+b2 [136 kB]
Get:12 http://httpredir.debian.org/debian/ jessie/main libmagic1 amd64 1:5.22+15-2+deb8u1 [249 kB]
Get:13 http://httpredir.debian.org/debian/ jessie/main libsqlite3-0 amd64 3.8.7.1-1+deb8u1 [438 kB]
Get:14 http://httpredir.debian.org/debian/ jessie/main libxml2 amd64 2.9.1+dfsg1-5+deb8u1 [801 kB]
Get:15 http://httpredir.debian.org/debian/ jessie/main perl-modules all 5.20.2-3+deb8u4 [2546 kB]
Get:16 http://httpredir.debian.org/debian/ jessie/main perl amd64 5.20.2-3+deb8u4 [2638 kB]
Get:17 http://httpredir.debian.org/debian/ jessie/main libpython2.7-minimal amd64 2.7.9-2 [376 kB]
Get:18 http://httpredir.debian.org/debian/ jessie/main python2.7-minimal amd64 2.7.9-2 [1401 kB]
Get:19 http://httpredir.debian.org/debian/ jessie/main python-minimal amd64 2.7.9-1 [40.3 kB]
Get:20 http://httpredir.debian.org/debian/ jessie/main mime-support all 3.58 [36.0 kB]
Get:21 http://httpredir.debian.org/debian/ jessie/main libexpat1 amd64 2.1.0-6+deb8u1 [80.0 kB]
Get:22 http://httpredir.debian.org/debian/ jessie/main libpython2.7-stdlib amd64 2.7.9-2 [1844 kB]
Get:23 http://httpredir.debian.org/debian/ jessie/main python2.7 amd64 2.7.9-2 [251 kB]
Get:24 http://httpredir.debian.org/debian/ jessie/main libpython-stdlib amd64 2.7.9-1 [19.5 kB]
Get:25 http://httpredir.debian.org/debian/ jessie/main python amd64 2.7.9-1 [151 kB]
Get:26 http://httpredir.debian.org/debian/ jessie/main libasan1 amd64 4.9.2-10 [195 kB]
Get:27 http://httpredir.debian.org/debian/ jessie/main libatomic1 amd64 4.9.2-10 [8992 B]
Get:28 http://httpredir.debian.org/debian/ jessie/main libcilkrts5 amd64 4.9.2-10 [40.1 kB]
Get:29 http://httpredir.debian.org/debian/ jessie/main libisl10 amd64 0.12.2-2 [440 kB]
Get:30 http://httpredir.debian.org/debian/ jessie/main libcloog-isl4 amd64 0.18.2-1+b2 [61.8 kB]
Get:31 http://httpredir.debian.org/debian/ jessie/main libpng12-0 amd64 1.2.50-2+deb8u2 [173 kB]
Get:32 http://httpredir.debian.org/debian/ jessie/main libfreetype6 amd64 2.5.2-3+deb8u1 [466 kB]
Get:33 http://httpredir.debian.org/debian/ jessie/main libquadmath0 amd64 4.9.2-10 [129 kB]
Get:34 http://httpredir.debian.org/debian/ jessie/main libgfortran3 amd64 4.9.2-10 [255 kB]
Get:35 http://httpredir.debian.org/debian/ jessie/main libglib2.0-0 amd64 2.42.1-1+b1 [2401 kB]
Get:36 http://httpredir.debian.org/debian/ jessie/main libgomp1 amd64 4.9.2-10 [37.8 kB]
Get:37 http://httpredir.debian.org/debian/ jessie/main libicu52 amd64 52.1-8+deb8u3 [6784 kB]
Get:38 http://httpredir.debian.org/debian/ jessie/main libitm1 amd64 4.9.2-10 [29.2 kB]
Get:39 http://httpredir.debian.org/debian/ jessie/main liblsan0 amd64 4.9.2-10 [92.8 kB]
Get:40 http://httpredir.debian.org/debian/ jessie/main libmpfr4 amd64 3.1.2-2 [527 kB]
Get:41 http://httpredir.debian.org/debian/ jessie/main libpython2.7 amd64 2.7.9-2 [1080 kB]
Get:42 http://httpredir.debian.org/debian/ jessie/main libc-dev-bin amd64 2.19-18+deb8u4 [237 kB]
Get:43 http://httpredir.debian.org/debian/ jessie/main linux-libc-dev amd64 3.16.7-ckt25-1 [1023 kB]
Get:44 http://httpredir.debian.org/debian/ jessie/main libc6-dev amd64 2.19-18+deb8u4 [2002 kB]
Get:45 http://httpredir.debian.org/debian/ jessie/main libexpat1-dev amd64 2.1.0-6+deb8u1 [126 kB]
Get:46 http://httpredir.debian.org/debian/ jessie/main libpython2.7-dev amd64 2.7.9-2 [18.6 MB]
Get:47 http://httpredir.debian.org/debian/ jessie/main libtsan0 amd64 4.9.2-10 [212 kB]
Get:48 http://httpredir.debian.org/debian/ jessie/main libubsan0 amd64 4.9.2-10 [82.4 kB]
Get:49 http://httpredir.debian.org/debian/ jessie/main sgml-base all 1.26+nmu4 [14.6 kB]
Get:50 http://httpredir.debian.org/debian/ jessie/main libmpc3 amd64 1.0.2-1 [39.3 kB]
Get:51 http://httpredir.debian.org/debian/ jessie/main manpages all 3.74-1 [997 kB]
Get:52 http://httpredir.debian.org/debian/ jessie/main libpsl0 amd64 0.5.1-1 [41.6 kB]
Get:53 http://httpredir.debian.org/debian/ jessie/main wget amd64 1.16-1 [495 kB]
Get:54 http://httpredir.debian.org/debian/ jessie/main bzip2 amd64 1.0.6-7+b3 [46.9 kB]
Get:55 http://httpredir.debian.org/debian/ jessie/main file amd64 1:5.22+15-2+deb8u1 [60.4 kB]
Get:56 http://httpredir.debian.org/debian/ jessie/main patch amd64 2.7.5-1 [109 kB]
Get:57 http://httpredir.debian.org/debian/ jessie/main python-support all 1.0.15 [33.6 kB]
Get:58 http://httpredir.debian.org/debian/ jessie/main xz-utils amd64 5.1.1alpha+20120614-2+b3 [221 kB]
Get:59 http://httpredir.debian.org/debian/ jessie/main binutils amd64 2.25-5 [3516 kB]
Get:60 http://httpredir.debian.org/debian/ jessie/main cpp-4.9 amd64 4.9.2-10 [5169 kB]
Get:61 http://httpredir.debian.org/debian/ jessie/main cpp amd64 4:4.9.2-2 [17.3 kB]
Get:62 http://httpredir.debian.org/debian/ jessie/main libgcc-4.9-dev amd64 4.9.2-10 [2066 kB]
Get:63 http://httpredir.debian.org/debian/ jessie/main gcc-4.9 amd64 4.9.2-10 [5352 kB]
Get:64 http://httpredir.debian.org/debian/ jessie/main gcc amd64 4:4.9.2-2 [5136 B]
Get:65 http://httpredir.debian.org/debian/ jessie/main libstdc++-4.9-dev amd64 4.9.2-10 [1121 kB]
Get:66 http://httpredir.debian.org/debian/ jessie/main g++-4.9 amd64 4.9.2-10 [21.4 MB]
Get:67 http://httpredir.debian.org/debian/ jessie/main g++ amd64 4:4.9.2-2 [1530 B]
Get:68 http://httpredir.debian.org/debian/ jessie/main make amd64 4.0-8.1 [349 kB]
Get:69 http://httpredir.debian.org/debian/ jessie/main libtimedate-perl all 2.3000-2 [42.2 kB]
Get:70 http://httpredir.debian.org/debian/ jessie/main libdpkg-perl all 1.17.26 [1072 kB]
Get:71 http://httpredir.debian.org/debian/ jessie/main dpkg-dev all 1.17.26 [1545 kB]
Get:72 http://httpredir.debian.org/debian/ jessie/main build-essential amd64 11.7 [7114 B]
Get:73 http://httpredir.debian.org/debian/ jessie/main openssl amd64 1.0.1k-3+deb8u4 [677 kB]
Get:74 http://httpredir.debian.org/debian/ jessie/main ca-certificates all 20141019+deb8u1 [204 kB]
Get:75 http://httpredir.debian.org/debian/ jessie/main libfakeroot amd64 1.20.2-1 [44.7 kB]
Get:76 http://httpredir.debian.org/debian/ jessie/main fakeroot amd64 1.20.2-1 [84.7 kB]
Get:77 http://httpredir.debian.org/debian/ jessie/main libgfortran-4.9-dev amd64 4.9.2-10 [281 kB]
Get:78 http://httpredir.debian.org/debian/ jessie/main gfortran-4.9 amd64 4.9.2-10 [5465 kB]
Get:79 http://httpredir.debian.org/debian/ jessie/main libalgorithm-c3-perl all 0.09-1 [11.9 kB]
Get:80 http://httpredir.debian.org/debian/ jessie/main libalgorithm-diff-perl all 1.19.02-3 [51.7 kB]
Get:81 http://httpredir.debian.org/debian/ jessie/main libalgorithm-diff-xs-perl amd64 0.04-3+b1 [12.2 kB]
Get:82 http://httpredir.debian.org/debian/ jessie/main libalgorithm-merge-perl all 0.08-2 [13.5 kB]
Get:83 http://httpredir.debian.org/debian/ jessie/main libarchive-extract-perl all 0.72-1 [24.8 kB]
Get:84 http://httpredir.debian.org/debian/ jessie/main libcgi-pm-perl all 4.09-1 [213 kB]
Get:85 http://httpredir.debian.org/debian/ jessie/main libfcgi-perl amd64 0.77-1+b1 [39.1 kB]
Get:86 http://httpredir.debian.org/debian/ jessie/main libcgi-fast-perl all 1:2.04-1 [10.9 kB]
Get:87 http://httpredir.debian.org/debian/ jessie/main libclass-c3-perl all 0.26-1 [22.9 kB]
Get:88 http://httpredir.debian.org/debian/ jessie/main libclass-c3-xs-perl amd64 0.13-2+b1 [15.2 kB]
Get:89 http://httpredir.debian.org/debian/ jessie/main libcpan-meta-perl all 2.142690-1 [125 kB]
Get:90 http://httpredir.debian.org/debian/ jessie/main libparams-util-perl amd64 1.07-2+b1 [23.5 kB]
Get:91 http://httpredir.debian.org/debian/ jessie/main libsub-install-perl all 0.928-1 [11.4 kB]
Get:92 http://httpredir.debian.org/debian/ jessie/main libdata-optlist-perl all 0.109-1 [10.6 kB]
Get:93 http://httpredir.debian.org/debian/ jessie/main libmro-compat-perl all 0.12-1 [13.2 kB]
Get:94 http://httpredir.debian.org/debian/ jessie/main libsub-exporter-perl all 0.986-1 [49.9 kB]
Get:95 http://httpredir.debian.org/debian/ jessie/main libdata-section-perl all 0.200006-1 [13.4 kB]
Get:96 http://httpredir.debian.org/debian/ jessie/main libfile-fcntllock-perl amd64 0.22-1+b1 [36.4 kB]
Get:97 http://httpredir.debian.org/debian/ jessie/main zlib1g-dev amd64 1:1.2.8.dfsg-2+b1 [206 kB]
Get:98 http://httpredir.debian.org/debian/ jessie/main libpng12-dev amd64 1.2.50-2+deb8u2 [248 kB]
Get:99 http://httpredir.debian.org/debian/ jessie/main libfreetype6-dev amd64 2.5.2-3+deb8u1 [638 kB]
Get:100 http://httpredir.debian.org/debian/ jessie/main libglib2.0-data all 2.42.1-1 [2173 kB]
Get:101 http://httpredir.debian.org/debian/ jessie/main liblog-message-perl all 0.8-1 [26.0 kB]
Get:102 http://httpredir.debian.org/debian/ jessie/main liblog-message-simple-perl all 0.10-2 [8126 B]
Get:103 http://httpredir.debian.org/debian/ jessie/main libmodule-build-perl all 0.421000-2 [265 kB]
Get:104 http://httpredir.debian.org/debian/ jessie/main libmodule-pluggable-perl all 5.1-1 [25.0 kB]
Get:105 http://httpredir.debian.org/debian/ jessie/main libmodule-signature-perl all 0.73-1+deb8u2 [30.4 kB]
Get:106 http://httpredir.debian.org/debian/ jessie/main libpackage-constants-perl all 0.04-1 [5820 B]
Get:107 http://httpredir.debian.org/debian/ jessie/main libpod-latex-perl all 0.61-1 [34.7 kB]
Get:108 http://httpredir.debian.org/debian/ jessie/main libregexp-common-perl all 2013031301-1 [173 kB]
Get:109 http://httpredir.debian.org/debian/ jessie/main libpod-readme-perl all 0.11-1 [15.3 kB]
Get:110 http://httpredir.debian.org/debian/ jessie/main libpython-dev amd64 2.7.9-1 [19.6 kB]
Get:111 http://httpredir.debian.org/debian/ jessie/main libtext-template-perl all 1.46-1 [53.1 kB]
Get:112 http://httpredir.debian.org/debian/ jessie/main libsoftware-license-perl all 0.103010-3 [119 kB]
Get:113 http://httpredir.debian.org/debian/ jessie/main libterm-ui-perl all 0.42-1 [19.1 kB]
Get:114 http://httpredir.debian.org/debian/ jessie/main libtext-soundex-perl amd64 3.4-1+b2 [13.7 kB]
Get:115 http://httpredir.debian.org/debian/ jessie/main manpages-dev all 3.74-1 [1865 kB]
Get:116 http://httpredir.debian.org/debian/ jessie/main pkg-config amd64 0.28-1 [57.5 kB]
Get:117 http://httpredir.debian.org/debian/ jessie/main python-ply all 3.4-5 [62.9 kB]
Get:118 http://httpredir.debian.org/debian/ jessie/main python-pycparser all 2.10+dfsg-3 [58.8 kB]
Get:119 http://httpredir.debian.org/debian/ jessie/main python-cffi amd64 0.8.6-1 [67.2 kB]
Get:120 http://httpredir.debian.org/debian/ jessie/main python-pkg-resources all 5.5.1-1 [64.4 kB]
Get:121 http://httpredir.debian.org/debian/ jessie/main python-chardet all 2.3.0-1 [96.2 kB]
Get:122 http://httpredir.debian.org/debian/ jessie/main python-colorama all 0.3.2-1 [20.3 kB]
Get:123 http://httpredir.debian.org/debian/ jessie/main python-six all 1.8.0-1 [12.6 kB]
Get:124 http://httpredir.debian.org/debian/ jessie/main python-cryptography amd64 0.6.1-1 [165 kB]
Get:125 http://httpredir.debian.org/debian/ jessie/main python2.7-dev amd64 2.7.9-2 [276 kB]
Get:126 http://httpredir.debian.org/debian/ jessie/main python-dev amd64 2.7.9-1 [1182 B]
Get:127 http://httpredir.debian.org/debian/ jessie/main python-distlib all 0.1.9-1 [113 kB]
Get:128 http://httpredir.debian.org/debian/ jessie/main python-html5lib all 0.999-3 [84.0 kB]
Get:129 http://httpredir.debian.org/debian/ jessie/main python-openssl all 0.14-1 [81.1 kB]
Get:130 http://httpredir.debian.org/debian/ jessie/main python-ndg-httpsclient all 0.3.2-1 [20.5 kB]
Get:131 http://httpredir.debian.org/debian/ jessie/main python-urllib3 all 1.9.1-3 [55.4 kB]
Get:132 http://httpredir.debian.org/debian/ jessie/main python-requests all 2.4.3-6 [204 kB]
Get:133 http://httpredir.debian.org/debian/ jessie/main python-setuptools all 5.5.1-1 [242 kB]
Get:134 http://httpredir.debian.org/debian/ jessie/main python-pip all 1.5.6-5 [114 kB]
Get:135 http://httpredir.debian.org/debian/ jessie/main python-pyasn1 all 0.1.7-1 [49.3 kB]
Get:136 http://httpredir.debian.org/debian/ jessie/main python-wheel all 0.24.0-1 [47.5 kB]
Get:137 http://httpredir.debian.org/debian/ jessie/main rename all 0.20-3 [12.4 kB]
Get:138 http://httpredir.debian.org/debian/ jessie/main shared-mime-info amd64 1.3-1 [634 kB]
Get:139 http://httpredir.debian.org/debian/ jessie/main unzip amd64 6.0-16+deb8u2 [162 kB]
Get:140 http://httpredir.debian.org/debian/ jessie/main xdg-user-dirs amd64 0.15-2 [52.1 kB]
Get:141 http://httpredir.debian.org/debian/ jessie/main xml-core all 0.13+nmu2 [24.2 kB]
debconf: delaying package configuration, since apt-utils is not installed
Fetched 113 MB in 17min 37s (107 kB/s)
(Reading database ... 7531 files and directories currently installed.)
Preparing to unpack .../libc6_2.19-18+deb8u4_amd64.deb ...
debconf: unable to initialize frontend: Dialog
debconf: (TERM is not set, so the dialog frontend is not usable.)
debconf: falling back to frontend: Readline
debconf: unable to initialize frontend: Readline
debconf: (Can't locate Term/ReadLine.pm in @INC (you may need to install the Term::ReadLine module) (@INC contains: /etc/perl /usr/local/lib/x86_64-linux-gnu/perl/5.20.2 /usr/local/share/perl/5.20.2 /usr/lib/x86_64-linux-gnu/perl5/5.20 /usr/share/perl5 /usr/lib/x86_64-linux-gnu/perl/5.20 /usr/share/perl/5.20 /usr/local/lib/site_perl .) at /usr/share/perl5/Debconf/FrontEnd/Readline.pm line 7.)
debconf: falling back to frontend: Teletype
Unpacking libc6:amd64 (2.19-18+deb8u4) over (2.19-18+deb8u3) ...
Setting up libc6:amd64 (2.19-18+deb8u4) ...
debconf: unable to initialize frontend: Dialog
debconf: (TERM is not set, so the dialog frontend is not usable.)
debconf: falling back to frontend: Readline
debconf: unable to initialize frontend: Readline
debconf: (Can't locate Term/ReadLine.pm in @INC (you may need to install the Term::ReadLine module) (@INC contains: /etc/perl /usr/local/lib/x86_64-linux-gnu/perl/5.20.2 /usr/local/share/perl/5.20.2 /usr/lib/x86_64-linux-gnu/perl5/5.20 /usr/share/perl5 /usr/lib/x86_64-linux-gnu/perl/5.20 /usr/share/perl/5.20 /usr/local/lib/site_perl .) at /usr/share/perl5/Debconf/FrontEnd/Readline.pm line 7.)
debconf: falling back to frontend: Teletype
Processing triggers for libc-bin (2.19-18+deb8u3) ...
Selecting previously unselected package libgdbm3:amd64.
(Reading database ... 7531 files and directories currently installed.)
Preparing to unpack .../libgdbm3_1.8.3-13.1_amd64.deb ...
Unpacking libgdbm3:amd64 (1.8.3-13.1) ...
Selecting previously unselected package libssl1.0.0:amd64.
Preparing to unpack .../libssl1.0.0_1.0.1k-3+deb8u4_amd64.deb ...
Unpacking libssl1.0.0:amd64 (1.0.1k-3+deb8u4) ...
Selecting previously unselected package libgmp10:amd64.
Preparing to unpack .../libgmp10_2%3a6.0.0+dfsg-6_amd64.deb ...
Unpacking libgmp10:amd64 (2:6.0.0+dfsg-6) ...
Selecting previously unselected package libnettle4:amd64.
Preparing to unpack .../libnettle4_2.7.1-5+deb8u1_amd64.deb ...
Unpacking libnettle4:amd64 (2.7.1-5+deb8u1) ...
Selecting previously unselected package libhogweed2:amd64.
Preparing to unpack .../libhogweed2_2.7.1-5+deb8u1_amd64.deb ...
Unpacking libhogweed2:amd64 (2.7.1-5+deb8u1) ...
Selecting previously unselected package libffi6:amd64.
Preparing to unpack .../libffi6_3.1-2+b2_amd64.deb ...
Unpacking libffi6:amd64 (3.1-2+b2) ...
Selecting previously unselected package libp11-kit0:amd64.
Preparing to unpack .../libp11-kit0_0.20.7-1_amd64.deb ...
Unpacking libp11-kit0:amd64 (0.20.7-1) ...
Selecting previously unselected package libtasn1-6:amd64.
Preparing to unpack .../libtasn1-6_4.2-3+deb8u1_amd64.deb ...
Unpacking libtasn1-6:amd64 (4.2-3+deb8u1) ...
Selecting previously unselected package libgnutls-deb0-28:amd64.
Preparing to unpack .../libgnutls-deb0-28_3.3.8-6+deb8u3_amd64.deb ...
Unpacking libgnutls-deb0-28:amd64 (3.3.8-6+deb8u3) ...
Selecting previously unselected package libidn11:amd64.
Preparing to unpack .../libidn11_1.29-1+b2_amd64.deb ...
Unpacking libidn11:amd64 (1.29-1+b2) ...
Selecting previously unselected package libmagic1:amd64.
Preparing to unpack .../libmagic1_1%3a5.22+15-2+deb8u1_amd64.deb ...
Unpacking libmagic1:amd64 (1:5.22+15-2+deb8u1) ...
Selecting previously unselected package libsqlite3-0:amd64.
Preparing to unpack .../libsqlite3-0_3.8.7.1-1+deb8u1_amd64.deb ...
Unpacking libsqlite3-0:amd64 (3.8.7.1-1+deb8u1) ...
Selecting previously unselected package libxml2:amd64.
Preparing to unpack .../libxml2_2.9.1+dfsg1-5+deb8u1_amd64.deb ...
Unpacking libxml2:amd64 (2.9.1+dfsg1-5+deb8u1) ...
Selecting previously unselected package perl-modules.
Preparing to unpack .../perl-modules_5.20.2-3+deb8u4_all.deb ...
Unpacking perl-modules (5.20.2-3+deb8u4) ...
Selecting previously unselected package perl.
Preparing to unpack .../perl_5.20.2-3+deb8u4_amd64.deb ...
Unpacking perl (5.20.2-3+deb8u4) ...
Selecting previously unselected package libpython2.7-minimal:amd64.
Preparing to unpack .../libpython2.7-minimal_2.7.9-2_amd64.deb ...
Unpacking libpython2.7-minimal:amd64 (2.7.9-2) ...
Selecting previously unselected package python2.7-minimal.
Preparing to unpack .../python2.7-minimal_2.7.9-2_amd64.deb ...
Unpacking python2.7-minimal (2.7.9-2) ...
Selecting previously unselected package python-minimal.
Preparing to unpack .../python-minimal_2.7.9-1_amd64.deb ...
Unpacking python-minimal (2.7.9-1) ...
Selecting previously unselected package mime-support.
Preparing to unpack .../mime-support_3.58_all.deb ...
Unpacking mime-support (3.58) ...
Selecting previously unselected package libexpat1:amd64.
Preparing to unpack .../libexpat1_2.1.0-6+deb8u1_amd64.deb ...
Unpacking libexpat1:amd64 (2.1.0-6+deb8u1) ...
Selecting previously unselected package libpython2.7-stdlib:amd64.
Preparing to unpack .../libpython2.7-stdlib_2.7.9-2_amd64.deb ...
Unpacking libpython2.7-stdlib:amd64 (2.7.9-2) ...
Selecting previously unselected package python2.7.
Preparing to unpack .../python2.7_2.7.9-2_amd64.deb ...
Unpacking python2.7 (2.7.9-2) ...
Selecting previously unselected package libpython-stdlib:amd64.
Preparing to unpack .../libpython-stdlib_2.7.9-1_amd64.deb ...
Unpacking libpython-stdlib:amd64 (2.7.9-1) ...
Setting up libpython2.7-minimal:amd64 (2.7.9-2) ...
Setting up python2.7-minimal (2.7.9-2) ...
Linking and byte-compiling packages for runtime python2.7...
Setting up python-minimal (2.7.9-1) ...
Selecting previously unselected package python.
(Reading database ... 9651 files and directories currently installed.)
Preparing to unpack .../python_2.7.9-1_amd64.deb ...
Unpacking python (2.7.9-1) ...
Selecting previously unselected package libasan1:amd64.
Preparing to unpack .../libasan1_4.9.2-10_amd64.deb ...
Unpacking libasan1:amd64 (4.9.2-10) ...
Selecting previously unselected package libatomic1:amd64.
Preparing to unpack .../libatomic1_4.9.2-10_amd64.deb ...
Unpacking libatomic1:amd64 (4.9.2-10) ...
Selecting previously unselected package libcilkrts5:amd64.
Preparing to unpack .../libcilkrts5_4.9.2-10_amd64.deb ...
Unpacking libcilkrts5:amd64 (4.9.2-10) ...
Selecting previously unselected package libisl10:amd64.
Preparing to unpack .../libisl10_0.12.2-2_amd64.deb ...
Unpacking libisl10:amd64 (0.12.2-2) ...
Selecting previously unselected package libcloog-isl4:amd64.
Preparing to unpack .../libcloog-isl4_0.18.2-1+b2_amd64.deb ...
Unpacking libcloog-isl4:amd64 (0.18.2-1+b2) ...
Selecting previously unselected package libpng12-0:amd64.
Preparing to unpack .../libpng12-0_1.2.50-2+deb8u2_amd64.deb ...
Unpacking libpng12-0:amd64 (1.2.50-2+deb8u2) ...
Selecting previously unselected package libfreetype6:amd64.
Preparing to unpack .../libfreetype6_2.5.2-3+deb8u1_amd64.deb ...
Unpacking libfreetype6:amd64 (2.5.2-3+deb8u1) ...
Selecting previously unselected package libquadmath0:amd64.
Preparing to unpack .../libquadmath0_4.9.2-10_amd64.deb ...
Unpacking libquadmath0:amd64 (4.9.2-10) ...
Selecting previously unselected package libgfortran3:amd64.
Preparing to unpack .../libgfortran3_4.9.2-10_amd64.deb ...
Unpacking libgfortran3:amd64 (4.9.2-10) ...
Selecting previously unselected package libglib2.0-0:amd64.
Preparing to unpack .../libglib2.0-0_2.42.1-1+b1_amd64.deb ...
Unpacking libglib2.0-0:amd64 (2.42.1-1+b1) ...
Selecting previously unselected package libgomp1:amd64.
Preparing to unpack .../libgomp1_4.9.2-10_amd64.deb ...
Unpacking libgomp1:amd64 (4.9.2-10) ...
Selecting previously unselected package libicu52:amd64.
Preparing to unpack .../libicu52_52.1-8+deb8u3_amd64.deb ...
Unpacking libicu52:amd64 (52.1-8+deb8u3) ...
Selecting previously unselected package libitm1:amd64.
Preparing to unpack .../libitm1_4.9.2-10_amd64.deb ...
Unpacking libitm1:amd64 (4.9.2-10) ...
Selecting previously unselected package liblsan0:amd64.
Preparing to unpack .../liblsan0_4.9.2-10_amd64.deb ...
Unpacking liblsan0:amd64 (4.9.2-10) ...
Selecting previously unselected package libmpfr4:amd64.
Preparing to unpack .../libmpfr4_3.1.2-2_amd64.deb ...
Unpacking libmpfr4:amd64 (3.1.2-2) ...
Selecting previously unselected package libpython2.7:amd64.
Preparing to unpack .../libpython2.7_2.7.9-2_amd64.deb ...
Unpacking libpython2.7:amd64 (2.7.9-2) ...
Selecting previously unselected package libc-dev-bin.
Preparing to unpack .../libc-dev-bin_2.19-18+deb8u4_amd64.deb ...
Unpacking libc-dev-bin (2.19-18+deb8u4) ...
Selecting previously unselected package linux-libc-dev:amd64.
Preparing to unpack .../linux-libc-dev_3.16.7-ckt25-1_amd64.deb ...
Unpacking linux-libc-dev:amd64 (3.16.7-ckt25-1) ...
Selecting previously unselected package libc6-dev:amd64.
Preparing to unpack .../libc6-dev_2.19-18+deb8u4_amd64.deb ...
Unpacking libc6-dev:amd64 (2.19-18+deb8u4) ...
Selecting previously unselected package libexpat1-dev:amd64.
Preparing to unpack .../libexpat1-dev_2.1.0-6+deb8u1_amd64.deb ...
Unpacking libexpat1-dev:amd64 (2.1.0-6+deb8u1) ...
Selecting previously unselected package libpython2.7-dev:amd64.
Preparing to unpack .../libpython2.7-dev_2.7.9-2_amd64.deb ...
Unpacking libpython2.7-dev:amd64 (2.7.9-2) ...
Selecting previously unselected package libtsan0:amd64.
Preparing to unpack .../libtsan0_4.9.2-10_amd64.deb ...
Unpacking libtsan0:amd64 (4.9.2-10) ...
Selecting previously unselected package libubsan0:amd64.
Preparing to unpack .../libubsan0_4.9.2-10_amd64.deb ...
Unpacking libubsan0:amd64 (4.9.2-10) ...
Selecting previously unselected package sgml-base.
Preparing to unpack .../sgml-base_1.26+nmu4_all.deb ...
Unpacking sgml-base (1.26+nmu4) ...
Selecting previously unselected package libmpc3:amd64.
Preparing to unpack .../libmpc3_1.0.2-1_amd64.deb ...
Unpacking libmpc3:amd64 (1.0.2-1) ...
Selecting previously unselected package manpages.
Preparing to unpack .../manpages_3.74-1_all.deb ...
Unpacking manpages (3.74-1) ...
Selecting previously unselected package libpsl0:amd64.
Preparing to unpack .../libpsl0_0.5.1-1_amd64.deb ...
Unpacking libpsl0:amd64 (0.5.1-1) ...
Selecting previously unselected package wget.
Preparing to unpack .../archives/wget_1.16-1_amd64.deb ...
Unpacking wget (1.16-1) ...
Selecting previously unselected package bzip2.
Preparing to unpack .../bzip2_1.0.6-7+b3_amd64.deb ...
Unpacking bzip2 (1.0.6-7+b3) ...
Selecting previously unselected package file.
Preparing to unpack .../file_1%3a5.22+15-2+deb8u1_amd64.deb ...
Unpacking file (1:5.22+15-2+deb8u1) ...
Selecting previously unselected package patch.
Preparing to unpack .../patch_2.7.5-1_amd64.deb ...
Unpacking patch (2.7.5-1) ...
Selecting previously unselected package python-support.
Preparing to unpack .../python-support_1.0.15_all.deb ...
Unpacking python-support (1.0.15) ...
Selecting previously unselected package xz-utils.
Preparing to unpack .../xz-utils_5.1.1alpha+20120614-2+b3_amd64.deb ...
Unpacking xz-utils (5.1.1alpha+20120614-2+b3) ...
Selecting previously unselected package binutils.
Preparing to unpack .../binutils_2.25-5_amd64.deb ...
Unpacking binutils (2.25-5) ...
Selecting previously unselected package cpp-4.9.
Preparing to unpack .../cpp-4.9_4.9.2-10_amd64.deb ...
Unpacking cpp-4.9 (4.9.2-10) ...
Selecting previously unselected package cpp.
Preparing to unpack .../cpp_4%3a4.9.2-2_amd64.deb ...
Unpacking cpp (4:4.9.2-2) ...
Selecting previously unselected package libgcc-4.9-dev:amd64.
Preparing to unpack .../libgcc-4.9-dev_4.9.2-10_amd64.deb ...
Unpacking libgcc-4.9-dev:amd64 (4.9.2-10) ...
Selecting previously unselected package gcc-4.9.
Preparing to unpack .../gcc-4.9_4.9.2-10_amd64.deb ...
Unpacking gcc-4.9 (4.9.2-10) ...
Selecting previously unselected package gcc.
Preparing to unpack .../gcc_4%3a4.9.2-2_amd64.deb ...
Unpacking gcc (4:4.9.2-2) ...
Selecting previously unselected package libstdc++-4.9-dev:amd64.
Preparing to unpack .../libstdc++-4.9-dev_4.9.2-10_amd64.deb ...
Unpacking libstdc++-4.9-dev:amd64 (4.9.2-10) ...
Selecting previously unselected package g++-4.9.
Preparing to unpack .../g++-4.9_4.9.2-10_amd64.deb ...
Unpacking g++-4.9 (4.9.2-10) ...
Selecting previously unselected package g++.
Preparing to unpack .../g++_4%3a4.9.2-2_amd64.deb ...
Unpacking g++ (4:4.9.2-2) ...
Selecting previously unselected package make.
Preparing to unpack .../make_4.0-8.1_amd64.deb ...
Unpacking make (4.0-8.1) ...
Selecting previously unselected package libtimedate-perl.
Preparing to unpack .../libtimedate-perl_2.3000-2_all.deb ...
Unpacking libtimedate-perl (2.3000-2) ...
Selecting previously unselected package libdpkg-perl.
Preparing to unpack .../libdpkg-perl_1.17.26_all.deb ...
Unpacking libdpkg-perl (1.17.26) ...
Selecting previously unselected package dpkg-dev.
Preparing to unpack .../dpkg-dev_1.17.26_all.deb ...
Unpacking dpkg-dev (1.17.26) ...
Selecting previously unselected package build-essential.
Preparing to unpack .../build-essential_11.7_amd64.deb ...
Unpacking build-essential (11.7) ...
Selecting previously unselected package openssl.
Preparing to unpack .../openssl_1.0.1k-3+deb8u4_amd64.deb ...
Unpacking openssl (1.0.1k-3+deb8u4) ...
Selecting previously unselected package ca-certificates.
Preparing to unpack .../ca-certificates_20141019+deb8u1_all.deb ...
Unpacking ca-certificates (20141019+deb8u1) ...
Selecting previously unselected package libfakeroot:amd64.
Preparing to unpack .../libfakeroot_1.20.2-1_amd64.deb ...
Unpacking libfakeroot:amd64 (1.20.2-1) ...
Selecting previously unselected package fakeroot.
Preparing to unpack .../fakeroot_1.20.2-1_amd64.deb ...
Unpacking fakeroot (1.20.2-1) ...
Selecting previously unselected package libgfortran-4.9-dev:amd64.
Preparing to unpack .../libgfortran-4.9-dev_4.9.2-10_amd64.deb ...
Unpacking libgfortran-4.9-dev:amd64 (4.9.2-10) ...
Selecting previously unselected package gfortran-4.9.
Preparing to unpack .../gfortran-4.9_4.9.2-10_amd64.deb ...
Unpacking gfortran-4.9 (4.9.2-10) ...
Selecting previously unselected package libalgorithm-c3-perl.
Preparing to unpack .../libalgorithm-c3-perl_0.09-1_all.deb ...
Unpacking libalgorithm-c3-perl (0.09-1) ...
Selecting previously unselected package libalgorithm-diff-perl.
Preparing to unpack .../libalgorithm-diff-perl_1.19.02-3_all.deb ...
Unpacking libalgorithm-diff-perl (1.19.02-3) ...
Selecting previously unselected package libalgorithm-diff-xs-perl.
Preparing to unpack .../libalgorithm-diff-xs-perl_0.04-3+b1_amd64.deb ...
Unpacking libalgorithm-diff-xs-perl (0.04-3+b1) ...
Selecting previously unselected package libalgorithm-merge-perl.
Preparing to unpack .../libalgorithm-merge-perl_0.08-2_all.deb ...
Unpacking libalgorithm-merge-perl (0.08-2) ...
Selecting previously unselected package libarchive-extract-perl.
Preparing to unpack .../libarchive-extract-perl_0.72-1_all.deb ...
Unpacking libarchive-extract-perl (0.72-1) ...
Selecting previously unselected package libcgi-pm-perl.
Preparing to unpack .../libcgi-pm-perl_4.09-1_all.deb ...
Unpacking libcgi-pm-perl (4.09-1) ...
Selecting previously unselected package libfcgi-perl.
Preparing to unpack .../libfcgi-perl_0.77-1+b1_amd64.deb ...
Unpacking libfcgi-perl (0.77-1+b1) ...
Selecting previously unselected package libcgi-fast-perl.
Preparing to unpack .../libcgi-fast-perl_1%3a2.04-1_all.deb ...
Unpacking libcgi-fast-perl (1:2.04-1) ...
Selecting previously unselected package libclass-c3-perl.
Preparing to unpack .../libclass-c3-perl_0.26-1_all.deb ...
Unpacking libclass-c3-perl (0.26-1) ...
Selecting previously unselected package libclass-c3-xs-perl.
Preparing to unpack .../libclass-c3-xs-perl_0.13-2+b1_amd64.deb ...
Unpacking libclass-c3-xs-perl (0.13-2+b1) ...
Selecting previously unselected package libcpan-meta-perl.
Preparing to unpack .../libcpan-meta-perl_2.142690-1_all.deb ...
Unpacking libcpan-meta-perl (2.142690-1) ...
Selecting previously unselected package libparams-util-perl.
Preparing to unpack .../libparams-util-perl_1.07-2+b1_amd64.deb ...
Unpacking libparams-util-perl (1.07-2+b1) ...
Selecting previously unselected package libsub-install-perl.
Preparing to unpack .../libsub-install-perl_0.928-1_all.deb ...
Unpacking libsub-install-perl (0.928-1) ...
Selecting previously unselected package libdata-optlist-perl.
Preparing to unpack .../libdata-optlist-perl_0.109-1_all.deb ...
Unpacking libdata-optlist-perl (0.109-1) ...
Selecting previously unselected package libmro-compat-perl.
Preparing to unpack .../libmro-compat-perl_0.12-1_all.deb ...
Unpacking libmro-compat-perl (0.12-1) ...
Selecting previously unselected package libsub-exporter-perl.
Preparing to unpack .../libsub-exporter-perl_0.986-1_all.deb ...
Unpacking libsub-exporter-perl (0.986-1) ...
Selecting previously unselected package libdata-section-perl.
Preparing to unpack .../libdata-section-perl_0.200006-1_all.deb ...
Unpacking libdata-section-perl (0.200006-1) ...
Selecting previously unselected package libfile-fcntllock-perl.
Preparing to unpack .../libfile-fcntllock-perl_0.22-1+b1_amd64.deb ...
Unpacking libfile-fcntllock-perl (0.22-1+b1) ...
Selecting previously unselected package zlib1g-dev:amd64.
Preparing to unpack .../zlib1g-dev_1%3a1.2.8.dfsg-2+b1_amd64.deb ...
Unpacking zlib1g-dev:amd64 (1:1.2.8.dfsg-2+b1) ...
Selecting previously unselected package libpng12-dev:amd64.
Preparing to unpack .../libpng12-dev_1.2.50-2+deb8u2_amd64.deb ...
Unpacking libpng12-dev:amd64 (1.2.50-2+deb8u2) ...
Selecting previously unselected package libfreetype6-dev.
Preparing to unpack .../libfreetype6-dev_2.5.2-3+deb8u1_amd64.deb ...
Unpacking libfreetype6-dev (2.5.2-3+deb8u1) ...
Selecting previously unselected package libglib2.0-data.
Preparing to unpack .../libglib2.0-data_2.42.1-1_all.deb ...
Unpacking libglib2.0-data (2.42.1-1) ...
Selecting previously unselected package liblog-message-perl.
Preparing to unpack .../liblog-message-perl_0.8-1_all.deb ...
Unpacking liblog-message-perl (0.8-1) ...
Selecting previously unselected package liblog-message-simple-perl.
Preparing to unpack .../liblog-message-simple-perl_0.10-2_all.deb ...
Unpacking liblog-message-simple-perl (0.10-2) ...
Selecting previously unselected package libmodule-build-perl.
Preparing to unpack .../libmodule-build-perl_0.421000-2_all.deb ...
Adding 'diversion of /usr/bin/config_data to /usr/bin/config_data.diverted by libmodule-build-perl'
Adding 'diversion of /usr/share/man/man1/config_data.1.gz to /usr/share/man/man1/config_data.diverted.1.gz by libmodule-build-perl'
Unpacking libmodule-build-perl (0.421000-2) ...
Selecting previously unselected package libmodule-pluggable-perl.
Preparing to unpack .../libmodule-pluggable-perl_5.1-1_all.deb ...
Unpacking libmodule-pluggable-perl (5.1-1) ...
Selecting previously unselected package libmodule-signature-perl.
Preparing to unpack .../libmodule-signature-perl_0.73-1+deb8u2_all.deb ...
Unpacking libmodule-signature-perl (0.73-1+deb8u2) ...
Selecting previously unselected package libpackage-constants-perl.
Preparing to unpack .../libpackage-constants-perl_0.04-1_all.deb ...
Unpacking libpackage-constants-perl (0.04-1) ...
Selecting previously unselected package libpod-latex-perl.
Preparing to unpack .../libpod-latex-perl_0.61-1_all.deb ...
Adding 'diversion of /usr/bin/pod2latex to /usr/bin/pod2latex.bundled by libpod-latex-perl'
Adding 'diversion of /usr/share/man/man1/pod2latex.1.gz to /usr/share/man/man1/pod2latex.bundled.1.gz by libpod-latex-perl'
Unpacking libpod-latex-perl (0.61-1) ...
Selecting previously unselected package libregexp-common-perl.
Preparing to unpack .../libregexp-common-perl_2013031301-1_all.deb ...
Unpacking libregexp-common-perl (2013031301-1) ...
Selecting previously unselected package libpod-readme-perl.
Preparing to unpack .../libpod-readme-perl_0.11-1_all.deb ...
Unpacking libpod-readme-perl (0.11-1) ...
Selecting previously unselected package libpython-dev:amd64.
Preparing to unpack .../libpython-dev_2.7.9-1_amd64.deb ...
Unpacking libpython-dev:amd64 (2.7.9-1) ...
Selecting previously unselected package libtext-template-perl.
Preparing to unpack .../libtext-template-perl_1.46-1_all.deb ...
Unpacking libtext-template-perl (1.46-1) ...
Selecting previously unselected package libsoftware-license-perl.
Preparing to unpack .../libsoftware-license-perl_0.103010-3_all.deb ...
Unpacking libsoftware-license-perl (0.103010-3) ...
Selecting previously unselected package libterm-ui-perl.
Preparing to unpack .../libterm-ui-perl_0.42-1_all.deb ...
Unpacking libterm-ui-perl (0.42-1) ...
Selecting previously unselected package libtext-soundex-perl.
Preparing to unpack .../libtext-soundex-perl_3.4-1+b2_amd64.deb ...
Unpacking libtext-soundex-perl (3.4-1+b2) ...
Selecting previously unselected package manpages-dev.
Preparing to unpack .../manpages-dev_3.74-1_all.deb ...
Unpacking manpages-dev (3.74-1) ...
Selecting previously unselected package pkg-config.
Preparing to unpack .../pkg-config_0.28-1_amd64.deb ...
Unpacking pkg-config (0.28-1) ...
Selecting previously unselected package python-ply.
Preparing to unpack .../python-ply_3.4-5_all.deb ...
Unpacking python-ply (3.4-5) ...
Selecting previously unselected package python-pycparser.
Preparing to unpack .../python-pycparser_2.10+dfsg-3_all.deb ...
Unpacking python-pycparser (2.10+dfsg-3) ...
Selecting previously unselected package python-cffi.
Preparing to unpack .../python-cffi_0.8.6-1_amd64.deb ...
Unpacking python-cffi (0.8.6-1) ...
Selecting previously unselected package python-pkg-resources.
Preparing to unpack .../python-pkg-resources_5.5.1-1_all.deb ...
Unpacking python-pkg-resources (5.5.1-1) ...
Selecting previously unselected package python-chardet.
Preparing to unpack .../python-chardet_2.3.0-1_all.deb ...
Unpacking python-chardet (2.3.0-1) ...
Selecting previously unselected package python-colorama.
Preparing to unpack .../python-colorama_0.3.2-1_all.deb ...
Unpacking python-colorama (0.3.2-1) ...
Selecting previously unselected package python-six.
Preparing to unpack .../python-six_1.8.0-1_all.deb ...
Unpacking python-six (1.8.0-1) ...
Selecting previously unselected package python-cryptography.
Preparing to unpack .../python-cryptography_0.6.1-1_amd64.deb ...
Unpacking python-cryptography (0.6.1-1) ...
Selecting previously unselected package python2.7-dev.
Preparing to unpack .../python2.7-dev_2.7.9-2_amd64.deb ...
Unpacking python2.7-dev (2.7.9-2) ...
Selecting previously unselected package python-dev.
Preparing to unpack .../python-dev_2.7.9-1_amd64.deb ...
Unpacking python-dev (2.7.9-1) ...
Selecting previously unselected package python-distlib.
Preparing to unpack .../python-distlib_0.1.9-1_all.deb ...
Unpacking python-distlib (0.1.9-1) ...
Selecting previously unselected package python-html5lib.
Preparing to unpack .../python-html5lib_0.999-3_all.deb ...
Unpacking python-html5lib (0.999-3) ...
Selecting previously unselected package python-openssl.
Preparing to unpack .../python-openssl_0.14-1_all.deb ...
Unpacking python-openssl (0.14-1) ...
Selecting previously unselected package python-ndg-httpsclient.
Preparing to unpack .../python-ndg-httpsclient_0.3.2-1_all.deb ...
Unpacking python-ndg-httpsclient (0.3.2-1) ...
Selecting previously unselected package python-urllib3.
Preparing to unpack .../python-urllib3_1.9.1-3_all.deb ...
Unpacking python-urllib3 (1.9.1-3) ...
Selecting previously unselected package python-requests.
Preparing to unpack .../python-requests_2.4.3-6_all.deb ...
Unpacking python-requests (2.4.3-6) ...
Selecting previously unselected package python-setuptools.
Preparing to unpack .../python-setuptools_5.5.1-1_all.deb ...
Unpacking python-setuptools (5.5.1-1) ...
Selecting previously unselected package python-pip.
Preparing to unpack .../python-pip_1.5.6-5_all.deb ...
Unpacking python-pip (1.5.6-5) ...
Selecting previously unselected package python-pyasn1.
Preparing to unpack .../python-pyasn1_0.1.7-1_all.deb ...
Unpacking python-pyasn1 (0.1.7-1) ...
Selecting previously unselected package python-wheel.
Preparing to unpack .../python-wheel_0.24.0-1_all.deb ...
Unpacking python-wheel (0.24.0-1) ...
Selecting previously unselected package rename.
Preparing to unpack .../archives/rename_0.20-3_all.deb ...
Unpacking rename (0.20-3) ...
Selecting previously unselected package shared-mime-info.
Preparing to unpack .../shared-mime-info_1.3-1_amd64.deb ...
Unpacking shared-mime-info (1.3-1) ...
Selecting previously unselected package unzip.
Preparing to unpack .../unzip_6.0-16+deb8u2_amd64.deb ...
Unpacking unzip (6.0-16+deb8u2) ...
Selecting previously unselected package xdg-user-dirs.
Preparing to unpack .../xdg-user-dirs_0.15-2_amd64.deb ...
Unpacking xdg-user-dirs (0.15-2) ...
Selecting previously unselected package xml-core.
Preparing to unpack .../xml-core_0.13+nmu2_all.deb ...
Unpacking xml-core (0.13+nmu2) ...
Setting up libgdbm3:amd64 (1.8.3-13.1) ...
Setting up libssl1.0.0:amd64 (1.0.1k-3+deb8u4) ...
debconf: unable to initialize frontend: Dialog
debconf: (TERM is not set, so the dialog frontend is not usable.)
debconf: falling back to frontend: Readline
Setting up libgmp10:amd64 (2:6.0.0+dfsg-6) ...
Setting up libnettle4:amd64 (2.7.1-5+deb8u1) ...
Setting up libhogweed2:amd64 (2.7.1-5+deb8u1) ...
Setting up libffi6:amd64 (3.1-2+b2) ...
Setting up libp11-kit0:amd64 (0.20.7-1) ...
Setting up libtasn1-6:amd64 (4.2-3+deb8u1) ...
Setting up libgnutls-deb0-28:amd64 (3.3.8-6+deb8u3) ...
Setting up libidn11:amd64 (1.29-1+b2) ...
Setting up libmagic1:amd64 (1:5.22+15-2+deb8u1) ...
Setting up libsqlite3-0:amd64 (3.8.7.1-1+deb8u1) ...
Setting up libxml2:amd64 (2.9.1+dfsg1-5+deb8u1) ...
Setting up perl-modules (5.20.2-3+deb8u4) ...
Setting up perl (5.20.2-3+deb8u4) ...
update-alternatives: using /usr/bin/prename to provide /usr/bin/rename (rename) in auto mode
Setting up mime-support (3.58) ...
Setting up libexpat1:amd64 (2.1.0-6+deb8u1) ...
Setting up libpython2.7-stdlib:amd64 (2.7.9-2) ...
Setting up python2.7 (2.7.9-2) ...
Setting up libpython-stdlib:amd64 (2.7.9-1) ...
Setting up python (2.7.9-1) ...
Setting up libasan1:amd64 (4.9.2-10) ...
Setting up libatomic1:amd64 (4.9.2-10) ...
Setting up libcilkrts5:amd64 (4.9.2-10) ...
Setting up libisl10:amd64 (0.12.2-2) ...
Setting up libcloog-isl4:amd64 (0.18.2-1+b2) ...
Setting up libpng12-0:amd64 (1.2.50-2+deb8u2) ...
Setting up libfreetype6:amd64 (2.5.2-3+deb8u1) ...
Setting up libquadmath0:amd64 (4.9.2-10) ...
Setting up libgfortran3:amd64 (4.9.2-10) ...
Setting up libglib2.0-0:amd64 (2.42.1-1+b1) ...
No schema files found: doing nothing.
Setting up libgomp1:amd64 (4.9.2-10) ...
Setting up libicu52:amd64 (52.1-8+deb8u3) ...
Setting up libitm1:amd64 (4.9.2-10) ...
Setting up liblsan0:amd64 (4.9.2-10) ...
Setting up libmpfr4:amd64 (3.1.2-2) ...
Setting up libpython2.7:amd64 (2.7.9-2) ...
Setting up libc-dev-bin (2.19-18+deb8u4) ...
Setting up linux-libc-dev:amd64 (3.16.7-ckt25-1) ...
Setting up libc6-dev:amd64 (2.19-18+deb8u4) ...
Setting up libexpat1-dev:amd64 (2.1.0-6+deb8u1) ...
Setting up libpython2.7-dev:amd64 (2.7.9-2) ...
Setting up libtsan0:amd64 (4.9.2-10) ...
Setting up libubsan0:amd64 (4.9.2-10) ...
Setting up sgml-base (1.26+nmu4) ...
Setting up libmpc3:amd64 (1.0.2-1) ...
Setting up manpages (3.74-1) ...
Setting up libpsl0:amd64 (0.5.1-1) ...
Setting up wget (1.16-1) ...
Setting up bzip2 (1.0.6-7+b3) ...
Setting up file (1:5.22+15-2+deb8u1) ...
Setting up patch (2.7.5-1) ...
Setting up python-support (1.0.15) ...
Setting up xz-utils (5.1.1alpha+20120614-2+b3) ...
update-alternatives: using /usr/bin/xz to provide /usr/bin/lzma (lzma) in auto mode
Setting up binutils (2.25-5) ...
Setting up cpp-4.9 (4.9.2-10) ...
Setting up cpp (4:4.9.2-2) ...
Setting up libgcc-4.9-dev:amd64 (4.9.2-10) ...
Setting up gcc-4.9 (4.9.2-10) ...
Setting up gcc (4:4.9.2-2) ...
Setting up libstdc++-4.9-dev:amd64 (4.9.2-10) ...
Setting up g++-4.9 (4.9.2-10) ...
Setting up g++ (4:4.9.2-2) ...
update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) in auto mode
Setting up make (4.0-8.1) ...
Setting up libtimedate-perl (2.3000-2) ...
Setting up libdpkg-perl (1.17.26) ...
Setting up dpkg-dev (1.17.26) ...
Setting up build-essential (11.7) ...
Setting up openssl (1.0.1k-3+deb8u4) ...
Setting up ca-certificates (20141019+deb8u1) ...
debconf: unable to initialize frontend: Dialog
debconf: (TERM is not set, so the dialog frontend is not usable.)
debconf: falling back to frontend: Readline
Setting up libfakeroot:amd64 (1.20.2-1) ...
Setting up fakeroot (1.20.2-1) ...
update-alternatives: using /usr/bin/fakeroot-sysv to provide /usr/bin/fakeroot (fakeroot) in auto mode
Setting up libgfortran-4.9-dev:amd64 (4.9.2-10) ...
Setting up gfortran-4.9 (4.9.2-10) ...
Setting up libalgorithm-c3-perl (0.09-1) ...
Setting up libalgorithm-diff-perl (1.19.02-3) ...
Setting up libalgorithm-diff-xs-perl (0.04-3+b1) ...
Setting up libalgorithm-merge-perl (0.08-2) ...
Setting up libarchive-extract-perl (0.72-1) ...
Setting up libcgi-pm-perl (4.09-1) ...
Setting up libfcgi-perl (0.77-1+b1) ...
Setting up libcgi-fast-perl (1:2.04-1) ...
Setting up libclass-c3-perl (0.26-1) ...
Setting up libclass-c3-xs-perl (0.13-2+b1) ...
Setting up libcpan-meta-perl (2.142690-1) ...
Setting up libparams-util-perl (1.07-2+b1) ...
Setting up libsub-install-perl (0.928-1) ...
Setting up libdata-optlist-perl (0.109-1) ...
Setting up libmro-compat-perl (0.12-1) ...
Setting up libsub-exporter-perl (0.986-1) ...
Setting up libdata-section-perl (0.200006-1) ...
Setting up libfile-fcntllock-perl (0.22-1+b1) ...
Setting up zlib1g-dev:amd64 (1:1.2.8.dfsg-2+b1) ...
Setting up libpng12-dev:amd64 (1.2.50-2+deb8u2) ...
Setting up libfreetype6-dev (2.5.2-3+deb8u1) ...
Setting up libglib2.0-data (2.42.1-1) ...
Setting up liblog-message-perl (0.8-1) ...
Setting up liblog-message-simple-perl (0.10-2) ...
Setting up libmodule-build-perl (0.421000-2) ...
Setting up libmodule-pluggable-perl (5.1-1) ...
Setting up libmodule-signature-perl (0.73-1+deb8u2) ...
Setting up libpackage-constants-perl (0.04-1) ...
Setting up libpod-latex-perl (0.61-1) ...
Setting up libregexp-common-perl (2013031301-1) ...
Setting up libpod-readme-perl (0.11-1) ...
Setting up libpython-dev:amd64 (2.7.9-1) ...
Setting up libtext-template-perl (1.46-1) ...
Setting up libsoftware-license-perl (0.103010-3) ...
Setting up libterm-ui-perl (0.42-1) ...
Setting up libtext-soundex-perl (3.4-1+b2) ...
Setting up manpages-dev (3.74-1) ...
Setting up pkg-config (0.28-1) ...
Setting up python-ply (3.4-5) ...
Setting up python-pycparser (2.10+dfsg-3) ...
Setting up python-cffi (0.8.6-1) ...
Setting up python-pkg-resources (5.5.1-1) ...
Setting up python-chardet (2.3.0-1) ...
Setting up python-colorama (0.3.2-1) ...
Setting up python-six (1.8.0-1) ...
Setting up python-cryptography (0.6.1-1) ...
Setting up python2.7-dev (2.7.9-2) ...
Setting up python-dev (2.7.9-1) ...
Setting up python-distlib (0.1.9-1) ...
Setting up python-html5lib (0.999-3) ...
Setting up python-openssl (0.14-1) ...
Setting up python-ndg-httpsclient (0.3.2-1) ...
Setting up python-urllib3 (1.9.1-3) ...
Setting up python-requests (2.4.3-6) ...
Setting up python-setuptools (5.5.1-1) ...
Setting up python-pip (1.5.6-5) ...
Setting up python-pyasn1 (0.1.7-1) ...
Setting up python-wheel (0.24.0-1) ...
Setting up rename (0.20-3) ...
update-alternatives: using /usr/bin/file-rename to provide /usr/bin/rename (rename) in auto mode
Setting up shared-mime-info (1.3-1) ...
Setting up unzip (6.0-16+deb8u2) ...
Setting up xdg-user-dirs (0.15-2) ...
Setting up xml-core (0.13+nmu2) ...
Processing triggers for libc-bin (2.19-18+deb8u3) ...
Processing triggers for ca-certificates (20141019+deb8u1) ...
Updating certificates in /etc/ssl/certs... 174 added, 0 removed; done.
Running hooks in /etc/ca-certificates/update.d....done.
Processing triggers for python-support (1.0.15) ...
Processing triggers for sgml-base (1.26+nmu4) ...
---> 0903f754f080
Removing intermediate container 796aca0e1c43
Step 3 : WORKDIR /tmp
---> Running in 14cacebfd780
---> 6861c27d10ab
Removing intermediate container 14cacebfd780
Step 4 : RUN wget http://water.usgs.gov/ogw/modflow/MODFLOW-2005_v1.11.00/mf2005v1_11_00_unix.zip
---> Running in 54fb6b3c2468
converted 'http://water.usgs.gov/ogw/modflow/MODFLOW-2005_v1.11.00/mf2005v1_11_00_unix.zip' (ANSI_X3.4-1968) -> 'http://water.usgs.gov/ogw/modflow/MODFLOW-2005_v1.11.00/mf2005v1_11_00_unix.zip' (UTF-8)
--2016-04-04 12:49:43-- http://water.usgs.gov/ogw/modflow/MODFLOW-2005_v1.11.00/mf2005v1_11_00_unix.zip
Resolving water.usgs.gov (water.usgs.gov)... 137.227.241.90, 137.227.252.42, 137.227.241.91, ...
Connecting to water.usgs.gov (water.usgs.gov)|137.227.241.90|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 6037559 (5.8M) [application/zip]
Saving to: 'mf2005v1_11_00_unix.zip'
0K .......... .......... .......... .......... .......... 0% 24.3K 4m1s
50K .......... .......... .......... .......... .......... 1% 73.6K 2m39s
100K .......... .......... .......... .......... .......... 2% 52.4K 2m22s
150K .......... .......... .......... .......... .......... 3% 62.5K 2m8s
200K .......... .......... .......... .......... .......... 4% 83.0K 1m55s
250K .......... .......... .......... .......... .......... 5% 138K 1m42s
300K .......... .......... .......... .......... .......... 5% 69.8K 98s
350K .......... .......... .......... .......... .......... 6% 54.1K 98s
400K .......... .......... .......... .......... .......... 7% 431M 86s
450K .......... .......... .......... .......... .......... 8% 94.8K 82s
500K .......... .......... .......... .......... .......... 9% 148K 77s
550K .......... .......... .......... .......... .......... 10% 157K 73s
600K .......... .......... .......... .......... .......... 11% 147K 70s
650K .......... .......... .......... .......... .......... 11% 97.0K 68s
700K .......... .......... .......... .......... .......... 12% 41.2K 71s
750K .......... .......... .......... .......... .......... 13% 423M 66s
800K .......... .......... .......... .......... .......... 14% 101K 64s
850K .......... .......... .......... .......... .......... 15% 88.2K 63s
900K .......... .......... .......... .......... .......... 16% 63.8K 64s
950K .......... .......... .......... .......... .......... 16% 94.0K 62s
1000K .......... .......... .......... .......... .......... 17% 91.4K 61s
1050K .......... .......... .......... .......... .......... 18% 131K 60s
1100K .......... .......... .......... .......... .......... 19% 140K 58s
1150K .......... .......... .......... .......... .......... 20% 87.9K 57s
1200K .......... .......... .......... .......... .......... 21% 104K 56s
1250K .......... .......... .......... .......... .......... 22% 90.9K 55s
1300K .......... .......... .......... .......... .......... 22% 82.8K 55s
1350K .......... .......... .......... .......... .......... 23% 117K 53s
1400K .......... .......... .......... .......... .......... 24% 76.8K 53s
1450K .......... .......... .......... .......... .......... 25% 26.1K 56s
1500K .......... .......... .......... .......... .......... 26% 400K 54s
1550K .......... .......... .......... .......... .......... 27% 133M 52s
1600K .......... .......... .......... .......... .......... 27% 58.4K 52s
1650K .......... .......... .......... .......... .......... 28% 12.8K 59s
1700K .......... .......... .......... .......... .......... 29% 45.1M 57s
1750K .......... .......... .......... .......... .......... 30% 596M 55s
1800K .......... .......... .......... .......... .......... 31% 49.1K 55s
1850K .......... .......... .......... .......... .......... 32% 101K 54s
1900K .......... .......... .......... .......... .......... 33% 132K 53s
1950K .......... .......... .......... .......... .......... 33% 138K 51s
2000K .......... .......... .......... .......... .......... 34% 141K 50s
2050K .......... .......... .......... .......... .......... 35% 117K 49s
2100K .......... .......... .......... .......... .......... 36% 75.4K 48s
2150K .......... .......... .......... .......... .......... 37% 132K 47s
2200K .......... .......... .......... .......... .......... 38% 102K 46s
2250K .......... .......... .......... .......... .......... 39% 185K 45s
2300K .......... .......... .......... .......... .......... 39% 72.1K 45s
2350K .......... .......... .......... .......... .......... 40% 131K 44s
2400K .......... .......... .......... .......... .......... 41% 119K 43s
2450K .......... .......... .......... .......... .......... 42% 183K 42s
2500K .......... .......... .......... .......... .......... 43% 94.3K 41s
2550K .......... .......... .......... .......... .......... 44% 47.5K 41s
2600K .......... .......... .......... .......... .......... 44% 1.51M 40s
2650K .......... .......... .......... .......... .......... 45% 303K 38s
2700K .......... .......... .......... .......... .......... 46% 133K 38s
2750K .......... .......... .......... .......... .......... 47% 120K 37s
2800K .......... .......... .......... .......... .......... 48% 61.0K 36s
2850K .......... .......... .......... .......... .......... 49% 336K 35s
2900K .......... .......... .......... .......... .......... 50% 47.7K 35s
2950K .......... .......... .......... .......... .......... 50% 257M 34s
3000K .......... .......... .......... .......... .......... 51% 111K 33s
3050K .......... .......... .......... .......... .......... 52% 97.2K 33s
3100K .......... .......... .......... .......... .......... 53% 93.1K 32s
3150K .......... .......... .......... .......... .......... 54% 108K 31s
3200K .......... .......... .......... .......... .......... 55% 85.0K 31s
3250K .......... .......... .......... .......... .......... 55% 87.3K 30s
3300K .......... .......... .......... .......... .......... 56% 125K 30s
3350K .......... .......... .......... .......... .......... 57% 104K 29s
3400K .......... .......... .......... .......... .......... 58% 81.1K 28s
3450K .......... .......... .......... .......... .......... 59% 39.7K 28s
3500K .......... .......... .......... .......... .......... 60% 261M 27s
3550K .......... .......... .......... .......... .......... 61% 47.8K 27s
3600K .......... .......... .......... .......... .......... 61% 91.9K 26s
3650K .......... .......... .......... .......... .......... 62% 93.8K 26s
3700K .......... .......... .......... .......... .......... 63% 117K 25s
3750K .......... .......... .......... .......... .......... 64% 105K 24s
3800K .......... .......... .......... .......... .......... 65% 63.8K 24s
3850K .......... .......... .......... .......... .......... 66% 48.6K 24s
3900K .......... .......... .......... .......... .......... 66% 179K 23s
3950K .......... .......... .......... .......... .......... 67% 100K 22s
4000K .......... .......... .......... .......... .......... 68% 146K 21s
4050K .......... .......... .......... .......... .......... 69% 102K 21s
4100K .......... .......... .......... .......... .......... 70% 130K 20s
4150K .......... .......... .......... .......... .......... 71% 126K 20s
4200K .......... .......... .......... .......... .......... 72% 143K 19s
4250K .......... .......... .......... .......... .......... 72% 72.2K 18s
4300K .......... .......... .......... .......... .......... 73% 94.2K 18s
4350K .......... .......... .......... .......... .......... 74% 63.1K 17s
4400K .......... .......... .......... .......... .......... 75% 219K 17s
4450K .......... .......... .......... .......... .......... 76% 91.0K 16s
4500K .......... .......... .......... .......... .......... 77% 108K 15s
4550K .......... .......... .......... .......... .......... 78% 81.9K 15s
4600K .......... .......... .......... .......... .......... 78% 142K 14s
4650K .......... .......... .......... .......... .......... 79% 101K 14s
4700K .......... .......... .......... .......... .......... 80% 148K 13s
4750K .......... .......... .......... .......... .......... 81% 105K 12s
4800K .......... .......... .......... .......... .......... 82% 133K 12s
4850K .......... .......... .......... .......... .......... 83% 72.1K 11s
4900K .......... .......... .......... .......... .......... 83% 124K 11s
4950K .......... .......... .......... .......... .......... 84% 134K 10s
5000K .......... .......... .......... .......... .......... 85% 107K 9s
5050K .......... .......... .......... .......... .......... 86% 113K 9s
5100K .......... .......... .......... .......... .......... 87% 122K 8s
5150K .......... .......... .......... .......... .......... 88% 114K 8s
5200K .......... .......... .......... .......... .......... 89% 56.5K 7s
5250K .......... .......... .......... .......... .......... 89% 124K 7s
5300K .......... .......... .......... .......... .......... 90% 286K 6s
5350K .......... .......... .......... .......... .......... 91% 125K 5s
5400K .......... .......... .......... .......... .......... 92% 85.6K 5s
5450K .......... .......... .......... .......... .......... 93% 79.6K 4s
5500K .......... .......... .......... .......... .......... 94% 158K 4s
5550K .......... .......... .......... .......... .......... 94% 107K 3s
5600K .......... .......... .......... .......... .......... 95% 76.7K 3s
5650K .......... .......... .......... .......... .......... 96% 99.0K 2s
5700K .......... .......... .......... .......... .......... 97% 101K 2s
5750K .......... .......... .......... .......... .......... 98% 99.2K 1s
5800K .......... .......... .......... .......... .......... 99% 35.0K 1s
5850K .......... .......... .......... .......... ...... 100% 401M=65s
2016-04-04 12:50:50 (90.2 KB/s) - 'mf2005v1_11_00_unix.zip' saved [6037559/6037559]
---> 708a81a0f7d7
Removing intermediate container 54fb6b3c2468
Step 5 : RUN unzip mf2005v1_11_00_unix.zip
---> Running in 5b7bc8a14085
Archive: mf2005v1_11_00_unix.zip
creating: Unix/doc/
creating: Unix/doc/MF2005convert/
inflating: Unix/doc/MF2005convert/DRT7.pdf
inflating: Unix/doc/MF2005convert/ETS7.pdf
inflating: Unix/doc/MF2005convert/FHB7.pdf
inflating: Unix/doc/MF2005convert/Gage7conversion.pdf
inflating: Unix/doc/MF2005convert/GMG7.pdf
inflating: Unix/doc/MF2005convert/HUF7.pdf
inflating: Unix/doc/MF2005convert/Hydmod7.pdf
inflating: Unix/doc/MF2005convert/IBS7.pdf
inflating: Unix/doc/MF2005convert/LAK7conversion.pdf
inflating: Unix/doc/MF2005convert/lmt7.txt
inflating: Unix/doc/MF2005convert/MNW7.pdf
inflating: Unix/doc/MF2005convert/RES7.pdf
inflating: Unix/doc/MF2005convert/SFR7conversion.pdf