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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
|
Checking for the skas3 patch in the host...not found
Checking for /proc/mm...not found
Linux version 2.4.20-7um (mdz@mizar) (gcc version 2.95.4 20011002 (Debian prerelease)) #1 SMP Fri Aug 8 18:30:28 EDT 2003
On node 0 totalpages: 8192
zone(0): 8192 pages.
zone(1): 0 pages.
zone(2): 0 pages.
Kernel command line: eth0=slirp,,slirp-fullbolt con0=fd:0,fd:1 con=pty root=/dev/root rootflags=/ rootfstype=hostfs ubd1=/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testimage init=/usr/lib/rootstrap/builder devfs=mount rsworkdir=/home/dancer/.pbuilder-user-mode-linux
Calibrating delay loop... 1574.96 BogoMIPS
Memory: 28964k available
Dentry cache hash table entries: 4096 (order: 3, 32768 bytes)
Inode cache hash table entries: 2048 (order: 2, 16384 bytes)
Mount-cache hash table entries: 512 (order: 0, 4096 bytes)
Buffer-cache hash table entries: 1024 (order: 0, 4096 bytes)
Page-cache hash table entries: 8192 (order: 3, 32768 bytes)
Checking for host processor cmov support...Yes
Checking for host processor xmm support...No
Checking that ptrace can change system call numbers...OK
Checking that host ptys support output SIGIO...Yes
Checking that host ptys support SIGIO on close...No, enabling workaround
POSIX conformance testing by UNIFIX
All CPUs are go!
Waiting on wait_init_idle (map = 0x0)
All processors have done init_idle
Linux NET4.0 for Linux 2.4
Based upon Swansea University Computer Society NET3.039
Initializing RT netlink socket
Starting kswapd
VFS: Diskquotas version dquot_6.4.0 initialized
Journalled Block Device driver loaded
devfs: v1.12c (20020818) Richard Gooch (rgooch@atnf.csiro.au)
devfs: boot_options: 0x1
pty: 256 Unix98 ptys configured
RAMDISK driver initialized: 16 RAM disks of 4096K size 1024 blocksize
loop: loaded (max 8 devices)
Initializing software serial port version 1
Netdevice 0 : SLIRP backend - command line: 'slirp-fullbolt'
mconsole (version 2) initialized on /home/dancer/.uml/g18Pcf/mconsole
unable to open root_fs for validation
Partition check:
ubdb: unknown partition table
Initializing stdio console driver
NET4: Linux TCP/IP 1.0 for NET4.0
IP Protocols: ICMP, UDP, TCP, IGMP
IP: routing cache hash table of 512 buckets, 4Kbytes
TCP: Hash tables configured (established 2048 bind 2048)
Linux IP multicast router 0.06 plus PIM-SM
NET4: Unix domain sockets 1.0/SMP for Linux NET4.0.
Root-NFS: No NFS server available, giving up.
VFS: Unable to mount root fs via NFS, trying floppy.
VFS: Mounted root (hostfs filesystem) readonly.
Mounted devfs on /dev
builder running...
Using rootstrap module network from:
/usr/lib/rootstrap/modules/network
Slirp v1.0.14pre1 (BETA)
Copyright (c) 1995,1996 Danny Gasparovski and others.
All rights reserved.
This program is copyrighted, free software.
Please read the file COPYRIGHT that came with the Slirp
package for the terms and conditions of the copyright.
IP address of Slirp host: 192.168.1.62
IP address of your DNS(s): 218.231.0.10, 218.231.0.42
Your address is 10.0.2.15
(or anything else you want)
Type five zeroes (0) to exit.
[autodetect SLIP/CSLIP, MTU 1500, MRU 1500]
SLiRP Ready ...
Using rootstrap module mkfs from:
/usr/lib/rootstrap/modules/mkfs
Using rootstrap module mount from:
/usr/lib/rootstrap/modules/mount
Using rootstrap module debian from:
/usr/lib/rootstrap/modules/debian
I: Retrieving http://ftp.jp.debian.org/debian/dists/sid/Release
I: Validating /tmp/target/var/lib/apt/lists/debootstrap.invalid_dists_sid_Release
I: Retrieving http://ftp.jp.debian.org/debian/dists/sid/main/binary-i386/Packages.bz2
I: Validating /tmp/target/var/lib/apt/lists/debootstrap.invalid_dists_sid_main_binary-i386_Packages.bz2
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/a/adduser/adduser_3.51_all.deb
I: Validating /tmp/target/var/cache/apt/archives/adduser_3.51_all.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/a/apt/apt_0.5.14_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/apt_0.5.14_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/a/apt/apt-utils_0.5.14_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/apt-utils_0.5.14_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/a/at/at_3.1.8-11_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/at_3.1.8-11_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/b/base-config/base-config_1.72_all.deb
I: Validating /tmp/target/var/cache/apt/archives/base-config_1.72_all.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/b/base-files/base-files_3.0.10_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/base-files_3.0.10_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/b/base-passwd/base-passwd_3.5.4_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/base-passwd_3.5.4_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/b/bash/bash_2.05b-9.1_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/bash_2.05b-9.1_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/b/bsdmainutils/bsdmainutils_6.0.3_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/bsdmainutils_6.0.3_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/u/util-linux/bsdutils_2.12-3_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/bsdutils_1%3a2.12-3_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/c/console-common/console-common_0.7.29_all.deb
I: Validating /tmp/target/var/cache/apt/archives/console-common_0.7.29_all.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/c/console-data/console-data_2002.12.04dbs-17_all.deb
I: Validating /tmp/target/var/cache/apt/archives/console-data_2002.12.04dbs-17_all.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/c/console-tools/console-tools_0.2.3dbs-43_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/console-tools_1%3a0.2.3dbs-43_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/c/coreutils/coreutils_5.0.90-3_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/coreutils_5.0.90-3_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/c/cpio/cpio_2.5-1.1_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/cpio_2.5-1.1_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/c/cron/cron_3.0pl1-81_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/cron_3.0pl1-81_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/d/debconf/debconf_1.3.14_all.deb
I: Validating /tmp/target/var/cache/apt/archives/debconf_1.3.14_all.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/d/debconf/debconf-i18n_1.3.14_all.deb
I: Validating /tmp/target/var/cache/apt/archives/debconf-i18n_1.3.14_all.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/d/debianutils/debianutils_2.5.5_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/debianutils_2.5.5_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/d/diff/diff_2.8.1-2_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/diff_2.8.1-2_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/d/dpkg/dpkg_1.10.15_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/dpkg_1.10.15_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/d/dpkg/dselect_1.10.15_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/dselect_1.10.15_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/e/e2fsprogs/e2fslibs_1.34+1.35-WIP-2003.08.21-3_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/e2fslibs_1.34+1.35-WIP-2003.08.21-3_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/e/e2fsprogs/e2fsprogs_1.34+1.35-WIP-2003.08.21-3_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/e2fsprogs_1.34+1.35-WIP-2003.08.21-3_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/e/ed/ed_0.2-20_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/ed_0.2-20_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/e/exim4/exim4_4.22-5_all.deb
I: Validating /tmp/target/var/cache/apt/archives/exim4_4.22-5_all.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/e/exim4/exim4-base_4.22-5_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/exim4-base_4.22-5_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/e/exim4/exim4-config_4.22-5_all.deb
I: Validating /tmp/target/var/cache/apt/archives/exim4-config_4.22-5_all.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/e/exim4/exim4-daemon-light_4.22-5_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/exim4-daemon-light_4.22-5_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/f/fdutils/fdutils_5.4-20030718-1_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/fdutils_5.4-20030718-1_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/f/findutils/findutils_4.1.20-1_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/findutils_4.1.20-1_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/g/gcc-3.2/gcc-3.2-base_3.2.3-8_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/gcc-3.2-base_1%3a3.2.3-8_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/g/gcc-3.3/gcc-3.3-base_3.3.2-0pre4_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/gcc-3.3-base_1%3a3.3.2-0pre4_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/g/gettext/gettext-base_0.12.1-6_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/gettext-base_0.12.1-6_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/g/grep/grep_2.5.1-6_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/grep_2.5.1-6_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/g/groff/groff-base_1.18.1-11_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/groff-base_1.18.1-11_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/g/gzip/gzip_1.3.5-7_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/gzip_1.3.5-7_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/h/hostname/hostname_2.10_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/hostname_2.10_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/i/ifupdown/ifupdown_0.6.4-4.6_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/ifupdown_0.6.4-4.6_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/t/texinfo/info_4.6-1_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/info_4.6-1_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/s/sysvinit/initscripts_2.85-7_all.deb
I: Validating /tmp/target/var/cache/apt/archives/initscripts_2.85-7_all.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/i/ipchains/ipchains_1.3.10-15_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/ipchains_1.3.10-15_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/i/iptables/iptables_1.2.8-4_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/iptables_1.2.8-4_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/i/iputils/iputils-ping_20020927-1_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/iputils-ping_3%3a20020927-1_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/s/sysklogd/klogd_1.4.1-11_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/klogd_1.4.1-11_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/a/acl/libacl1_2.2.15-1_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/libacl1_2.2.15-1_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/a/attr/libattr1_2.4.8-1_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/libattr1_2.4.8-1_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/e/e2fsprogs/libblkid1_1.34+1.35-WIP-2003.08.21-3_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/libblkid1_1.34+1.35-WIP-2003.08.21-3_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/g/glibc/libc6_2.3.2-8_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/libc6_2.3.2-8_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/libc/libcap/libcap1_1.10-12_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/libcap1_1%3a1.10-12_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/e/e2fsprogs/libcomerr2_1.34+1.35-WIP-2003.08.21-3_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/libcomerr2_1.34+1.35-WIP-2003.08.21-3_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/c/console-tools/libconsole_0.2.3dbs-43_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/libconsole_1%3a0.2.3dbs-43_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/d/db1-compat/libdb1-compat_2.1.3-7_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/libdb1-compat_2.1.3-7_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/d/db2/libdb2_2.7.7.0-8_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/libdb2_2%3a2.7.7.0-8_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/d/db3/libdb3_3.2.9-19_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/libdb3_3.2.9-19_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/g/gcc-3.3/libgcc1_3.3.2-0pre4_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/libgcc1_1%3a3.3.2-0pre4_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/libg/libgcrypt/libgcrypt1_1.1.12-3_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/libgcrypt1_1.1.12-3_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/g/gdbm/libgdbm3_1.8.3-2_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/libgdbm3_1.8.3-2_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/g/gnutls7/libgnutls7_0.8.9-2_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/libgnutls7_0.8.9-2_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/libi/libident/libident_0.22-2.2_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/libident_0.22-2.2_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/libl/liblocale-gettext-perl/liblocale-gettext-perl_1.01-17_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/liblocale-gettext-perl_1.01-17_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/libl/liblockfile/liblockfile1_1.05_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/liblockfile1_1.05_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/l/lzo/liblzo1_1.08-1_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/liblzo1_1.08-1_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/n/ncurses/libncurses5_5.3.20030719-2_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/libncurses5_5.3.20030719-2_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/n/newt/libnewt0.51_0.51.4-18_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/libnewt0.51_0.51.4-18_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/o/opencdk/libopencdk4_0.4.2-3_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/libopencdk4_1%3a0.4.2-3_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/p/pam/libpam-modules_0.76-14_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/libpam-modules_0.76-14_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/p/pam/libpam-runtime_0.76-14_all.deb
I: Validating /tmp/target/var/cache/apt/archives/libpam-runtime_0.76-14_all.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/p/pam/libpam0g_0.76-14_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/libpam0g_0.76-14_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/libp/libpcap/libpcap0.7_0.7.2-1_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/libpcap0.7_0.7.2-1_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/p/pcre3/libpcre3_4.3-3_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/libpcre3_4.3-3_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/p/popt/libpopt0_1.7-2_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/libpopt0_1.7-2_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/r/readline4/libreadline4_4.3-5_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/libreadline4_4.3-5_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/c/cyrus-sasl2/libsasl2_2.1.15-5_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/libsasl2_2.1.15-5_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/e/e2fsprogs/libss2_1.34+1.35-WIP-2003.08.21-3_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/libss2_1.34+1.35-WIP-2003.08.21-3_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/o/openssl/libssl0.9.7_0.9.7b-2_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/libssl0.9.7_0.9.7b-2_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/g/gcc-2.95/libstdc++2.10-glibc2.2_2.95.4-17_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/libstdc++2.10-glibc2.2_1%3a2.95.4-17_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/g/gcc-3.3/libstdc++5_3.3.2-0pre4_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/libstdc++5_1%3a3.3.2-0pre4_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/libt/libtasn1/libtasn1-0_0.1.2-1_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/libtasn1-0_0.1.2-1_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/libt/libtext-charwidth-perl/libtext-charwidth-perl_0.04-1_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/libtext-charwidth-perl_0.04-1_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/libt/libtext-iconv-perl/libtext-iconv-perl_1.2-2_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/libtext-iconv-perl_1.2-2_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/libt/libtext-wrapi18n-perl/libtext-wrapi18n-perl_0.06-1_all.deb
I: Validating /tmp/target/var/cache/apt/archives/libtext-wrapi18n-perl_0.06-1_all.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/e/e2fsprogs/libuuid1_1.34+1.35-WIP-2003.08.21-3_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/libuuid1_1.34+1.35-WIP-2003.08.21-3_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/t/tcp-wrappers/libwrap0_7.6-ipv6.1-3_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/libwrap0_7.6-ipv6.1-3_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/l/lilo/lilo_22.5.7.2-3_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/lilo_1%3a22.5.7.2-3_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/s/shadow/login_4.0.3-11_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/login_1%3a4.0.3-11_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/l/logrotate/logrotate_3.6.5-2_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/logrotate_3.6.5-2_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/m/mailx/mailx_8.1.2-0.20030521cvs-1_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/mailx_1%3a8.1.2-0.20030521cvs-1_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/m/makedev/makedev_2.3.1-63_all.deb
I: Validating /tmp/target/var/cache/apt/archives/makedev_2.3.1-63_all.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/m/man-db/man-db_2.4.2-2_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/man-db_2.4.2-2_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/m/manpages/manpages_1.60-3_all.deb
I: Validating /tmp/target/var/cache/apt/archives/manpages_1.60-3_all.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/m/mawk/mawk_1.3.3-11_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/mawk_1.3.3-11_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/m/mbr/mbr_1.1.5-1_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/mbr_1.1.5-1_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/m/modconf/modconf_0.2.44_all.deb
I: Validating /tmp/target/var/cache/apt/archives/modconf_0.2.44_all.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/m/modutils/modutils_2.4.25-1_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/modutils_2.4.25-1_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/u/util-linux/mount_2.12-3_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/mount_2.12-3_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/n/nano/nano_1.2.2-1_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/nano_1.2.2-1_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/n/ncurses/ncurses-base_5.3.20030719-2_all.deb
I: Validating /tmp/target/var/cache/apt/archives/ncurses-base_5.3.20030719-2_all.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/n/ncurses/ncurses-bin_5.3.20030719-2_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/ncurses-bin_5.3.20030719-2_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/n/net-tools/net-tools_1.60-8_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/net-tools_1.60-8_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/n/netbase/netbase_4.13_all.deb
I: Validating /tmp/target/var/cache/apt/archives/netbase_4.13_all.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/n/netkit-base/netkit-inetd_0.10-9_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/netkit-inetd_0.10-9_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/n/nvi/nvi_1.79-21_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/nvi_1.79-21_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/s/shadow/passwd_4.0.3-11_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/passwd_1%3a4.0.3-11_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/p/pciutils/pciutils_2.1.11-2_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/pciutils_1%3a2.1.11-2_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/p/perl/perl-base_5.8.0-21_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/perl-base_5.8.0-21_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/p/ppp/ppp_2.4.2+20030811-5_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/ppp_2.4.2+20030811-5_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/p/pppconfig/pppconfig_2.2.0_all.deb
I: Validating /tmp/target/var/cache/apt/archives/pppconfig_2.2.0_all.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/r/rp-pppoe/pppoe_3.5-3_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/pppoe_3.5-3_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/p/pppoeconf/pppoeconf_1.0_all.deb
I: Validating /tmp/target/var/cache/apt/archives/pppoeconf_1.0_all.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/p/procps/procps_3.1.12-1_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/procps_1%3a3.1.12-1_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/p/psmisc/psmisc_21.3-1_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/psmisc_21.3-1_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/s/sed/sed_4.0.7-1_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/sed_4.0.7-1_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/s/slang/slang1_1.4.9-1_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/slang1_1.4.9-1_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/s/slang/slang1a-utf8_1.4.9-1_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/slang1a-utf8_1.4.9-1_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/s/sysklogd/sysklogd_1.4.1-11_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/sysklogd_1.4.1-11_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/s/syslinux/syslinux_2.04-1_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/syslinux_2.04-1_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/s/sysvinit/sysv-rc_2.85-7_all.deb
I: Validating /tmp/target/var/cache/apt/archives/sysv-rc_2.85-7_all.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/s/sysvinit/sysvinit_2.85-7_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/sysvinit_2.85-7_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/t/tar/tar_1.13.25-6_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/tar_1.13.25-6_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/t/tasksel/tasksel_1.34_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/tasksel_1.34_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/t/tcp-wrappers/tcpd_7.6-ipv6.1-3_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/tcpd_7.6-ipv6.1-3_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/n/netkit-telnet/telnet_0.17-20_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/telnet_0.17-20_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/u/util-linux/util-linux_2.12-3_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/util-linux_2.12-3_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/w/wget/wget_1.8.2-11_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/wget_1.8.2-11_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/n/newt/whiptail_0.51.4-18_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/whiptail_0.51.4-18_i386.deb
I: Retrieving http://ftp.jp.debian.org/debian/pool/main/z/zlib/zlib1g_1.1.4-15_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/zlib1g_1%3a1.1.4-15_i386.deb
I: Extracting /var/cache/apt/archives/base-files_3.0.10_i386.deb...
I: Extracting /var/cache/apt/archives/base-passwd_3.5.4_i386.deb...
I: Extracting /var/cache/apt/archives/bash_2.05b-9.1_i386.deb...
I: Extracting /var/cache/apt/archives/bsdutils_1%3a2.12-3_i386.deb...
I: Extracting /var/cache/apt/archives/coreutils_5.0.90-3_i386.deb...
I: Extracting /var/cache/apt/archives/libacl1_2.2.15-1_i386.deb...
I: Extracting /var/cache/apt/archives/libattr1_2.4.8-1_i386.deb...
I: Extracting /var/cache/apt/archives/debconf_1.3.14_all.deb...
I: Extracting /var/cache/apt/archives/debconf-i18n_1.3.14_all.deb...
I: Extracting /var/cache/apt/archives/liblocale-gettext-perl_1.01-17_i386.deb...
I: Extracting /var/cache/apt/archives/libtext-wrapi18n-perl_0.06-1_all.deb...
I: Extracting /var/cache/apt/archives/libtext-charwidth-perl_0.04-1_i386.deb...
I: Extracting /var/cache/apt/archives/debianutils_2.5.5_i386.deb...
I: Extracting /var/cache/apt/archives/diff_2.8.1-2_i386.deb...
I: Extracting /var/cache/apt/archives/dpkg_1.10.15_i386.deb...
I: Extracting /var/cache/apt/archives/dselect_1.10.15_i386.deb...
I: Extracting /var/cache/apt/archives/libblkid1_1.34+1.35-WIP-2003.08.21-3_i386.deb...
I: Extracting /var/cache/apt/archives/e2fsprogs_1.34+1.35-WIP-2003.08.21-3_i386.deb...
I: Extracting /var/cache/apt/archives/e2fslibs_1.34+1.35-WIP-2003.08.21-3_i386.deb...
I: Extracting /var/cache/apt/archives/libcomerr2_1.34+1.35-WIP-2003.08.21-3_i386.deb...
I: Extracting /var/cache/apt/archives/libss2_1.34+1.35-WIP-2003.08.21-3_i386.deb...
I: Extracting /var/cache/apt/archives/libuuid1_1.34+1.35-WIP-2003.08.21-3_i386.deb...
I: Extracting /var/cache/apt/archives/findutils_4.1.20-1_i386.deb...
I: Extracting /var/cache/apt/archives/gcc-3.2-base_1%3a3.2.3-8_i386.deb...
I: Extracting /var/cache/apt/archives/gcc-3.3-base_1%3a3.3.2-0pre4_i386.deb...
I: Extracting /var/cache/apt/archives/grep_2.5.1-6_i386.deb...
I: Extracting /var/cache/apt/archives/gzip_1.3.5-7_i386.deb...
I: Extracting /var/cache/apt/archives/hostname_2.10_i386.deb...
I: Extracting /var/cache/apt/archives/libcap1_1%3a1.10-12_i386.deb...
I: Extracting /var/cache/apt/archives/libc6_2.3.2-8_i386.deb...
I: Extracting /var/cache/apt/archives/libdb2_2%3a2.7.7.0-8_i386.deb...
I: Extracting /var/cache/apt/archives/libdb3_3.2.9-19_i386.deb...
I: Extracting /var/cache/apt/archives/libncurses5_5.3.20030719-2_i386.deb...
I: Extracting /var/cache/apt/archives/libnewt0.51_0.51.4-18_i386.deb...
I: Extracting /var/cache/apt/archives/libpam-modules_0.76-14_i386.deb...
I: Extracting /var/cache/apt/archives/libpam-runtime_0.76-14_all.deb...
I: Extracting /var/cache/apt/archives/libpam0g_0.76-14_i386.deb...
I: Extracting /var/cache/apt/archives/libpopt0_1.7-2_i386.deb...
I: Extracting /var/cache/apt/archives/libreadline4_4.3-5_i386.deb...
I: Extracting /var/cache/apt/archives/libstdc++2.10-glibc2.2_1%3a2.95.4-17_i386.deb...
I: Extracting /var/cache/apt/archives/libstdc++5_1%3a3.3.2-0pre4_i386.deb...
I: Extracting /var/cache/apt/archives/libgcc1_1%3a3.3.2-0pre4_i386.deb...
I: Extracting /var/cache/apt/archives/login_1%3a4.0.3-11_i386.deb...
I: Extracting /var/cache/apt/archives/makedev_2.3.1-63_all.deb...
I: Extracting /var/cache/apt/archives/mawk_1.3.3-11_i386.deb...
I: Extracting /var/cache/apt/archives/modutils_2.4.25-1_i386.deb...
I: Extracting /var/cache/apt/archives/mount_2.12-3_i386.deb...
I: Extracting /var/cache/apt/archives/ncurses-base_5.3.20030719-2_all.deb...
I: Extracting /var/cache/apt/archives/ncurses-bin_5.3.20030719-2_i386.deb...
I: Extracting /var/cache/apt/archives/passwd_1%3a4.0.3-11_i386.deb...
I: Extracting /var/cache/apt/archives/perl-base_5.8.0-21_i386.deb...
I: Extracting /var/cache/apt/archives/procps_1%3a3.1.12-1_i386.deb...
I: Extracting /var/cache/apt/archives/sed_4.0.7-1_i386.deb...
I: Extracting /var/cache/apt/archives/slang1_1.4.9-1_i386.deb...
I: Extracting /var/cache/apt/archives/slang1a-utf8_1.4.9-1_i386.deb...
I: Extracting /var/cache/apt/archives/initscripts_2.85-7_all.deb...
I: Extracting /var/cache/apt/archives/sysvinit_2.85-7_i386.deb...
I: Extracting /var/cache/apt/archives/sysv-rc_2.85-7_all.deb...
I: Extracting /var/cache/apt/archives/tar_1.13.25-6_i386.deb...
I: Extracting /var/cache/apt/archives/util-linux_2.12-3_i386.deb...
I: Extracting /var/cache/apt/archives/whiptail_0.51.4-18_i386.deb...
I: Extracting /var/cache/apt/archives/mbr_1.1.5-1_i386.deb...
I: Installing core packages...
Selecting previously deselected package base-files.
(Reading database ... 0 files and directories currently installed.)
Unpacking base-files (from .../base-files_3.0.10_i386.deb) ...
Selecting previously deselected package base-passwd.
Unpacking base-passwd (from .../base-passwd_3.5.4_i386.deb) ...
dpkg: base-passwd: dependency problems, but configuring anyway as you request:
base-passwd depends on libc6 (>= 2.3.1-1); however:
Package libc6 is not installed.
Setting up base-passwd (3.5.4) ...
dpkg: base-files: dependency problems, but configuring anyway as you request:
base-files depends on awk; however:
Package awk is not installed.
Setting up base-files (3.0.10) ...
dpkg: regarding .../archives/dpkg_1.10.15_i386.deb containing dpkg, pre-dependency problem:
dpkg pre-depends on dselect
dselect is not installed.
dpkg: warning - ignoring pre-dependency problem !
dpkg: regarding .../archives/dpkg_1.10.15_i386.deb containing dpkg, pre-dependency problem:
dpkg pre-depends on libc6 (>= 2.3.2-1)
dpkg: warning - ignoring pre-dependency problem !
(Reading database ... 84 files and directories currently installed.)
Preparing to replace dpkg 1.10.15 (using .../archives/dpkg_1.10.15_i386.deb) ...
Unpacking replacement dpkg ...
dpkg: dpkg: dependency problems, but configuring anyway as you request:
dpkg depends on dselect; however:
Package dselect is not installed.
dpkg depends on libc6 (>= 2.3.2-1); however:
Package libc6 is not installed.
Setting up dpkg (1.10.15) ...
Moving /usr/info/dir to /usr/share/info/dir.
Making /usr/info a symlink to /usr/share/info.
Selecting previously deselected package libc6.
(Reading database ... 220 files and directories currently installed.)
Unpacking libc6 (from .../libc6_2.3.2-8_i386.deb) ...
dpkg: libc6: dependency problems, but configuring anyway as you request:
libc6 depends on libdb1-compat; however:
Package libdb1-compat is not installed.
Setting up libc6 (2.3.2-8) ...
Current default timezone: 'UTC'.
Local time is now: Sun Sep 28 01:32:31 UTC 2003.
Universal Time is now: Sun Sep 28 01:32:31 UTC 2003.
Run 'tzconfig' if you wish to change it.
Package `sysvinit' is not installed and no info is available.
Use dpkg --info (= dpkg-deb --info) to examine archive files,
and dpkg --contents (= dpkg-deb --contents) to list their contents.
Selecting previously deselected package perl-base.
(Reading database ... 2176 files and directories currently installed.)
Unpacking perl-base (from .../perl-base_5.8.0-21_i386.deb) ...
Setting up perl-base (5.8.0-21) ...
Selecting previously deselected package mawk.
(Reading database ... 2294 files and directories currently installed.)
Unpacking mawk (from .../mawk_1.3.3-11_i386.deb) ...
Setting up mawk (1.3.3-11) ...
Selecting previously deselected package debconf.
(Reading database ... 2313 files and directories currently installed.)
Unpacking debconf (from .../debconf_1.3.14_all.deb) ...
dpkg: debconf: dependency problems, but configuring anyway as you request:
debconf depends on debconf-i18n | debconf-english; however:
Package debconf-i18n is not installed.
Package debconf-english is not installed.
Setting up debconf (1.3.14) ...
I: Unpacking required packages...
(Reading database ... 2448 files and directories currently installed.)
Preparing to replace base-files 3.0.10 (using .../base-files_3.0.10_i386.deb) ...
Unpacking replacement base-files ...
Preparing to replace base-passwd 3.5.4 (using .../base-passwd_3.5.4_i386.deb) ...
Unpacking replacement base-passwd ...
Selecting previously deselected package bash.
dpkg: regarding .../bash_2.05b-9.1_i386.deb containing bash, pre-dependency problem:
bash pre-depends on libncurses5 (>= 5.3.20030510-1)
dpkg: warning - ignoring pre-dependency problem !
Unpacking bash (from .../bash_2.05b-9.1_i386.deb) ...
Selecting previously deselected package bsdutils.
Unpacking bsdutils (from .../bsdutils_1%3a2.12-3_i386.deb) ...
Selecting previously deselected package coreutils.
dpkg: regarding .../coreutils_5.0.90-3_i386.deb containing coreutils, pre-dependency problem:
coreutils pre-depends on libacl1 (>= 2.2.11-1)
dpkg: warning - ignoring pre-dependency problem !
dpkg: regarding .../coreutils_5.0.90-3_i386.deb containing coreutils, pre-dependency problem:
coreutils pre-depends on libattr1 (>= 2.4.4-1)
dpkg: warning - ignoring pre-dependency problem !
Unpacking coreutils (from .../coreutils_5.0.90-3_i386.deb) ...
Selecting previously deselected package libacl1.
Unpacking libacl1 (from .../libacl1_2.2.15-1_i386.deb) ...
Selecting previously deselected package libattr1.
Unpacking libattr1 (from .../libattr1_2.4.8-1_i386.deb) ...
Preparing to replace debconf 1.3.14 (using .../debconf_1.3.14_all.deb) ...
Unpacking replacement debconf ...
Selecting previously deselected package debconf-i18n.
Unpacking debconf-i18n (from .../debconf-i18n_1.3.14_all.deb) ...
Selecting previously deselected package liblocale-gettext-perl.
Unpacking liblocale-gettext-perl (from .../liblocale-gettext-perl_1.01-17_i386.deb) ...
Selecting previously deselected package libtext-wrapi18n-perl.
Unpacking libtext-wrapi18n-perl (from .../libtext-wrapi18n-perl_0.06-1_all.deb) ...
Selecting previously deselected package libtext-charwidth-perl.
Unpacking libtext-charwidth-perl (from .../libtext-charwidth-perl_0.04-1_i386.deb) ...
Selecting previously deselected package debianutils.
dpkg: regarding .../debianutils_2.5.5_i386.deb containing debianutils, pre-dependency problem:
debianutils pre-depends on coreutils (>= 4.5.8-1)
coreutils is unpacked, but has never been configured.
dpkg: warning - ignoring pre-dependency problem !
Unpacking debianutils (from .../debianutils_2.5.5_i386.deb) ...
Selecting previously deselected package diff.
Unpacking diff (from .../archives/diff_2.8.1-2_i386.deb) ...
dpkg: regarding .../archives/dpkg_1.10.15_i386.deb containing dpkg, pre-dependency problem:
dpkg pre-depends on dselect
dselect is not installed.
dpkg: warning - ignoring pre-dependency problem !
Preparing to replace dpkg 1.10.15 (using .../archives/dpkg_1.10.15_i386.deb) ...
Unpacking replacement dpkg ...
Selecting previously deselected package dselect.
Unpacking dselect (from .../dselect_1.10.15_i386.deb) ...
Selecting previously deselected package libblkid1.
Unpacking libblkid1 (from .../libblkid1_1.34+1.35-WIP-2003.08.21-3_i386.deb) ...
Selecting previously deselected package e2fsprogs.
dpkg: regarding .../e2fsprogs_1.34+1.35-WIP-2003.08.21-3_i386.deb containing e2fsprogs, pre-dependency problem:
e2fsprogs pre-depends on e2fslibs (= 1.34+1.35-WIP-2003.08.21-3)
dpkg: warning - ignoring pre-dependency problem !
dpkg: regarding .../e2fsprogs_1.34+1.35-WIP-2003.08.21-3_i386.deb containing e2fsprogs, pre-dependency problem:
e2fsprogs pre-depends on libblkid1 (>= 1.34-1)
libblkid1 is unpacked, but has never been configured.
dpkg: warning - ignoring pre-dependency problem !
dpkg: regarding .../e2fsprogs_1.34+1.35-WIP-2003.08.21-3_i386.deb containing e2fsprogs, pre-dependency problem:
e2fsprogs pre-depends on libcomerr2 (>= 1.34-1)
dpkg: warning - ignoring pre-dependency problem !
dpkg: regarding .../e2fsprogs_1.34+1.35-WIP-2003.08.21-3_i386.deb containing e2fsprogs, pre-dependency problem:
e2fsprogs pre-depends on libss2 (>= 1.34-1)
dpkg: warning - ignoring pre-dependency problem !
dpkg: regarding .../e2fsprogs_1.34+1.35-WIP-2003.08.21-3_i386.deb containing e2fsprogs, pre-dependency problem:
e2fsprogs pre-depends on libuuid1 (>= 1.34-1)
dpkg: warning - ignoring pre-dependency problem !
Unpacking e2fsprogs (from .../e2fsprogs_1.34+1.35-WIP-2003.08.21-3_i386.deb) ...
Selecting previously deselected package e2fslibs.
Unpacking e2fslibs (from .../e2fslibs_1.34+1.35-WIP-2003.08.21-3_i386.deb) ...
Selecting previously deselected package libcomerr2.
Unpacking libcomerr2 (from .../libcomerr2_1.34+1.35-WIP-2003.08.21-3_i386.deb) ...
Selecting previously deselected package libss2.
Unpacking libss2 (from .../libss2_1.34+1.35-WIP-2003.08.21-3_i386.deb) ...
Selecting previously deselected package libuuid1.
Unpacking libuuid1 (from .../libuuid1_1.34+1.35-WIP-2003.08.21-3_i386.deb) ...
Selecting previously deselected package findutils.
Unpacking findutils (from .../findutils_4.1.20-1_i386.deb) ...
Selecting previously deselected package gcc-3.2-base.
Unpacking gcc-3.2-base (from .../gcc-3.2-base_1%3a3.2.3-8_i386.deb) ...
Selecting previously deselected package gcc-3.3-base.
Unpacking gcc-3.3-base (from .../gcc-3.3-base_1%3a3.3.2-0pre4_i386.deb) ...
Selecting previously deselected package grep.
Unpacking grep (from .../archives/grep_2.5.1-6_i386.deb) ...
Selecting previously deselected package gzip.
Unpacking gzip (from .../archives/gzip_1.3.5-7_i386.deb) ...
Selecting previously deselected package hostname.
Unpacking hostname (from .../hostname_2.10_i386.deb) ...
Selecting previously deselected package libcap1.
Unpacking libcap1 (from .../libcap1_1%3a1.10-12_i386.deb) ...
Preparing to replace libc6 2.3.2-8 (using .../libc6_2.3.2-8_i386.deb) ...
Unpacking replacement libc6 ...
Selecting previously deselected package libdb2.
Unpacking libdb2 (from .../libdb2_2%3a2.7.7.0-8_i386.deb) ...
Selecting previously deselected package libdb3.
Unpacking libdb3 (from .../libdb3_3.2.9-19_i386.deb) ...
Selecting previously deselected package libncurses5.
Unpacking libncurses5 (from .../libncurses5_5.3.20030719-2_i386.deb) ...
Selecting previously deselected package libnewt0.51.
Unpacking libnewt0.51 (from .../libnewt0.51_0.51.4-18_i386.deb) ...
Selecting previously deselected package libpam-modules.
Unpacking libpam-modules (from .../libpam-modules_0.76-14_i386.deb) ...
Selecting previously deselected package libpam-runtime.
Unpacking libpam-runtime (from .../libpam-runtime_0.76-14_all.deb) ...
Selecting previously deselected package libpam0g.
Unpacking libpam0g (from .../libpam0g_0.76-14_i386.deb) ...
Selecting previously deselected package libpopt0.
Unpacking libpopt0 (from .../libpopt0_1.7-2_i386.deb) ...
Selecting previously deselected package libreadline4.
Unpacking libreadline4 (from .../libreadline4_4.3-5_i386.deb) ...
Selecting previously deselected package libstdc++2.10-glibc2.2.
Unpacking libstdc++2.10-glibc2.2 (from .../libstdc++2.10-glibc2.2_1%3a2.95.4-17_i386.deb) ...
Selecting previously deselected package libstdc++5.
Unpacking libstdc++5 (from .../libstdc++5_1%3a3.3.2-0pre4_i386.deb) ...
Selecting previously deselected package libgcc1.
Unpacking libgcc1 (from .../libgcc1_1%3a3.3.2-0pre4_i386.deb) ...
Selecting previously deselected package login.
dpkg: regarding .../login_1%3a4.0.3-11_i386.deb containing login, pre-dependency problem:
login pre-depends on libpam0g (>= 0.76)
libpam0g is unpacked, but has never been configured.
dpkg: warning - ignoring pre-dependency problem !
dpkg: regarding .../login_1%3a4.0.3-11_i386.deb containing login, pre-dependency problem:
login pre-depends on libpam-runtime (>= 0.76-13.1)
libpam-runtime is unpacked, but has never been configured.
dpkg: warning - ignoring pre-dependency problem !
Unpacking login (from .../login_1%3a4.0.3-11_i386.deb) ...
Selecting previously deselected package makedev.
Unpacking makedev (from .../makedev_2.3.1-63_all.deb) ...
Preparing to replace mawk 1.3.3-11 (using .../mawk_1.3.3-11_i386.deb) ...
Unpacking replacement mawk ...
Selecting previously deselected package modutils.
Unpacking modutils (from .../modutils_2.4.25-1_i386.deb) ...
Selecting previously deselected package mount.
Unpacking mount (from .../archives/mount_2.12-3_i386.deb) ...
Selecting previously deselected package ncurses-base.
Unpacking ncurses-base (from .../ncurses-base_5.3.20030719-2_all.deb) ...
Selecting previously deselected package ncurses-bin.
dpkg: regarding .../ncurses-bin_5.3.20030719-2_i386.deb containing ncurses-bin, pre-dependency problem:
ncurses-bin pre-depends on libncurses5 (>= 5.3.20030510-1)
libncurses5 is unpacked, but has never been configured.
dpkg: warning - ignoring pre-dependency problem !
Unpacking ncurses-bin (from .../ncurses-bin_5.3.20030719-2_i386.deb) ...
Selecting previously deselected package passwd.
Unpacking passwd (from .../passwd_1%3a4.0.3-11_i386.deb) ...
Preparing to replace perl-base 5.8.0-21 (using .../perl-base_5.8.0-21_i386.deb) ...
Unpacking replacement perl-base ...
Selecting previously deselected package procps.
Unpacking procps (from .../procps_1%3a3.1.12-1_i386.deb) ...
Selecting previously deselected package sed.
Unpacking sed (from .../archives/sed_4.0.7-1_i386.deb) ...
Selecting previously deselected package slang1.
Unpacking slang1 (from .../slang1_1.4.9-1_i386.deb) ...
Selecting previously deselected package slang1a-utf8.
Unpacking slang1a-utf8 (from .../slang1a-utf8_1.4.9-1_i386.deb) ...
Selecting previously deselected package initscripts.
Unpacking initscripts (from .../initscripts_2.85-7_all.deb) ...
Selecting previously deselected package sysvinit.
dpkg: regarding .../sysvinit_2.85-7_i386.deb containing sysvinit, pre-dependency problem:
sysvinit pre-depends on initscripts
initscripts is unpacked, but has never been configured.
dpkg: warning - ignoring pre-dependency problem !
Unpacking sysvinit (from .../sysvinit_2.85-7_i386.deb) ...
Selecting previously deselected package sysv-rc.
Unpacking sysv-rc (from .../sysv-rc_2.85-7_all.deb) ...
Selecting previously deselected package tar.
Unpacking tar (from .../tar_1.13.25-6_i386.deb) ...
Selecting previously deselected package util-linux.
dpkg: regarding .../util-linux_2.12-3_i386.deb containing util-linux, pre-dependency problem:
util-linux pre-depends on libncurses5 (>= 5.3.20030510-1)
libncurses5 is unpacked, but has never been configured.
dpkg: warning - ignoring pre-dependency problem !
dpkg: regarding .../util-linux_2.12-3_i386.deb containing util-linux, pre-dependency problem:
util-linux pre-depends on slang1a-utf8 (>> 1.4.4-7.1)
slang1a-utf8 is unpacked, but has never been configured.
dpkg: warning - ignoring pre-dependency problem !
dpkg: regarding .../util-linux_2.12-3_i386.deb containing util-linux, pre-dependency problem:
util-linux pre-depends on zlib1g (>= 1:1.1.4)
dpkg: warning - ignoring pre-dependency problem !
Unpacking util-linux (from .../util-linux_2.12-3_i386.deb) ...
Selecting previously deselected package whiptail.
Unpacking whiptail (from .../whiptail_0.51.4-18_i386.deb) ...
Selecting previously deselected package mbr.
Unpacking mbr (from .../archives/mbr_1.1.5-1_i386.deb) ...
I: Configuring required packages...
Setting up ncurses-base (5.3.20030719-2) ...
Setting up sysv-rc (2.85-7) ...
Setting up libpam-runtime (0.76-14) ...
Setting up gcc-3.2-base (3.2.3-8) ...
Setting up gcc-3.3-base (3.3.2-0pre4) ...
dpkg: libc6: dependency problems, but configuring anyway as you request:
libc6 depends on libdb1-compat; however:
Package libdb1-compat is not installed.
Setting up libc6 (2.3.2-8) ...
Current default timezone: 'UTC'.
Local time is now: Sun Sep 28 01:33:14 UTC 2003.
Universal Time is now: Sun Sep 28 01:33:14 UTC 2003.
Run 'tzconfig' if you wish to change it.
Setting up libcap1 (1.10-12) ...
Setting up slang1 (1.4.9-1) ...
Setting up libuuid1 (1.34+1.35-WIP-2003.08.21-3) ...
Setting up libpopt0 (1.7-2) ...
Setting up libpam0g (0.76-14) ...
Setting up bsdutils (2.12-3) ...
Setting up perl-base (5.8.0-21) ...
Setting up mbr (1.1.5-1) ...
Setting up tar (1.13.25-6) ...
Setting up slang1a-utf8 (1.4.9-1) ...
Setting up libgcc1 (3.3.2-0pre4) ...
Setting up mount (2.12-3) ...
Setting up libncurses5 (5.3.20030719-2) ...
Setting up libattr1 (2.4.8-1) ...
Setting up sed (4.0.7-1) ...
Setting up e2fslibs (1.34+1.35-WIP-2003.08.21-3) ...
Setting up base-passwd (3.5.4) ...
Setting up libcomerr2 (1.34+1.35-WIP-2003.08.21-3) ...
Setting up mawk (1.3.3-11) ...
Setting up libnewt0.51 (0.51.4-18) ...
Setting up libstdc++2.10-glibc2.2 (2.95.4-17) ...
Setting up grep (2.5.1-6) ...
Setting up hostname (2.10) ...
Setting up libacl1 (2.2.15-1) ...
Setting up libblkid1 (1.34+1.35-WIP-2003.08.21-3) ...
Setting up libss2 (1.34+1.35-WIP-2003.08.21-3) ...
Setting up findutils (4.1.20-1) ...
Setting up e2fsprogs (1.34+1.35-WIP-2003.08.21-3) ...
Setting up liblocale-gettext-perl (1.01-17) ...
Setting up diff (2.8.1-2) ...
Setting up libdb2 (2.7.7.0-8) ...
Setting up libdb3 (3.2.9-19) ...
dpkg: util-linux: dependency problems, but configuring anyway as you request:
util-linux depends on zlib1g (>= 1:1.1.4); however:
Package zlib1g is not installed.
Setting up util-linux (2.12-3) ...
Setting up libstdc++5 (3.3.2-0pre4) ...
Setting up libtext-charwidth-perl (0.04-1) ...
Setting up libtext-wrapi18n-perl (0.06-1) ...
dpkg: debconf: dependency problems, but configuring anyway as you request:
debconf depends on debconf-i18n | debconf-english; however:
Package debconf-english is not installed.
Setting up debconf (1.3.14) ...
Setting up coreutils (5.0.90-3) ...
Setting up debianutils (2.5.5) ...
Setting up makedev (2.3.1-63) ...
Setting up procps (3.1.12-1) ...
Setting up ncurses-bin (5.3.20030719-2) ...
Setting up whiptail (0.51.4-18) ...
Setting up libpam-modules (0.76-14) ...
Setting up base-files (3.0.10) ...
Setting up libreadline4 (4.3-5) ...
dpkg: debconf-i18n: dependency problems, but configuring anyway as you request:
debconf-i18n depends on libtext-iconv-perl; however:
Package libtext-iconv-perl is not installed.
Setting up debconf-i18n (1.3.14) ...
Setting up gzip (1.3.5-7) ...
Setting up dselect (1.10.15) ...
Setting up bash (2.05b-9.1) ...
Setting up login (4.0.3-11) ...
Setting up passwd (4.0.3-11) ...
Setting up dpkg (1.10.15) ...
Setting up initscripts (2.85-7) ...
Setting up sysvinit (2.85-7) ...
sysvinit: creating /dev/initctl
init: timeout opening/writing control channel /dev/initctl
Setting up modutils (2.4.25-1) ...
I: Installing base packages...
Selecting previously deselected package adduser.
(Reading database ... 4224 files and directories currently installed.)
Unpacking adduser (from .../archives/adduser_3.51_all.deb) ...
Selecting previously deselected package apt.
Unpacking apt (from .../archives/apt_0.5.14_i386.deb) ...
Selecting previously deselected package apt-utils.
Unpacking apt-utils (from .../apt-utils_0.5.14_i386.deb) ...
Selecting previously deselected package at.
Unpacking at (from .../archives/at_3.1.8-11_i386.deb) ...
Selecting previously deselected package base-config.
Unpacking base-config (from .../base-config_1.72_all.deb) ...
Selecting previously deselected package bsdmainutils.
Unpacking bsdmainutils (from .../bsdmainutils_6.0.3_i386.deb) ...
Selecting previously deselected package console-common.
Unpacking console-common (from .../console-common_0.7.29_all.deb) ...
Selecting previously deselected package console-tools.
Unpacking console-tools (from .../console-tools_1%3a0.2.3dbs-43_i386.deb) ...
Selecting previously deselected package libconsole.
Unpacking libconsole (from .../libconsole_1%3a0.2.3dbs-43_i386.deb) ...
Selecting previously deselected package console-data.
Unpacking console-data (from .../console-data_2002.12.04dbs-17_all.deb) ...
Selecting previously deselected package cpio.
Unpacking cpio (from .../archives/cpio_2.5-1.1_i386.deb) ...
Selecting previously deselected package cron.
Unpacking cron (from .../cron_3.0pl1-81_i386.deb) ...
Selecting previously deselected package ed.
Unpacking ed (from .../archives/ed_0.2-20_i386.deb) ...
Selecting previously deselected package exim4.
Unpacking exim4 (from .../archives/exim4_4.22-5_all.deb) ...
Selecting previously deselected package exim4-base.
Unpacking exim4-base (from .../exim4-base_4.22-5_i386.deb) ...
Selecting previously deselected package exim4-config.
Unpacking exim4-config (from .../exim4-config_4.22-5_all.deb) ...
Selecting previously deselected package exim4-daemon-light.
Unpacking exim4-daemon-light (from .../exim4-daemon-light_4.22-5_i386.deb) ...
Selecting previously deselected package fdutils.
Unpacking fdutils (from .../fdutils_5.4-20030718-1_i386.deb) ...
Selecting previously deselected package gettext-base.
Unpacking gettext-base (from .../gettext-base_0.12.1-6_i386.deb) ...
Selecting previously deselected package groff-base.
Unpacking groff-base (from .../groff-base_1.18.1-11_i386.deb) ...
Selecting previously deselected package ifupdown.
Unpacking ifupdown (from .../ifupdown_0.6.4-4.6_i386.deb) ...
Selecting previously deselected package info.
Unpacking info (from .../archives/info_4.6-1_i386.deb) ...
Selecting previously deselected package klogd.
Unpacking klogd (from .../klogd_1.4.1-11_i386.deb) ...
Selecting previously deselected package libdb1-compat.
Unpacking libdb1-compat (from .../libdb1-compat_2.1.3-7_i386.deb) ...
Selecting previously deselected package libident.
Unpacking libident (from .../libident_0.22-2.2_i386.deb) ...
Selecting previously deselected package libgnutls7.
Unpacking libgnutls7 (from .../libgnutls7_0.8.9-2_i386.deb) ...
Selecting previously deselected package libssl0.9.7.
Unpacking libssl0.9.7 (from .../libssl0.9.7_0.9.7b-2_i386.deb) ...
Selecting previously deselected package libgcrypt1.
Unpacking libgcrypt1 (from .../libgcrypt1_1.1.12-3_i386.deb) ...
Selecting previously deselected package liblzo1.
Unpacking liblzo1 (from .../liblzo1_1.08-1_i386.deb) ...
Selecting previously deselected package libopencdk4.
Unpacking libopencdk4 (from .../libopencdk4_1%3a0.4.2-3_i386.deb) ...
Selecting previously deselected package libtasn1-0.
Unpacking libtasn1-0 (from .../libtasn1-0_0.1.2-1_i386.deb) ...
Selecting previously deselected package zlib1g.
Unpacking zlib1g (from .../zlib1g_1%3a1.1.4-15_i386.deb) ...
Selecting previously deselected package liblockfile1.
Unpacking liblockfile1 (from .../liblockfile1_1.05_i386.deb) ...
Selecting previously deselected package libpcre3.
Unpacking libpcre3 (from .../libpcre3_4.3-3_i386.deb) ...
Selecting previously deselected package libsasl2.
Unpacking libsasl2 (from .../libsasl2_2.1.15-5_i386.deb) ...
Selecting previously deselected package libtext-iconv-perl.
Unpacking libtext-iconv-perl (from .../libtext-iconv-perl_1.2-2_i386.deb) ...
Selecting previously deselected package libwrap0.
Unpacking libwrap0 (from .../libwrap0_7.6-ipv6.1-3_i386.deb) ...
Selecting previously deselected package logrotate.
Unpacking logrotate (from .../logrotate_3.6.5-2_i386.deb) ...
Selecting previously deselected package mailx.
Unpacking mailx (from .../mailx_1%3a8.1.2-0.20030521cvs-1_i386.deb) ...
Selecting previously deselected package man-db.
Unpacking man-db (from .../man-db_2.4.2-2_i386.deb) ...
Selecting previously deselected package libgdbm3.
Unpacking libgdbm3 (from .../libgdbm3_1.8.3-2_i386.deb) ...
Selecting previously deselected package manpages.
Unpacking manpages (from .../manpages_1.60-3_all.deb) ...
Selecting previously deselected package modconf.
Unpacking modconf (from .../modconf_0.2.44_all.deb) ...
Selecting previously deselected package nano.
Unpacking nano (from .../archives/nano_1.2.2-1_i386.deb) ...
Selecting previously deselected package net-tools.
Unpacking net-tools (from .../net-tools_1.60-8_i386.deb) ...
Selecting previously deselected package netbase.
Unpacking netbase (from .../archives/netbase_4.13_all.deb) ...
Selecting previously deselected package netkit-inetd.
Unpacking netkit-inetd (from .../netkit-inetd_0.10-9_i386.deb) ...
Selecting previously deselected package iputils-ping.
Unpacking iputils-ping (from .../iputils-ping_3%3a20020927-1_i386.deb) ...
Selecting previously deselected package nvi.
Unpacking nvi (from .../archives/nvi_1.79-21_i386.deb) ...
Selecting previously deselected package ppp.
Unpacking ppp (from .../ppp_2.4.2+20030811-5_i386.deb) ...
Selecting previously deselected package pppconfig.
Unpacking pppconfig (from .../pppconfig_2.2.0_all.deb) ...
Selecting previously deselected package pppoe.
Unpacking pppoe (from .../archives/pppoe_3.5-3_i386.deb) ...
Selecting previously deselected package pppoeconf.
Unpacking pppoeconf (from .../archives/pppoeconf_1.0_all.deb) ...
Selecting previously deselected package libpcap0.7.
Unpacking libpcap0.7 (from .../libpcap0.7_0.7.2-1_i386.deb) ...
Selecting previously deselected package sysklogd.
Unpacking sysklogd (from .../sysklogd_1.4.1-11_i386.deb) ...
Selecting previously deselected package tasksel.
Unpacking tasksel (from .../archives/tasksel_1.34_i386.deb) ...
Selecting previously deselected package tcpd.
Unpacking tcpd (from .../tcpd_7.6-ipv6.1-3_i386.deb) ...
Selecting previously deselected package telnet.
Unpacking telnet (from .../telnet_0.17-20_i386.deb) ...
Selecting previously deselected package wget.
Unpacking wget (from .../wget_1.8.2-11_i386.deb) ...
Selecting previously deselected package lilo.
Unpacking lilo (from .../lilo_1%3a22.5.7.2-3_i386.deb) ...
Selecting previously deselected package pciutils.
Unpacking pciutils (from .../pciutils_1%3a2.1.11-2_i386.deb) ...
Selecting previously deselected package syslinux.
Unpacking syslinux (from .../syslinux_2.04-1_i386.deb) ...
Selecting previously deselected package psmisc.
Unpacking psmisc (from .../psmisc_21.3-1_i386.deb) ...
Selecting previously deselected package ipchains.
Unpacking ipchains (from .../ipchains_1.3.10-15_i386.deb) ...
Selecting previously deselected package iptables.
Unpacking iptables (from .../iptables_1.2.8-4_i386.deb) ...
Setting up modconf (0.2.44) ...
Setting up libdb1-compat (2.1.3-7) ...
Setting up telnet (0.17-20) ...
Setting up gettext-base (0.12.1-6) ...
Setting up libgdbm3 (1.8.3-2) ...
Setting up libgcrypt1 (1.1.12-3) ...
Setting up libtasn1-0 (0.1.2-1) ...
Setting up psmisc (21.3-1) ...
Setting up libident (0.22-2.2) ...
Setting up libssl0.9.7 (0.9.7b-2) ...
Setting up apt (0.5.14) ...
Setting up fdutils (5.4-20030718-1) ...
Keeping old fdmount setuid root settings.
Please note that you can run
'/usr/sbin/fdutilsconfig' to change them.
Setting up pciutils (2.1.11-2) ...
Setting up console-data (2002.12.04dbs-17) ...
Looking for keymap to install:
mac-usb-be
Warning: cannot access console;
deferring until console is accessible.
Setting up zlib1g (1.1.4-15) ...
Setting up adduser (3.51) ...
Setting up manpages (1.60-3) ...
Setting up ed (0.2-20) ...
Setting up tasksel (1.34) ...
Setting up libtext-iconv-perl (1.2-2) ...
Setting up libpcap0.7 (0.7.2-1) ...
Setting up liblzo1 (1.08-1) ...
Setting up wget (1.8.2-11) ...
Setting up ipchains (1.3.10-15) ...
Setting up groff-base (1.18.1-11) ...
Setting up net-tools (1.60-8) ...
Setting up bsdmainutils (6.0.3) ...
Setting up syslinux (2.04-1) ...
Setting up libpcre3 (4.3-3) ...
Setting up info (4.6-1) ...
Setting up libopencdk4 (0.4.2-3) ...
Setting up iputils-ping (20020927-1) ...
Setting up lilo (22.5.7.2-3) ...
hostname: Unknown host
Use of uninitialized value in sprintf at /usr/share/perl5/Debconf/Element/Noninteractive/Note.pm line 38, <GEN1> line 3.
Setting up libgnutls7 (0.8.9-2) ...
Setting up cron (3.0pl1-81) ...
Adding group crontab (101)...
Done.
Starting periodic command scheduler: cron
Warning: Fake start-stop-daemon called, doing nothing
.
Setting up libsasl2 (2.1.15-5) ...
Setting up nano (1.2.2-1) ...
Setting up netkit-inetd (0.10-9) ...
Starting internet superserver: inetd
Warning: Fake start-stop-daemon called, doing nothing
.
Setting up libconsole (0.2.3dbs-43) ...
Setting up apt-utils (0.5.14) ...
Setting up iptables (1.2.8-4) ...
Setting up cpio (2.5-1.1) ...
Setting up nvi (1.79-21) ...
Setting up libwrap0 (7.6-ipv6.1-3) ...
Setting up liblockfile1 (1.05) ...
Setting up tcpd (7.6-ipv6.1-3) ...
Setting up man-db (2.4.2-2) ...
Building database of manual pages ...
mandb: warning: /usr/share/man/man7/mdoc.samples.7.gz is a dangling symlink
Setting up ifupdown (0.6.4-4.6) ...
Setting up logrotate (3.6.5-2) ...
Setting up netbase (4.13) ...
Setting up ppp (2.4.2+20030811-5) ...
Setting up pppoe (3.5-3) ...
Setting up pppoeconf (1.0) ...
Setting up pppconfig (2.2.0) ...
Setting up klogd (1.4.1-11) ...
Stopping kernel log daemon: klogd
Warning: Fake start-stop-daemon called, doing nothing
.
Starting kernel log daemon: klogd
Warning: Fake start-stop-daemon called, doing nothing
.
Setting up exim4-config (4.22-5) ...
head: cannot open `/etc/mailname' for reading: No such file or directory
hostname: Unknown host
Setting up console-tools (0.2.3dbs-43) ...
Setting up console-common (0.7.29) ...
Looking for keymap to install:
mac-usb-be
Warning: cannot access console;
deferring until console is accessible.
Setting up base-config (1.72) ...
Setting up sysklogd (1.4.1-11) ...
Stopping system log daemon: syslogd
Warning: Fake start-stop-daemon called, doing nothing
.
Starting system log daemon: syslogd
Warning: Fake start-stop-daemon called, doing nothing
.
Setting up exim4-base (4.22-5) ...
Setting up exim4-daemon-light (4.22-5) ...
Starting MTA:
Warning: Fake start-stop-daemon called, doing nothing
exim4.
Setting up mailx (8.1.2-0.20030521cvs-1) ...
Setting up at (3.1.8-11) ...
Starting deferred execution scheduler: atd
Warning: Fake start-stop-daemon called, doing nothing
.
Setting up exim4 (4.22-5) ...
I: Base system installed successfully.
chroot /tmp/target dpkg --purge base-config console-common console-tools console-data console-tools-libs
(Reading database ... 6951 files and directories currently installed.)
Removing base-config ...
Purging configuration files for base-config ...
dpkg - warning: ignoring request to remove console-tools-libs which isn't installed.
Removing console-common ...
Purging configuration files for console-common ...
Removing console-tools ...
Purging configuration files for console-tools ...
Removing console-data ...
Purging configuration files for console-data ...
Using rootstrap module uml from:
/usr/lib/rootstrap/modules/uml
./MAKEDEV: warning: can't read /proc/devices
Using rootstrap module umount from:
/usr/lib/rootstrap/modules/umount
umount: /tmp/target/proc: not mounted
System halted.
tracing thread pid = 19361
Invoking: linux mem=128M eth0=slirp,12345,/usr/bin/slirp-fullbolt con0=fd:0,fd:1 con=pty root=/dev/root rootflags=/ rootfstype=hostfs ubd1=/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testimage devfs=mount init=/tmp/filer6mBUV rw
Checking for the skas3 patch in the host...not found
Checking for /proc/mm...not found
Linux version 2.4.20-7um (mdz@mizar) (gcc version 2.95.4 20011002 (Debian prerelease)) #1 SMP Fri Aug 8 18:30:28 EDT 2003
On node 0 totalpages: 32768
zone(0): 32768 pages.
zone(1): 0 pages.
zone(2): 0 pages.
Kernel command line: mem=128M eth0=slirp,12345,/usr/bin/slirp-fullbolt con0=fd:0,fd:1 con=pty root=/dev/root rootflags=/ rootfstype=hostfs ubd1=/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testimage devfs=mount init=/tmp/filer6mBUV rw
Calibrating delay loop... 1373.57 BogoMIPS
Memory: 126208k available
Dentry cache hash table entries: 16384 (order: 5, 131072 bytes)
Inode cache hash table entries: 8192 (order: 4, 65536 bytes)
Mount-cache hash table entries: 2048 (order: 2, 16384 bytes)
Buffer-cache hash table entries: 4096 (order: 2, 16384 bytes)
Page-cache hash table entries: 32768 (order: 5, 131072 bytes)
Checking for host processor cmov support...Yes
Checking for host processor xmm support...No
Checking that ptrace can change system call numbers...OK
Checking that host ptys support output SIGIO...Yes
Checking that host ptys support SIGIO on close...No, enabling workaround
POSIX conformance testing by UNIFIX
All CPUs are go!
Waiting on wait_init_idle (map = 0x0)
All processors have done init_idle
Linux NET4.0 for Linux 2.4
Based upon Swansea University Computer Society NET3.039
Initializing RT netlink socket
Starting kswapd
VFS: Diskquotas version dquot_6.4.0 initialized
Journalled Block Device driver loaded
devfs: v1.12c (20020818) Richard Gooch (rgooch@atnf.csiro.au)
devfs: boot_options: 0x1
pty: 256 Unix98 ptys configured
RAMDISK driver initialized: 16 RAM disks of 4096K size 1024 blocksize
loop: loaded (max 8 devices)
Initializing software serial port version 1
setup_etheraddr: failed to parse '/usr/bin/slirp-fullbolt' as an ethernet address
Netdevice 0 : SLIRP backend - command line: '/usr/bin/slirp-fullbolt'
mconsole (version 2) initialized on /home/dancer/.uml/NxzBF2/mconsole
unable to open root_fs for validation
Partition check:
ubdb: unknown partition table
Initializing stdio console driver
NET4: Linux TCP/IP 1.0 for NET4.0
IP Protocols: ICMP, UDP, TCP, IGMP
IP: routing cache hash table of 512 buckets, 4Kbytes
TCP: Hash tables configured (established 8192 bind 8192)
Linux IP multicast router 0.06 plus PIM-SM
NET4: Unix domain sockets 1.0/SMP for Linux NET4.0.
Root-NFS: No NFS server available, giving up.
VFS: Unable to mount root fs via NFS, trying floppy.
VFS: Mounted root (hostfs filesystem).
Mounted devfs on /dev
Starting network inside the chroot
sed: can't read /proc/mounts: No such file or directory
sed: can't read /proc/mounts: No such file or directory
sed: can't read /proc/mounts: No such file or directory
Deconfiguring network interfaces... done.
Setting up IP spoofing protection: FAILED.
Configuring network interfaces... Slirp v1.0.14pre1 (BETA)
Copyright (c) 1995,1996 Danny Gasparovski and others.
All rights reserved.
This program is copyrighted, free software.
Please read the file COPYRIGHT that came with the Slirp
package for the terms and conditions of the copyright.
IP address of Slirp host: 192.168.1.62
IP address of your DNS(s): 218.231.0.10, 218.231.0.42
Your address is 10.0.2.15
(or anything else you want)
Type five zeroes (0) to exit.
[autodetect SLIP/CSLIP, MTU 1500, MRU 1500]
SLiRP Ready ...
done.
W: /home/dancer/.pbuilderrc does not exist
-> Running in pbuilder-user-mode-linux mode
Upgrading for distribution sid
-> copying local configuration
-> mounting /proc filesystem
-> mounting /dev/pts filesystem
-> installing dummy policy-rc.d
Refreshing the base.tgz
-> upgrading packages
0% [Working]
0% [Waiting for headers]
Get:1 http://ftp.jp.debian.org sid/main Packages [2692kB]
0% [1 Packages 2542/2692kB 0%]
0% [1 Packages 8302/2692kB 0%]
1% [1 Packages 42862/2692kB 1%]
5% [1 Packages 142222/2692kB 5%]
8% [1 Packages 231502/2692kB 8%]
12% [1 Packages 331264/2692kB 12%]
16% [1 Packages 440736/2692kB 16%]
19% [1 Packages 519936/2692kB 19%]
23% [1 Packages 643776/2692kB 23%]
26% [1 Packages 725856/2692kB 26%]
31% [1 Packages 836736/2692kB 31%]
34% [1 Packages 924576/2692kB 34%] 144kB/s 12s
38% [1 Packages 1026816/2692kB 38%] 144kB/s 11s
41% [1 Packages 1110336/2692kB 41%] 144kB/s 10s
45% [1 Packages 1214016/2692kB 45%] 144kB/s 10s
48% [1 Packages 1294656/2692kB 48%] 144kB/s 9s
51% [1 Packages 1392576/2692kB 51%] 144kB/s 8s
54% [1 Packages 1473216/2692kB 54%] 144kB/s 8s
58% [1 Packages 1582656/2692kB 58%] 144kB/s 7s
61% [1 Packages 1664736/2692kB 61%] 144kB/s 7s
66% [1 Packages 1781376/2692kB 66%] 144kB/s 6s
68% [1 Packages 1855168/2692kB 68%] 144kB/s 5s
71% [1 Packages 1935808/2692kB 71%] 144kB/s 5s
75% [1 Packages 2035168/2692kB 75%] 179kB/s 3s
79% [1 Packages 2131648/2692kB 79%] 179kB/s 3s
82% [1 Packages 2228128/2692kB 82%] 179kB/s 2s
86% [1 Packages 2327488/2692kB 86%] 179kB/s 2s
91% [1 Packages 2452768/2692kB 91%] 179kB/s 1s
95% [1 Packages 2566528/2692kB 95%] 179kB/s 0s
99% [1 Packages 2678848/2692kB 99%] 179kB/s 0s
99% [Waiting for headers] 179kB/s 0s
99% [1 Packages gzip 0] [Waiting for headers] 179kB/s 0s
Get:2 http://ftp.jp.debian.org sid/main Release [82B]
99% [1 Packages gzip 49152] 179kB/s 0s
99% [1 Packages gzip 4694016] 179kB/s 0s
99% [1 Packages gzip 8908800] 179kB/s 0s
100% [Working] 179kB/s 0s
Fetched 2692kB in 17s (150kB/s)
Reading Package Lists... 0%
Reading Package Lists... 0%
Reading Package Lists... 1%
Reading Package Lists... 46%
Reading Package Lists... 95%
Reading Package Lists... 99%
Reading Package Lists... 99%
Reading Package Lists... Done
(Reading database ... 6204 files and directories currently installed.)
Removing lilo ...
Purging configuration files for lilo ...
Reading Package Lists... 0%
Reading Package Lists... 0%
Reading Package Lists... 77%
Reading Package Lists... Done
Building Dependency Tree... 0%
Building Dependency Tree... 0%
Building Dependency Tree... 46%
Building Dependency Tree... 50%
Building Dependency Tree... 50%
Building Dependency Tree... Done
Calculating Upgrade... Done
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Reading Package Lists... 0%
Reading Package Lists... 100%
Reading Package Lists... Done
Building Dependency Tree... 0%
Building Dependency Tree... 0%
Building Dependency Tree... 50%
Building Dependency Tree... 50%
Building Dependency Tree... 50%
Building Dependency Tree... Done
apt is already the newest version.
The following extra packages will be installed:
binutils cpp cpp-3.3 g++ g++-3.3 gcc gcc-3.3 libc6-dev libdb4.0
libstdc++5-3.3-dev make patch perl perl-modules
Suggested packages:
gnupg manpages-dev automake flex gdb gcc-3.3-doc libstdc++5-3.3-doc
libterm-readline-perl-perl
The following NEW packages will be installed:
binutils build-essential cpp cpp-3.3 dpkg-dev g++ g++-3.3 gcc gcc-3.3
libc6-dev libdb4.0 libstdc++5-3.3-dev make patch perl perl-modules
0 upgraded, 16 newly installed, 0 to remove and 0 not upgraded.
Need to get 17.0MB of archives.
After unpacking 57.6MB of additional disk space will be used.
0% [Working]
Get:1 http://ftp.jp.debian.org sid/main binutils 2.14.90.0.6-3 [2429kB]
0% [1 binutils 2550/2429kB 0%]
0% [1 binutils 19830/2429kB 0%]
0% [1 binutils 103328/2429kB 4%]
1% [1 binutils 218528/2429kB 8%]
1% [1 binutils 327968/2429kB 13%]
2% [1 binutils 454688/2429kB 18%]
3% [1 binutils 565696/2429kB 23%]
4% [1 binutils 692416/2429kB 28%]
4% [1 binutils 819136/2429kB 33%]
5% [1 binutils 932896/2429kB 38%]
6% [1 binutils 1035136/2429kB 42%]
6% [1 binutils 1138816/2429kB 46%] 184kB/s 1m26s
7% [1 binutils 1245376/2429kB 51%] 184kB/s 1m25s
7% [1 binutils 1340416/2429kB 55%] 184kB/s 1m25s
8% [1 binutils 1455616/2429kB 59%] 184kB/s 1m24s
9% [1 binutils 1539136/2429kB 63%] 184kB/s 1m24s
9% [1 binutils 1660096/2429kB 68%] 184kB/s 1m23s
10% [1 binutils 1789632/2429kB 73%] 184kB/s 1m22s
11% [1 binutils 1899072/2429kB 78%] 184kB/s 1m22s
11% [1 binutils 2011392/2429kB 82%] 184kB/s 1m21s
12% [1 binutils 2109312/2429kB 86%] 184kB/s 1m20s
12% [1 binutils 2204352/2429kB 90%] 184kB/s 1m20s
13% [1 binutils 2331072/2429kB 95%] 184kB/s 1m19s
Get:2 http://ftp.jp.debian.org sid/main cpp-3.3 1:3.3.2-0pre4 [1387kB]
14% [2 cpp-3.3 123/1387kB 0%] 208kB/s 1m10s
14% [2 cpp-3.3 115323/1387kB 8%] 208kB/s 1m9s
15% [2 cpp-3.3 242043/1387kB 17%] 208kB/s 1m8s
16% [2 cpp-3.3 386043/1387kB 27%] 208kB/s 1m8s
17% [2 cpp-3.3 515643/1387kB 37%] 208kB/s 1m7s
17% [2 cpp-3.3 633723/1387kB 45%] 208kB/s 1m7s
18% [2 cpp-3.3 737403/1387kB 53%] 208kB/s 1m6s
19% [2 cpp-3.3 846560/1387kB 61%] 208kB/s 1m6s
19% [2 cpp-3.3 941600/1387kB 67%] 208kB/s 1m5s
20% [2 cpp-3.3 1036640/1387kB 74%] 208kB/s 1m5s
20% [2 cpp-3.3 1123040/1387kB 80%] 208kB/s 1m4s
21% [2 cpp-3.3 1202240/1387kB 86%] 208kB/s 1m4s
22% [2 cpp-3.3 1318880/1387kB 95%] 210kB/s 1m3s
Get:3 http://ftp.jp.debian.org sid/main cpp 4:3.3.1-2 [26.0kB]
22% [3 cpp 1068/26.0kB 4%] 210kB/s 1m2s
22% [Waiting for headers] 210kB/s 1m2s
Get:4 http://ftp.jp.debian.org sid/main perl-modules 5.8.0-21 [1947kB]
22% [4 perl-modules 3991/1947kB 0%] 210kB/s 1m2s
23% [4 perl-modules 111991/1947kB 5%] 210kB/s 1m2s
23% [4 perl-modules 232951/1947kB 11%] 210kB/s 1m1s
24% [4 perl-modules 359671/1947kB 18%] 210kB/s 1m1s
25% [4 perl-modules 466231/1947kB 23%] 210kB/s 60s
26% [4 perl-modules 620311/1947kB 31%] 210kB/s 59s
26% [4 perl-modules 726871/1947kB 37%] 210kB/s 59s
27% [4 perl-modules 840631/1947kB 43%] 210kB/s 58s
28% [4 perl-modules 939991/1947kB 48%] 210kB/s 58s
28% [4 perl-modules 1047991/1947kB 53%] 210kB/s 57s
29% [4 perl-modules 1157431/1947kB 59%] 210kB/s 57s
29% [4 perl-modules 1263991/1947kB 64%] 220kB/s 54s
30% [4 perl-modules 1373431/1947kB 70%] 220kB/s 53s
31% [4 perl-modules 1482871/1947kB 76%] 220kB/s 53s
32% [4 perl-modules 1629751/1947kB 83%] 220kB/s 52s
32% [4 perl-modules 1770871/1947kB 90%] 220kB/s 51s
33% [4 perl-modules 1924951/1947kB 98%] 220kB/s 51s
Get:5 http://ftp.jp.debian.org sid/main libdb4.0 4.0.14-1.3 [302kB]
34% [5 libdb4.0 1632/302kB 0%] 220kB/s 51s
34% [5 libdb4.0 134112/302kB 44%] 220kB/s 50s
35% [5 libdb4.0 257952/302kB 85%] 220kB/s 49s
Get:6 http://ftp.jp.debian.org sid/main perl 5.8.0-21 [3891kB]
35% [6 perl 1611/3891kB 0%] 220kB/s 49s
36% [6 perl 90891/3891kB 2%] 220kB/s 49s
36% [6 perl 206091/3891kB 5%] 220kB/s 48s
37% [6 perl 332352/3891kB 8%] 220kB/s 48s
38% [6 perl 455136/3891kB 11%] 220kB/s 47s
39% [6 perl 581856/3891kB 14%] 248kB/s 41s
39% [6 perl 694176/3891kB 17%] 248kB/s 41s
40% [6 perl 823776/3891kB 21%] 248kB/s 40s
41% [6 perl 948096/3891kB 24%] 248kB/s 40s
42% [6 perl 1063296/3891kB 27%] 248kB/s 39s
42% [6 perl 1159776/3891kB 29%] 248kB/s 39s
43% [6 perl 1263456/3891kB 32%] 248kB/s 38s
43% [6 perl 1346976/3891kB 34%] 248kB/s 38s
44% [6 perl 1452096/3891kB 37%] 248kB/s 38s
44% [6 perl 1570176/3891kB 40%] 248kB/s 37s
45% [6 perl 1682496/3891kB 43%] 248kB/s 37s
46% [6 perl 1800576/3891kB 46%] 248kB/s 36s
47% [6 perl 1934016/3891kB 49%] 218kB/s 41s
47% [6 perl 2062176/3891kB 53%] 218kB/s 40s
48% [6 perl 2200416/3891kB 56%] 218kB/s 40s
49% [6 perl 2311296/3891kB 59%] 218kB/s 39s
49% [6 perl 2417856/3891kB 62%] 218kB/s 39s
50% [6 perl 2527296/3891kB 64%] 218kB/s 38s
51% [6 perl 2639616/3891kB 67%] 218kB/s 38s
51% [6 perl 2737536/3891kB 70%] 218kB/s 37s
52% [6 perl 2838336/3891kB 72%] 218kB/s 37s
53% [6 perl 2949216/3891kB 75%] 218kB/s 36s
53% [6 perl 3071616/3891kB 78%] 218kB/s 36s
54% [6 perl 3183936/3891kB 81%] 218kB/s 35s
55% [6 perl 3299136/3891kB 84%] 220kB/s 34s
55% [6 perl 3425856/3891kB 88%] 220kB/s 34s
56% [6 perl 3571296/3891kB 91%] 220kB/s 33s
57% [6 perl 3682176/3891kB 94%] 220kB/s 32s
58% [6 perl 3814656/3891kB 98%] 220kB/s 32s
Get:7 http://ftp.jp.debian.org sid/main patch 2.5.9-1 [92.3kB]
58% [7 patch 1271/92.3kB 1%] 220kB/s 31s
Get:8 http://ftp.jp.debian.org sid/main make 3.80-4 [349kB]
59% [8 make 775/349kB 0%] 220kB/s 31s
59% [8 make 121735/349kB 34%] 220kB/s 31s
60% [8 make 228295/349kB 65%] 220kB/s 30s
61% [Waiting for headers] 220kB/s 29s
Get:9 http://ftp.jp.debian.org sid/main dpkg-dev 1.10.15 [112kB]
61% [9 dpkg-dev 2681/112kB 2%] 220kB/s 29s
61% [9 dpkg-dev 100601/112kB 89%] 220kB/s 29s
61% [Waiting for headers] 220kB/s 29s
Get:10 http://ftp.jp.debian.org sid/main gcc-3.3 1:3.3.2-0pre4 [1309kB]
61% [10 gcc-3.3 2551/1309kB 0%] 220kB/s 29s
62% [10 gcc-3.3 99031/1309kB 7%] 220kB/s 29s
62% [10 gcc-3.3 185431/1309kB 14%] 215kB/s 29s
63% [10 gcc-3.3 283351/1309kB 21%] 215kB/s 28s
64% [10 gcc-3.3 366871/1309kB 28%] 215kB/s 28s
64% [10 gcc-3.3 484951/1309kB 37%] 215kB/s 27s
65% [10 gcc-3.3 577111/1309kB 44%] 215kB/s 27s
66% [10 gcc-3.3 703831/1309kB 53%] 215kB/s 26s
66% [10 gcc-3.3 833431/1309kB 63%] 215kB/s 26s
67% [10 gcc-3.3 956032/1309kB 73%] 215kB/s 25s
68% [10 gcc-3.3 1094272/1309kB 83%] 215kB/s 25s
69% [10 gcc-3.3 1236832/1309kB 94%] 215kB/s 24s
Get:11 http://ftp.jp.debian.org sid/main libc6-dev 2.3.2-8 [2633kB]
69% [11 libc6-dev 2028/2633kB 0%] 215kB/s 24s
70% [11 libc6-dev 141708/2633kB 5%] 215kB/s 23s
71% [11 libc6-dev 279948/2633kB 10%] 215kB/s 22s
71% [11 libc6-dev 396588/2633kB 15%] 238kB/s 20s
72% [11 libc6-dev 521868/2633kB 19%] 238kB/s 19s
73% [11 libc6-dev 634188/2633kB 24%] 238kB/s 19s
73% [11 libc6-dev 734988/2633kB 27%] 238kB/s 18s
74% [11 libc6-dev 847308/2633kB 32%] 238kB/s 18s
75% [11 libc6-dev 974028/2633kB 36%] 238kB/s 17s
75% [11 libc6-dev 1092108/2633kB 41%] 238kB/s 17s
76% [11 libc6-dev 1207308/2633kB 45%] 238kB/s 16s
77% [11 libc6-dev 1319628/2633kB 50%] 238kB/s 16s
77% [11 libc6-dev 1406028/2633kB 53%] 238kB/s 15s
78% [11 libc6-dev 1512588/2633kB 57%] 238kB/s 15s
79% [11 libc6-dev 1616268/2633kB 61%] 238kB/s 14s
79% [11 libc6-dev 1757388/2633kB 66%] 218kB/s 15s
80% [11 libc6-dev 1857312/2633kB 70%] 218kB/s 15s
81% [11 libc6-dev 1978272/2633kB 75%] 218kB/s 14s
81% [11 libc6-dev 2110752/2633kB 80%] 218kB/s 14s
82% [11 libc6-dev 2219936/2633kB 84%] 218kB/s 13s
83% [11 libc6-dev 2338016/2633kB 88%] 218kB/s 13s
83% [11 libc6-dev 2444256/2633kB 92%] 218kB/s 12s
84% [11 libc6-dev 2568096/2633kB 97%] 218kB/s 11s
85% [Waiting for headers] 218kB/s 11s
Get:12 http://ftp.jp.debian.org sid/main libstdc++5-3.3-dev 1:3.3.2-0pre4 [766kB]
85% [12 libstdc++5-3.3-dev 3993/766kB 0%] 218kB/s 11s
85% [12 libstdc++5-3.3-dev 109113/766kB 14%] 218kB/s 11s
86% [12 libstdc++5-3.3-dev 215673/766kB 28%] 218kB/s 10s
86% [12 libstdc++5-3.3-dev 316473/766kB 41%] 218kB/s 10s
87% [12 libstdc++5-3.3-dev 414393/766kB 54%] 218kB/s 9s
88% [12 libstdc++5-3.3-dev 506553/766kB 66%] 212kB/s 9s
88% [12 libstdc++5-3.3-dev 595833/766kB 77%] 212kB/s 9s
89% [12 libstdc++5-3.3-dev 687993/766kB 89%] 212kB/s 8s
Get:13 http://ftp.jp.debian.org sid/main g++-3.3 1:3.3.2-0pre4 [1767kB]
89% [13 g++-3.3 1968/1767kB 0%] 212kB/s 8s
90% [13 g++-3.3 94128/1767kB 5%] 212kB/s 7s
90% [13 g++-3.3 180528/1767kB 10%] 212kB/s 7s
91% [13 g++-3.3 261168/1767kB 14%] 212kB/s 7s
91% [13 g++-3.3 366288/1767kB 20%] 212kB/s 6s
92% [13 g++-3.3 442608/1767kB 25%] 212kB/s 6s
92% [13 g++-3.3 540528/1767kB 30%] 212kB/s 5s
93% [13 g++-3.3 632688/1767kB 35%] 212kB/s 5s
93% [13 g++-3.3 739248/1767kB 41%] 212kB/s 4s
94% [13 g++-3.3 822768/1767kB 46%] 174kB/s 5s
95% [13 g++-3.3 929328/1767kB 52%] 174kB/s 4s
95% [13 g++-3.3 1012848/1767kB 57%] 174kB/s 4s
95% [13 g++-3.3 1087728/1767kB 61%] 174kB/s 3s
96% [13 g++-3.3 1182768/1767kB 66%] 174kB/s 3s
96% [13 g++-3.3 1266288/1767kB 71%] 174kB/s 2s
97% [13 g++-3.3 1355568/1767kB 76%] 174kB/s 2s
98% [13 g++-3.3 1447728/1767kB 81%] 174kB/s 1s
98% [13 g++-3.3 1511088/1767kB 85%] 174kB/s 1s
98% [13 g++-3.3 1583088/1767kB 89%] 174kB/s 1s
99% [13 g++-3.3 1646448/1767kB 93%] 174kB/s 0s
99% [13 g++-3.3 1747248/1767kB 98%] 174kB/s 0s
99% [Waiting for headers] 174kB/s 0s
Get:14 http://ftp.jp.debian.org sid/main g++ 4:3.3.1-2 [1390B]
99% [Waiting for headers] 174kB/s 0s
Get:15 http://ftp.jp.debian.org sid/main gcc 4:3.3.1-2 [4850B]
99% [15 gcc 1149/4850B 23%] 174kB/s 0s
Get:16 http://ftp.jp.debian.org sid/main build-essential 10 [6450B]
99% [16 build-essential 1735/6450B 26%] 174kB/s 0s
100% [Working] 159kB/s 0s
Fetched 17.0MB in 1m21s (210kB/s)
Selecting previously deselected package binutils.
(Reading database ... 6165 files and directories currently installed.)
Unpacking binutils (from .../binutils_2.14.90.0.6-3_i386.deb) ...
Selecting previously deselected package cpp-3.3.
Unpacking cpp-3.3 (from .../cpp-3.3_1%3a3.3.2-0pre4_i386.deb) ...
Selecting previously deselected package cpp.
Unpacking cpp (from .../cpp_4%3a3.3.1-2_i386.deb) ...
Selecting previously deselected package perl-modules.
Unpacking perl-modules (from .../perl-modules_5.8.0-21_all.deb) ...
Selecting previously deselected package libdb4.0.
Unpacking libdb4.0 (from .../libdb4.0_4.0.14-1.3_i386.deb) ...
Selecting previously deselected package perl.
Unpacking perl (from .../perl_5.8.0-21_i386.deb) ...
Selecting previously deselected package patch.
Unpacking patch (from .../patch_2.5.9-1_i386.deb) ...
Selecting previously deselected package make.
Unpacking make (from .../archives/make_3.80-4_i386.deb) ...
Selecting previously deselected package dpkg-dev.
Unpacking dpkg-dev (from .../dpkg-dev_1.10.15_all.deb) ...
Selecting previously deselected package gcc-3.3.
Unpacking gcc-3.3 (from .../gcc-3.3_1%3a3.3.2-0pre4_i386.deb) ...
Selecting previously deselected package libc6-dev.
Unpacking libc6-dev (from .../libc6-dev_2.3.2-8_i386.deb) ...
Selecting previously deselected package libstdc++5-3.3-dev.
Unpacking libstdc++5-3.3-dev (from .../libstdc++5-3.3-dev_1%3a3.3.2-0pre4_i386.deb) ...
Selecting previously deselected package g++-3.3.
Unpacking g++-3.3 (from .../g++-3.3_1%3a3.3.2-0pre4_i386.deb) ...
Selecting previously deselected package g++.
Unpacking g++ (from .../g++_4%3a3.3.1-2_i386.deb) ...
Selecting previously deselected package gcc.
Unpacking gcc (from .../gcc_4%3a3.3.1-2_i386.deb) ...
Selecting previously deselected package build-essential.
Unpacking build-essential (from .../build-essential_10_i386.deb) ...
Setting up binutils (2.14.90.0.6-3) ...
Setting up cpp-3.3 (3.3.2-0pre4) ...
Setting up cpp (3.3.1-2) ...
Setting up libdb4.0 (4.0.14-1.3) ...
Setting up patch (2.5.9-1) ...
Setting up make (3.80-4) ...
Setting up gcc-3.3 (3.3.2-0pre4) ...
Setting up libc6-dev (2.3.2-8) ...
Setting up gcc (3.3.1-2) ...
Setting up libstdc++5-3.3-dev (3.3.2-0pre4) ...
Setting up perl-modules (5.8.0-21) ...
Setting up g++-3.3 (3.3.2-0pre4) ...
Setting up g++ (3.3.1-2) ...
Setting up perl (5.8.0-21) ...
Setting up dpkg-dev (1.10.15) ...
Setting up build-essential (10) ...
-> ignoring umount of proc filesystem
-> ignoring umount of dev/pts filesystem
Kernel panic: Attempted to kill init!
<6>Stopping all CPUs...done
tracing thread pid = 4319
-> Successful exit from user-mode linux
|