aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordancer <dancer>2003-10-04 15:14:43 +0000
committerdancer <dancer>2003-10-04 15:14:43 +0000
commit59c5f227360208ab1e162d5e6ff239cb3ba95ff8 (patch)
tree7085946710daddd3940a42578c2936f220adaf66
parent63c62cc39a66c5e7adc6f5dcc7f6e91572ecd5fe (diff)
downloadpbuilder-59c5f227360208ab1e162d5e6ff239cb3ba95ff8.tar
pbuilder-59c5f227360208ab1e162d5e6ff239cb3ba95ff8.tar.gz
+
+ * auditing of readlink occurrences + * Bug fix: "pbuilder: Please deal with nonexistent --buildplace + directory", reported from Artur R. Czechowski (Closes: #213890). +
-rw-r--r--ChangeLog10
-rw-r--r--THANKS1
-rw-r--r--debian/changelog8
-rwxr-xr-xpbuilder-checkparams15
-rwxr-xr-xpbuilder-user-mode-linux14
-rw-r--r--testsuite/pbuilder-user-mode-linux-build-dsh-sid.log555
-rw-r--r--testsuite/pbuilder-user-mode-linux-create-sarge.log1065
-rw-r--r--testsuite/pbuilder-user-mode-linux-create-sid.log265
8 files changed, 742 insertions, 1191 deletions
diff --git a/ChangeLog b/ChangeLog
index 273f949..6e6a17c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+2003-10-05 Junichi Uekawa <dancer@debian.org>
+
+ * THANKS: update thanks file.
+
+2003-10-03 Junichi Uekawa <dancer@debian.org>
+
+ * pbuilder-user-mode-linux (BUILDING_DSC_FILE): error checking on readlink.
+
+ * pbuilder-checkparams (IGNORE_UMOUNT): error-checking on readlink.
+
2003-09-24 Junichi Uekawa <dancer@debian.org>
* pbuilder-modules (pbuilder-options): actually, return 101 for policy-rc.d
diff --git a/THANKS b/THANKS
index 0334bc3..852bfd8 100644
--- a/THANKS
+++ b/THANKS
@@ -32,6 +32,7 @@ Kenneth Pronovici <pronovic@debian.org>
Matt Kraai <kraai@alumni.cmu.edu>
Roland Stigge
"Aaron M. Ucko" <ucko@debian.org>
+Artur R. Czechowski
I thank them all!
diff --git a/debian/changelog b/debian/changelog
index 7624c8f..f576757 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+pbuilder (0.88) UNRELEASED; urgency=low
+
+ * auditing of readlink occurrences
+ * Bug fix: "pbuilder: Please deal with nonexistent --buildplace
+ directory", reported from Artur R. Czechowski (Closes: #213890).
+
+ -- Junichi Uekawa <dancer@debian.org> Fri, 3 Oct 2003 22:36:57 +0900
+
pbuilder (0.87) unstable; urgency=low
* Bug fix: "pdebuild continues after source package fails to build",
diff --git a/pbuilder-checkparams b/pbuilder-checkparams
index f29d958..4f0c1ef 100755
--- a/pbuilder-checkparams
+++ b/pbuilder-checkparams
@@ -38,10 +38,18 @@ while [ -n "$1" ]; do
if [ "${PBCURRENTCOMMANDLINEOPERATION}" = 'create' ]; then
touch "$2";
fi
+ if [ ! -f "$2" ]; then
+ echo "E: File $2 does not exist" >&2
+ exit 1
+ fi
BASETGZ=$(readlink -f "$2");
shift; shift;
;;
--buildplace)
+ if [ ! -d "$2" ] ; then
+ echo "E: Directory $2 does not exist" >&2
+ exit 1
+ fi
BUILDPLACE=$(readlink -f "$2");
shift; shift;
;;
@@ -67,7 +75,12 @@ while [ -n "$1" ]; do
;;
--buildresult)
if [ -n "$2" ]; then
- BUILDRESULT=$(readlink -f "$2");
+ if [ -d "$2" ]; then
+ BUILDRESULT=$(readlink -f "$2");
+ else
+ echo "E: Directory $2 does not exist" >&2
+ exit 1
+ fi
else
BUILDRESULT=
fi
diff --git a/pbuilder-user-mode-linux b/pbuilder-user-mode-linux
index 9e33e51..1bfc624 100755
--- a/pbuilder-user-mode-linux
+++ b/pbuilder-user-mode-linux
@@ -211,10 +211,20 @@ while [ -n "$1" ] ; do
shift; shift;;
--buildresult)
# ignore buildresult
- UML_BUILDRESULT=$(readlink -f "$2")
+ if [ -d "$2" ]; then
+ UML_BUILDRESULT=$(readlink -f "$2")
+ else
+ echo "E: Directory $d does not exist" >&2
+ exit 1
+ fi
shift; shift;;
--buildplace)
- BUILDPLACE=$(readlink -f "$2")
+ if [ -d "$2" ]; then
+ BUILDPLACE=$(readlink -f "$2")
+ else
+ echo "E: Directory $d does not exist" >&2
+ exit 1
+ fi
shift; shift;;
--logfile)
exec > "$2";
diff --git a/testsuite/pbuilder-user-mode-linux-build-dsh-sid.log b/testsuite/pbuilder-user-mode-linux-build-dsh-sid.log
index ab6c5dc..f9952fe 100644
--- a/testsuite/pbuilder-user-mode-linux-build-dsh-sid.log
+++ b/testsuite/pbuilder-user-mode-linux-build-dsh-sid.log
@@ -1,4 +1,4 @@
-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/testbuild/6846.cow,/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testimage devfs=mount init=/tmp/fileq0Tsvv rw
+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/testbuild/16793.cow,/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testimage devfs=mount init=/tmp/filecDrWa2 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
@@ -6,8 +6,8 @@ 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/testbuild/6846.cow,/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testimage devfs=mount init=/tmp/fileq0Tsvv rw
-Calibrating delay loop... 1380.40 BogoMIPS
+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/testbuild/16793.cow,/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testimage devfs=mount init=/tmp/filecDrWa2 rw
+Calibrating delay loop... 870.10 BogoMIPS
Memory: 126208k available
Dentry cache hash table entries: 16384 (order: 5, 131072 bytes)
Inode cache hash table entries: 8192 (order: 4, 65536 bytes)
@@ -37,9 +37,9 @@ 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/aiiLx6/mconsole
+mconsole (version 2) initialized on /home/dancer/.uml/kXsLwI/mconsole
unable to open root_fs for validation
-Creating "/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild/6846.cow" as COW file for "/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testimage"
+Creating "/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild/16793.cow" as COW file for "/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testimage"
Partition check:
ubdb: unknown partition table
Initializing stdio console driver
@@ -86,8 +86,8 @@ I: using fakeroot in build.
pbuilder-buildpackage/i386 $Id$
$Id$
-Current time: Fri Oct 3 08:54:34 JST 2003
-pbuilder-time-stamp: 1065138874
+Current time: Fri Oct 3 23:28:59 JST 2003
+pbuilder-time-stamp: 1065191339
-> copying local configuration
-> mounting /proc filesystem
-> mounting /dev/pts filesystem
@@ -96,26 +96,533 @@ Installing the build-deps
-> Attempting to parse the build-deps : pbuilder-satisfydepends,v 1.18 2003/04/20 03:40:36 dancer Exp $
-> Considering debhelper (>> 3.0.0)
-> Trying debhelper
- -> Cannot install debhelper; apt errors follow:
+ -> Considering libdshconfig1-dev
+ -> Trying libdshconfig1-dev
+ -> Installing debhelper libdshconfig1-dev
Reading Package Lists... 0% Reading Package Lists... 100% Reading Package Lists... Done
- Building Dependency Tree... 0% Building Dependency Tree... 0% Building Dependency Tree... 32% Building Dependency Tree... 50% Building Dependency Tree... 50% Building Dependency Tree... 89% Building Dependency Tree... Done
-You might want to run `apt-get -f install' to correct these:
-The following packages have unmet dependencies:
- debhelper: Depends: perl (>= 5.6.0-16) but it is not going to be installed
- Depends: file (>= 3.23-1) but it is not going to be installed
- Depends: dpkg-dev (>= 1.7.0) but it is not going to be installed
- Depends: html2text but it is not going to be installed
- Depends: debconf-utils (>= 1.1.1) but it is not going to be installed
- Depends: binutils but it is not going to be installed
- Depends: po-debconf but it is not going to be installed
- tasksel: Depends: libtextwrap1 but it is not going to be installed
-E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).
-E: Could not satisfy build-dependency.
-E: pbuilder-satisfydepends failed.
+ Building Dependency Tree... 0% Building Dependency Tree... 0% Building Dependency Tree... 44% Building Dependency Tree... 50% Building Dependency Tree... 50% Building Dependency Tree... Done
+The following extra packages will be installed:
+ debconf-utils file gettext html2text intltool-debian libdshconfig1 libmagic1
+ po-debconf
+Suggested packages:
+ cvs
+The following NEW packages will be installed:
+ debconf-utils debhelper file gettext html2text intltool-debian libdshconfig1
+ libdshconfig1-dev libmagic1 po-debconf
+0 upgraded, 10 newly installed, 0 to remove and 0 not upgraded.
+Need to get 2044kB of archives.
+After unpacking 6850kB of additional disk space will be used.
+ 0% [Working] 0% [Connecting to ftp.jp.debian.org (210.157.158.33)] 0% [Waiting for headers] 0% [Waiting for headers] Get:1 http://ftp.jp.debian.org sid/main libmagic1 4.04-1 [196kB]
+ 0% [1 libmagic1 2552/196kB 1%] 0% [1 libmagic1 2552/196kB 1%] 0% [1 libmagic1 8312/196kB 4%] 0% [1 libmagic1 19832/196kB 10%] 0% [1 libmagic1 19832/196kB 10%] 2% [1 libmagic1 42872/196kB 21%] 4% [1 libmagic1 84632/196kB 43%] 6% [1 libmagic1 135392/196kB 69%] 6% [1 libmagic1 142592/196kB 72%] 23.5kB/s 1m20s Get:2 http://ftp.jp.debian.org sid/main file 4.04-1 [24.2kB]
+ 9% [2 file 913/24.2kB 3%] 23.5kB/s 1m18s 10% [2 file 9553/24.2kB 39%] 23.5kB/s 1m18s Get:3 http://ftp.jp.debian.org sid/main debconf-utils 1.3.14 [36.3kB]
+ 10% [3 debconf-utils 847/36.3kB 2%] 23.5kB/s 1m17s Get:4 http://ftp.jp.debian.org sid/main html2text 1.3.1-2 [83.6kB]
+ 12% [4 html2text 497/83.6kB 0%] 23.5kB/s 1m16s 13% [4 html2text 10577/83.6kB 12%] 23.5kB/s 1m15s 16% [4 html2text 73937/83.6kB 88%] 23.5kB/s 1m12s Get:5 http://ftp.jp.debian.org sid/main gettext 0.12.1-6 [1268kB]
+ 16% [5 gettext 1526/1268kB 0%] 23.5kB/s 1m12s 19% [5 gettext 53366/1268kB 4%] 23.5kB/s 1m10s 21% [5 gettext 90806/1268kB 7%] 23.5kB/s 1m8s 22% [5 gettext 116726/1268kB 9%] 23.5kB/s 1m7s 25% [5 gettext 180086/1268kB 14%] 23.5kB/s 1m4s 27% [5 gettext 214646/1268kB 16%] 23.5kB/s 1m3s 28% [5 gettext 243446/1268kB 19%] 23.5kB/s 1m2s 30% [5 gettext 292406/1268kB 23%] 77.1kB/s 18s 32% [5 gettext 315446/1268kB 24%] 77.1kB/s 18s 34% [5 gettext 370166/1268kB 29%] 77.1kB/s 17s 36% [5 gettext 404726/1268kB 31%] 77.1kB/s 16s 37% [5 gettext 433526/1268kB 34%] 77.1kB/s 16s 40% [5 gettext 485366/1268kB 38%] 77.1kB/s 15s 41% [5 gettext 502646/1268kB 39%] 77.1kB/s 15s 44% [5 gettext 560246/1268kB 44%] 77.1kB/s 14s 45% [5 gettext 594806/1268kB 46%] 77.1kB/s 14s 47% [5 gettext 623606/1268kB 49%] 77.1kB/s 14s 49% [5 gettext 675446/1268kB 53%] 77.1kB/s 13s 50% [5 gettext 701366/1268kB 55%] 77.1kB/s 13s 53% [5 gettext 750326/1268kB 59%] 71.8kB/s 13s 55% [5 gettext 784886/1268kB 61%] 71.8kB/s 12s 56% [5 gettext 810806/1268kB 63%] 71.8kB/s 12s 58% [5 gettext 856886/1268kB 67%] 71.8kB/s 11s 59% [5 gettext 885686/1268kB 69%] 71.8kB/s 11s 62% [5 gettext 937526/1268kB 73%] 71.8kB/s 10s 63% [5 gettext 966326/1268kB 76%] 71.8kB/s 10s 65% [5 gettext 1000886/1268kB 78%] 71.8kB/s 9s 67% [5 gettext 1029686/1268kB 81%] 71.8kB/s 9s 68% [5 gettext 1064246/1268kB 83%] 71.8kB/s 8s 70% [5 gettext 1093046/1268kB 86%] 71.8kB/s 8s 71% [5 gettext 1127606/1268kB 88%] 71.8kB/s 8s 73% [5 gettext 1165046/1268kB 91%] 65.0kB/s 8s 75% [5 gettext 1196726/1268kB 94%] 65.0kB/s 7s 77% [5 gettext 1242806/1268kB 98%] 65.0kB/s 7s Get:6 http://ftp.jp.debian.org sid/main intltool-debian 0.27.2+20030930 [17.7kB]
+ 78% [6 intltool-debian 445/17.7kB 2%] 65.0kB/s 6s Get:7 http://ftp.jp.debian.org sid/main po-debconf 0.7.3 [57.3kB]
+ 79% [7 po-debconf 1098/57.3kB 1%] 65.0kB/s 6s 81% [7 po-debconf 31338/57.3kB 54%] 65.0kB/s 5s Get:8 http://ftp.jp.debian.org sid/main debhelper 4.1.74 [340kB]
+ 82% [8 debhelper 2542/340kB 0%] 65.0kB/s 5s 84% [8 debhelper 37102/340kB 10%] 65.0kB/s 4s 85% [8 debhelper 71662/340kB 21%] 65.0kB/s 4s 87% [8 debhelper 100462/340kB 29%] 65.0kB/s 4s 89% [8 debhelper 146542/340kB 43%] 65.0kB/s 3s 90% [8 debhelper 175342/340kB 51%] 65.0kB/s 2s 93% [8 debhelper 227182/340kB 66%] 65.0kB/s 2s 94% [8 debhelper 255982/340kB 75%] 69.1kB/s 1s 96% [8 debhelper 290542/340kB 85%] 69.1kB/s 1s 98% [8 debhelper 327982/340kB 96%] 69.1kB/s 0s Get:9 http://ftp.jp.debian.org sid/main libdshconfig1 0.20.8-1 [9656B]
+ 98% [9 libdshconfig1 403/9656B 4%] 69.1kB/s 0s Get:10 http://ftp.jp.debian.org sid/main libdshconfig1-dev 0.20.8-1 [11.3kB]
+ 99% [10 libdshconfig1-dev 503/11.3kB 4%] 69.1kB/s 0s 100% [Working] 69.1kB/s 0s Fetched 2044kB in 32s (62.0kB/s)
+Selecting previously deselected package libmagic1.
+(Reading database ... 9171 files and directories currently installed.)
+Unpacking libmagic1 (from .../libmagic1_4.04-1_i386.deb) ...
+Selecting previously deselected package file.
+Unpacking file (from .../archives/file_4.04-1_i386.deb) ...
+Selecting previously deselected package debconf-utils.
+Unpacking debconf-utils (from .../debconf-utils_1.3.14_all.deb) ...
+Selecting previously deselected package html2text.
+Unpacking html2text (from .../html2text_1.3.1-2_i386.deb) ...
+Selecting previously deselected package gettext.
+Unpacking gettext (from .../gettext_0.12.1-6_i386.deb) ...
+Selecting previously deselected package intltool-debian.
+Unpacking intltool-debian (from .../intltool-debian_0.27.2+20030930_all.deb) ...
+Selecting previously deselected package po-debconf.
+Unpacking po-debconf (from .../po-debconf_0.7.3_all.deb) ...
+Selecting previously deselected package debhelper.
+Unpacking debhelper (from .../debhelper_4.1.74_all.deb) ...
+Selecting previously deselected package libdshconfig1.
+Unpacking libdshconfig1 (from .../libdshconfig1_0.20.8-1_i386.deb) ...
+Selecting previously deselected package libdshconfig1-dev.
+Unpacking libdshconfig1-dev (from .../libdshconfig1-dev_0.20.8-1_i386.deb) ...
+Setting up libmagic1 (4.04-1) ...
+
+Setting up file (4.04-1) ...
+Setting up debconf-utils (1.3.14) ...
+
+Setting up html2text (1.3.1-2) ...
+
+Setting up gettext (0.12.1-6) ...
+
+Setting up intltool-debian (0.27.2+20030930) ...
+Setting up po-debconf (0.7.3) ...
+Setting up debhelper (4.1.74) ...
+Setting up libdshconfig1 (0.20.8-1) ...
+
+Setting up libdshconfig1-dev (0.20.8-1) ...
+ -> Finished parsing the build-deps
+ Reading Package Lists... 0% Reading Package Lists... 0% Reading Package Lists... 64% Reading Package Lists... Done
+ Building Dependency Tree... 0% Building Dependency Tree... 0% Building Dependency Tree... 36% Building Dependency Tree... 50% Building Dependency Tree... 50% Building Dependency Tree... Done
+The following NEW packages will be installed:
+ fakeroot
+0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
+Need to get 52.6kB of archives.
+After unpacking 193kB of additional disk space will be used.
+ 0% [Working] 0% [Connecting to ftp.jp.debian.org (210.157.158.33)] 0% [Waiting for headers] Get:1 http://ftp.jp.debian.org sid/main fakeroot 0.7.8 [52.6kB]
+ 2% [1 fakeroot 1114/52.6kB 2%] 4% [1 fakeroot 2554/52.6kB 4%] 15% [1 fakeroot 8314/52.6kB 15%] 37% [1 fakeroot 19834/52.6kB 37%] 76% [1 fakeroot 39994/52.6kB 76%] 95% [1 fakeroot 50074/52.6kB 95%] 100% [Working] Fetched 52.6kB in 3s (13.4kB/s)
+Selecting previously deselected package fakeroot.
+(Reading database ... 9671 files and directories currently installed.)
+Unpacking fakeroot (from .../fakeroot_0.7.8_i386.deb) ...
+Setting up fakeroot (0.7.8) ...
+Copying source file
+ -> copying [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild/dsh_0.25.0-1.dsc]
+ -> copying [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild/dsh_0.25.0.orig.tar.gz]
+ -> copying [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild/dsh_0.25.0-1.diff.gz]
+Extracting source
+su(pam_unix)[265]: session opened for user pbuilder by (uid=0)
+dpkg-source: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
+dpkg-source: extracting dsh in dsh-0.25.0
+ -> Building the package
+su(pam_unix)[281]: session opened for user pbuilder by (uid=0)
+dpkg-parsechangelog: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
+debian: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
+dpkg-buildpackage: source package is dsh
+dpkg-parsechangelog: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
+debian: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
+dpkg-buildpackage: source version is 0.25.0-1
+dpkg-parsechangelog: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
+debian: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
+dpkg-buildpackage: source maintainer is Junichi Uekawa <dancer@debian.org>
+dpkg-architecture: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
+dpkg-architecture: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
+dpkg-buildpackage: host architecture is i386
+dpkg-checkbuilddeps: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
+dpkg-architecture: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
+dpkg-architecture: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
+ fakeroot debian/rules clean
+dh_testdir
+dh_testroot
+rm -f build-stamp configure-stamp
+/usr/bin/make clean
+make[1]: Entering directory `/tmp/buildd/dsh-0.25.0'
+make[1]: *** No rule to make target `clean'. Stop.
+make[1]: Leaving directory `/tmp/buildd/dsh-0.25.0'
+make: [clean] Error 2 (ignored)
+/usr/bin/make distclean
+make[1]: Entering directory `/tmp/buildd/dsh-0.25.0'
+make[1]: *** No rule to make target `distclean'. Stop.
+make[1]: Leaving directory `/tmp/buildd/dsh-0.25.0'
+make: [clean] Error 2 (ignored)
+dh_clean
+ dpkg-source -b dsh-0.25.0
+dpkg-source: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
+dpkg-parsechangelog: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
+debian: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
+dpkg-source: building dsh using existing dsh_0.25.0.orig.tar.gz
+dpkg-source: building dsh in dsh_0.25.0-1.diff.gz
+dpkg-source: warning: file debian/compat has no final newline (either original or modified version)
+dpkg-source: warning: file dcp.sh has no final newline (either original or modified version)
+dpkg-source: building dsh in dsh_0.25.0-1.dsc
+ debian/rules build
+dh_testdir
+INSTALL_PROGRAM='install -p -o root -g root -m 755 -s' CFLAGS='-Wall -g -O2' \
+ ./configure --prefix=/usr --sysconfdir=/etc/dsh --mandir=/usr/share/man
+checking for a BSD-compatible install... /usr/bin/install -c
+checking whether build environment is sane... yes
+checking for gawk... no
+checking for mawk... mawk
+checking whether make sets $(MAKE)... yes
+checking whether to enable maintainer-specific portions of Makefiles... no
+checking for style of include used by make... GNU
+checking for gcc... gcc
+checking for C compiler default output... a.out
+checking whether the C compiler works... yes
+checking whether we are cross compiling... no
+checking for suffix of executables...
+checking for suffix of object files... o
+checking whether we are using the GNU C compiler... yes
+checking whether gcc accepts -g... yes
+checking for gcc option to accept ANSI C... none needed
+checking dependency style of gcc... gcc3
+checking for strerror in -lcposix... no
+checking for gcc... (cached) gcc
+checking whether we are using the GNU C compiler... (cached) yes
+checking whether gcc accepts -g... (cached) yes
+checking for gcc option to accept ANSI C... (cached) none needed
+checking dependency style of gcc... (cached) gcc3
+checking for gcc option to accept ANSI C... none needed
+checking whether make sets $(MAKE)... (cached) yes
+checking how to run the C preprocessor... gcc -E
+checking for egrep... grep -E
+checking for ANSI C header files... yes
+checking for sys/wait.h that is POSIX.1 compatible... yes
+checking build system type... i686-pc-linux-gnu
+checking host system type... i686-pc-linux-gnu
+checking for a sed that does not truncate output... /bin/sed
+checking for ld used by gcc... /usr/bin/ld
+checking if the linker (/usr/bin/ld) is GNU ld... yes
+checking for /usr/bin/ld option to reload object files... -r
+checking for BSD-compatible nm... /usr/bin/nm -B
+checking whether ln -s works... yes
+checking how to recognise dependent libraries... pass_all
+checking for sys/types.h... yes
+checking for sys/stat.h... yes
+checking for stdlib.h... yes
+checking for string.h... yes
+checking for memory.h... yes
+checking for strings.h... yes
+checking for inttypes.h... yes
+checking for stdint.h... yes
+checking for unistd.h... yes
+checking dlfcn.h usability... yes
+checking dlfcn.h presence... yes
+checking for dlfcn.h... yes
+checking for g++... g++
+checking whether we are using the GNU C++ compiler... yes
+checking whether g++ accepts -g... yes
+checking dependency style of g++... gcc3
+checking how to run the C++ preprocessor... g++ -E
+checking for g77... no
+checking for f77... no
+checking for xlf... no
+checking for frt... no
+checking for pgf77... no
+checking for fl32... no
+checking for af77... no
+checking for fort77... no
+checking for f90... no
+checking for xlf90... no
+checking for pgf90... no
+checking for epcf90... no
+checking for f95... no
+checking for fort... no
+checking for xlf95... no
+checking for lf95... no
+checking for g95... no
+checking whether we are using the GNU Fortran 77 compiler... no
+checking whether accepts -g... no
+checking the maximum length of command line arguments... 32768
+checking command to parse /usr/bin/nm -B output from gcc object... ok
+checking for objdir... .libs
+checking for ar... ar
+checking for ranlib... ranlib
+checking for strip... strip
+checking if gcc static flag works... yes
+checking if gcc supports -fno-rtti -fno-exceptions... no
+checking for gcc option to produce PIC... -fPIC
+checking if gcc PIC flag -fPIC works... yes
+checking if gcc supports -c -o file.o... yes
+checking whether the gcc linker (/usr/bin/ld) supports shared libraries... yes
+checking whether -lc should be explicitly linked in... no
+checking dynamic linker characteristics... GNU/Linux ld.so
+checking how to hardcode library paths into programs... immediate
+checking whether stripping libraries is possible... yes
+checking if libtool supports shared libraries... yes
+checking whether to build shared libraries... yes
+checking whether to build static libraries... yes
+configure: creating libtool
+appending configuration tag "CXX" to libtool
+checking for ld used by g++... /usr/bin/ld
+checking if the linker (/usr/bin/ld) is GNU ld... yes
+checking whether the g++ linker (/usr/bin/ld) supports shared libraries... yes
+checking for g++ option to produce PIC... -fPIC
+checking if g++ PIC flag -fPIC works... yes
+checking if g++ supports -c -o file.o... yes
+checking whether the g++ linker (/usr/bin/ld) supports shared libraries... yes
+checking dynamic linker characteristics... GNU/Linux ld.so
+checking how to hardcode library paths into programs... immediate
+checking whether stripping libraries is possible... yes
+appending configuration tag "F77" to libtool
+checking for an ANSI C-conforming const... yes
+checking for msgfmt... /usr/bin/msgfmt
+checking for gmsgfmt... /usr/bin/msgfmt
+checking for xgettext... /usr/bin/xgettext
+checking for msgmerge... /usr/bin/msgmerge
+checking for ld used by GCC... /usr/bin/ld
+checking if the linker (/usr/bin/ld) is GNU ld... yes
+checking for shared library run path origin... done
+checking whether NLS is requested... yes
+checking for GNU gettext in libc... yes
+checking for gettext... yes
+checking getopt.h usability... yes
+checking getopt.h presence... yes
+checking for getopt.h... yes
+checking fcntl.h usability... yes
+checking fcntl.h presence... yes
+checking for fcntl.h... yes
+checking libintl.h usability... yes
+checking libintl.h presence... yes
+checking for libintl.h... yes
+checking locale.h usability... yes
+checking locale.h presence... yes
+checking for locale.h... yes
+checking for stdlib.h... (cached) yes
+checking netdb.h usability... yes
+checking netdb.h presence... yes
+checking for netdb.h... yes
+checking for string.h... (cached) yes
+checking for unistd.h... (cached) yes
+checking netgroup.h usability... no
+checking netgroup.h presence... no
+checking for netgroup.h... no
+checking for libdshconfig.h ... yes
+checking for asprintf... yes
+checking for strdup... yes
+checking for getopt_long... yes
+checking for getline... yes
+checking for dup2... yes
+checking for setlocale... yes
+checking for strcasecmp... yes
+checking for strchr... yes
+checking for setnetgrent... yes
+checking for getnetgrent... yes
+checking for endnetgrent... yes
+checking for open_dshconfig in -ldshconfig... yes
+checking netdb.h has setnetgrent that returns void... no
+checking getopt with a GNU option reordering extention... yes, disabling
+configure: creating ./config.status
+config.status: creating po/Makefile.in
+config.status: creating m4/Makefile
+config.status: creating Makefile
+config.status: creating config.h
+config.status: executing depfiles commands
+config.status: executing default-1 commands
+config.status: creating po/POTFILES
+config.status: creating po/Makefile
+touch configure-stamp
+dh_testdir
+/usr/bin/make
+make[1]: Entering directory `/tmp/buildd/dsh-0.25.0'
+/usr/bin/make all-recursive
+make[2]: Entering directory `/tmp/buildd/dsh-0.25.0'
+Making all in m4
+make[3]: Entering directory `/tmp/buildd/dsh-0.25.0/m4'
+make[3]: Nothing to be done for `all'.
+make[3]: Leaving directory `/tmp/buildd/dsh-0.25.0/m4'
+Making all in po
+make[3]: Entering directory `/tmp/buildd/dsh-0.25.0/po'
+make[3]: Nothing to be done for `all'.
+make[3]: Leaving directory `/tmp/buildd/dsh-0.25.0/po'
+make[3]: Entering directory `/tmp/buildd/dsh-0.25.0'
+if gcc -DHAVE_CONFIG_H -I. -I. -I. -DDSHCONFDIR="\"/etc/dsh\"" -DDSH_COMMANDLINE="\"/usr/bin/dsh\"" -DLOCALEDIR="\"/usr/share/locale\"" -Wall -g -O2 -MT dsh-dsh.o -MD -MP -MF ".deps/dsh-dsh.Tpo" \
+ -c -o dsh-dsh.o `test -f 'dsh.c' || echo './'`dsh.c; \
+then mv -f ".deps/dsh-dsh.Tpo" ".deps/dsh-dsh.Po"; \
+else rm -f ".deps/dsh-dsh.Tpo"; exit 1; \
+fi
+if gcc -DHAVE_CONFIG_H -I. -I. -I. -DDSHCONFDIR="\"/etc/dsh\"" -DDSH_COMMANDLINE="\"/usr/bin/dsh\"" -DLOCALEDIR="\"/usr/share/locale\"" -Wall -g -O2 -MT dsh-linkedlist.o -MD -MP -MF ".deps/dsh-linkedlist.Tpo" \
+ -c -o dsh-linkedlist.o `test -f 'linkedlist.c' || echo './'`linkedlist.c; \
+then mv -f ".deps/dsh-linkedlist.Tpo" ".deps/dsh-linkedlist.Po"; \
+else rm -f ".deps/dsh-linkedlist.Tpo"; exit 1; \
+fi
+if gcc -DHAVE_CONFIG_H -I. -I. -I. -DDSHCONFDIR="\"/etc/dsh\"" -DDSH_COMMANDLINE="\"/usr/bin/dsh\"" -DLOCALEDIR="\"/usr/share/locale\"" -Wall -g -O2 -MT dsh-parameter.o -MD -MP -MF ".deps/dsh-parameter.Tpo" \
+ -c -o dsh-parameter.o `test -f 'parameter.c' || echo './'`parameter.c; \
+then mv -f ".deps/dsh-parameter.Tpo" ".deps/dsh-parameter.Po"; \
+else rm -f ".deps/dsh-parameter.Tpo"; exit 1; \
+fi
+/bin/sh ./libtool --mode=link gcc -Wall -g -O2 -o dsh dsh-dsh.o dsh-linkedlist.o dsh-parameter.o -ldshconfig
+mkdir .libs
+gcc -Wall -g -O2 -o dsh dsh-dsh.o dsh-linkedlist.o dsh-parameter.o /usr/lib/libdshconfig.so
+mkdir build-man
+sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.1 > build-man/dsh.1
+sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.conf.5 > build-man/dsh.conf.5
+make[3]: Leaving directory `/tmp/buildd/dsh-0.25.0'
+make[2]: Leaving directory `/tmp/buildd/dsh-0.25.0'
+make[1]: Leaving directory `/tmp/buildd/dsh-0.25.0'
+/usr/bin/make check
+make[1]: Entering directory `/tmp/buildd/dsh-0.25.0'
+Making check in m4
+make[2]: Entering directory `/tmp/buildd/dsh-0.25.0/m4'
+make[2]: Nothing to be done for `check'.
+make[2]: Leaving directory `/tmp/buildd/dsh-0.25.0/m4'
+Making check in po
+make[2]: Entering directory `/tmp/buildd/dsh-0.25.0/po'
+make[2]: Nothing to be done for `check'.
+make[2]: Leaving directory `/tmp/buildd/dsh-0.25.0/po'
+make[2]: Entering directory `/tmp/buildd/dsh-0.25.0'
+/usr/bin/make dsh
+make[3]: Entering directory `/tmp/buildd/dsh-0.25.0'
+make[3]: `dsh' is up to date.
+make[3]: Leaving directory `/tmp/buildd/dsh-0.25.0'
+/usr/bin/make check-TESTS
+make[3]: Entering directory `/tmp/buildd/dsh-0.25.0'
+PASS: tests/param-f.sh
+dsh: File ./tests/nonexistent.file could not be opened for read
+PASS: tests/param-f-fail.sh
+PASS: tests/param-f-with-space.sh
+PASS: tests/param-m.sh
+test to check that unknown parameter checking is right.
+./dsh: unrecognized option `--unknown-parameter'
+./dsh: invalid option -- u
+PASS: tests/param-unknown.sh
+dsh: dsh.c:573: do_shell: Assertion `((((__extension__ ({ union { __typeof(childstatus) __in; int __i; } __u; __u.__in = (childstatus); __u.__i; }))) & 0x7f) == 0)' failed.
+PASS: tests/param-i.sh
+Check that cn4 option is working.
+PASS: tests/param-cn4.sh
+test to check that -b0 is rejected, and -b1 is accepted
+Buffer size needs to be greater than 1
+Buffer size needs to be greater than 1
+b
+a
+PASS: tests/param-b-0.sh
+dsh: Failed executing ./invalid-exec-file with llexec call
+dsh: Failed executing ./invalid-exec-file with llexec call
+dsh: Failed executing ./invalid-exec-file with llexec call
+dsh: Failed executing ./invalid-exec-file with llexec call
+success
+dsh: Failed executing ./invalid-exec-file with llexec call
+dsh: Failed executing ./invalid-exec-file with llexec call
+dsh: Failed executing ./invalid-exec-file with llexec call
+dsh: Failed executing ./invalid-exec-file with llexec call
+success
+success
+success
+success
+success
+d: dsh: Failed executing ./invalid-exec-file with llexec call
+c: dsh: Failed executing ./invalid-exec-file with llexec call
+b: dsh: Failed executing ./invalid-exec-file with llexec call
+a: dsh: Failed executing ./invalid-exec-file with llexec call
+success
+dsh: Failed executing ./invalid-exec-file with llexec call
+dsh: Failed executing ./invalid-exec-file with llexec call
+dsh: Failed executing ./invalid-exec-file with llexec call
+dsh: Failed executing ./invalid-exec-file with llexec call
+success
+PASS: tests/param-r-invalid.sh
+2: 2
+1: 1
+dsh: fork limit and wait shell cannot be specified at the same time
+PASS: tests/param-F-invalid.sh
+Fri Oct 3 14:32:30 UTC 2003
+Using sleep as the remote shell
+Show machine names on output
+Adding machine 5,4,3,2,1 to list
+Setting forklimit to 3 and wait_shell to 0
+DUMPing parameters passed to llexec
+[1]
+DUMPing parameters passed to llexec
+[2]
+... Waiting for process to end with waitpid
+DUMPing parameters passed to llexec
+[3]
+DUMPing parameters passed to llexec
+[4]
+... Waiting for process to end with waitpid
+DUMPing parameters passed to llexec
+[5]
+--- Terminated running
+Fri Oct 3 14:32:37 UTC 2003
+PASS: tests/param-F-forklimit.sh
+PASS: tests/param-gnu-getopt.sh
+PASS: tests/news-okay.sh
+l w
+PASS: tests/test-bufferoverflow.sh
+===================
+All 14 tests passed
+===================
+make[3]: Leaving directory `/tmp/buildd/dsh-0.25.0'
+make[2]: Leaving directory `/tmp/buildd/dsh-0.25.0'
+make[1]: Leaving directory `/tmp/buildd/dsh-0.25.0'
+touch build-stamp
+ fakeroot debian/rules binary
+dh_testdir
+dh_testroot
+dh_clean -k
+dh_installdirs
+# Add here commands to install the package into debian/dsh.
+/usr/bin/make install DESTDIR=/tmp/buildd/dsh-0.25.0/debian/dsh
+make[1]: Entering directory `/tmp/buildd/dsh-0.25.0'
+Making install in m4
+make[2]: Entering directory `/tmp/buildd/dsh-0.25.0/m4'
+make[3]: Entering directory `/tmp/buildd/dsh-0.25.0/m4'
+make[3]: Nothing to be done for `install-exec-am'.
+make[3]: Nothing to be done for `install-data-am'.
+make[3]: Leaving directory `/tmp/buildd/dsh-0.25.0/m4'
+make[2]: Leaving directory `/tmp/buildd/dsh-0.25.0/m4'
+Making install in po
+make[2]: Entering directory `/tmp/buildd/dsh-0.25.0/po'
+/bin/sh `case "./mkinstalldirs" in /*) echo "./mkinstalldirs" ;; *) echo ".././mkinstalldirs" ;; esac` /tmp/buildd/dsh-0.25.0/debian/dsh/usr/share
+mkdir -p -- /tmp/buildd/dsh-0.25.0/debian/dsh/usr/share
+mkdir -p -- /tmp/buildd/dsh-0.25.0/debian/dsh/usr/share/locale/ja/LC_MESSAGES
+installing ja.gmo as /tmp/buildd/dsh-0.25.0/debian/dsh/usr/share/locale/ja/LC_MESSAGES/dsh.mo
+if test "dsh" = "gettext"; then \
+ /bin/sh `case "./mkinstalldirs" in /*) echo "./mkinstalldirs" ;; *) echo ".././mkinstalldirs" ;; esac` /tmp/buildd/dsh-0.25.0/debian/dsh/usr/share/gettext/po; \
+ for file in Makefile.in.in Makevars remove-potcdate.sin ; do \
+ /usr/bin/install -c -m 644 ./$file \
+ /tmp/buildd/dsh-0.25.0/debian/dsh/usr/share/gettext/po/$file; \
+ done; \
+else \
+ : ; \
+fi
+make[2]: Leaving directory `/tmp/buildd/dsh-0.25.0/po'
+make[2]: Entering directory `/tmp/buildd/dsh-0.25.0'
+make[3]: Entering directory `/tmp/buildd/dsh-0.25.0'
+/bin/sh ./mkinstalldirs /tmp/buildd/dsh-0.25.0/debian/dsh/usr/bin
+ /bin/sh ./libtool --mode=install install -p -o root -g root -m 755 -s dsh /tmp/buildd/dsh-0.25.0/debian/dsh/usr/bin/dsh
+install -p -o root -g root -m 755 -s dsh /tmp/buildd/dsh-0.25.0/debian/dsh/usr/bin/dsh
+/bin/sh ./mkinstalldirs /tmp/buildd/dsh-0.25.0/debian/dsh/etc/dsh
+ /usr/bin/install -c -m 644 dsh.conf /tmp/buildd/dsh-0.25.0/debian/dsh/etc/dsh/dsh.conf
+for LANGS in ja ; do \
+ mkdir -p /tmp/buildd/dsh-0.25.0/debian/dsh/usr/share/man/$LANGS/man1 ;\
+ mkdir -p /tmp/buildd/dsh-0.25.0/debian/dsh/usr/share/man/$LANGS/man5 ;\
+ sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.$LANGS.1 \
+ > /tmp/buildd/dsh-0.25.0/debian/dsh/usr/share/man/$LANGS/man1/dsh.1 ; \
+ sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.conf.$LANGS.5 \
+ > /tmp/buildd/dsh-0.25.0/debian/dsh/usr/share/man/$LANGS/man5/dsh.conf.5 ; \
+done
+/bin/sh ./mkinstalldirs /tmp/buildd/dsh-0.25.0/debian/dsh/usr/share/man/man1
+mkdir -p -- /tmp/buildd/dsh-0.25.0/debian/dsh/usr/share/man/man1
+ /usr/bin/install -c -m 644 ./build-man/dsh.1 /tmp/buildd/dsh-0.25.0/debian/dsh/usr/share/man/man1/dsh.1
+/bin/sh ./mkinstalldirs /tmp/buildd/dsh-0.25.0/debian/dsh/usr/share/man/man5
+mkdir -p -- /tmp/buildd/dsh-0.25.0/debian/dsh/usr/share/man/man5
+ /usr/bin/install -c -m 644 ./build-man/dsh.conf.5 /tmp/buildd/dsh-0.25.0/debian/dsh/usr/share/man/man5/dsh.conf.5
+make[3]: Leaving directory `/tmp/buildd/dsh-0.25.0'
+make[2]: Leaving directory `/tmp/buildd/dsh-0.25.0'
+make[1]: Leaving directory `/tmp/buildd/dsh-0.25.0'
+cp /tmp/buildd/dsh-0.25.0/debian/machines.list /tmp/buildd/dsh-0.25.0/debian/dsh/etc/dsh/machines.list
+cp /tmp/buildd/dsh-0.25.0/dsh.conf /tmp/buildd/dsh-0.25.0/debian/dsh/etc/dsh/dsh.conf
+ln -s ../machines.list /tmp/buildd/dsh-0.25.0/debian/dsh/etc/dsh/group/all
+install -d /tmp/buildd/dsh-0.25.0/debian/dsh/usr/lib/update-cluster
+install -m 755 /tmp/buildd/dsh-0.25.0/debian/dsh.updatelist /tmp/buildd/dsh-0.25.0/debian/dsh/usr/lib/update-cluster/
+dh_testdir
+dh_testroot
+dh_installdocs NEWS
+dh_installexamples
+dh_installmenu
+dh_installman
+dh_installchangelogs ChangeLog
+dpkg-parsechangelog: warning: no utmp entry available and LOGNAME not defined; using uid of process (0)
+debian: warning: no utmp entry available and LOGNAME not defined; using uid of process (0)
+dh_link
+dh_strip
+dh_shlibdeps
+dpkg-shlibdeps: warning: no utmp entry available and LOGNAME not defined; using uid of process (0)
+dh_compress
+dh_fixperms
+dh_installdeb
+dh_gencontrol
+dpkg-gencontrol: warning: no utmp entry available and LOGNAME not defined; using uid of process (0)
+dpkg-architecture: warning: no utmp entry available and LOGNAME not defined; using uid of process (0)
+dpkg-parsechangelog: warning: no utmp entry available and LOGNAME not defined; using uid of process (0)
+debian: warning: no utmp entry available and LOGNAME not defined; using uid of process (0)
+dpkg-architecture: warning: no utmp entry available and LOGNAME not defined; using uid of process (0)
+dh_md5sums
+dh_builddeb
+dpkg-deb: building package `dsh' in `../dsh_0.25.0-1_i386.deb'.
+ dpkg-genchanges
+dpkg-genchanges: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
+dpkg-architecture: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
+dpkg-parsechangelog: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
+debian: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
+dpkg-genchanges: including full source code in upload
+dpkg-buildpackage: full upload (original source is included)
+ -> Terminate timeout process
-> ignoring umount of proc filesystem
-> ignoring umount of dev/pts filesystem
+Current time: Fri Oct 3 23:32:52 JST 2003
+pbuilder-time-stamp: 1065191572
+/usr/lib/pbuilder/pbuilder-buildpackage: line 144: 277 Terminated ( : Timeout process; sleep "${TIMEOUT_TIME}"; echo " -> Terminating build process due to timeout "; kill ${BUILD_PID} || true )
Kernel panic: Attempted to kill init!
<6>Stopping all CPUs...done
-tracing thread pid = 6860
+tracing thread pid = 16813
- -> Exit code 2
+ -> Successful exit from user-mode linux
diff --git a/testsuite/pbuilder-user-mode-linux-create-sarge.log b/testsuite/pbuilder-user-mode-linux-create-sarge.log
index 67b341d..a1e8c49 100644
--- a/testsuite/pbuilder-user-mode-linux-create-sarge.log
+++ b/testsuite/pbuilder-user-mode-linux-create-sarge.log
@@ -6,7 +6,7 @@ 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... 1581.78 BogoMIPS
+Calibrating delay loop... 1577.37 BogoMIPS
Memory: 28964k available
Dentry cache hash table entries: 4096 (order: 3, 32768 bytes)
Inode cache hash table entries: 2048 (order: 2, 16384 bytes)
@@ -35,7 +35,7 @@ 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/RmHukD/mconsole
+mconsole (version 2) initialized on /home/dancer/.uml/Lt2zEf/mconsole
unable to open root_fs for validation
Partition check:
ubdb: unknown partition table
@@ -168,1063 +168,4 @@ I: Validating /tmp/target/var/cache/apt/archives/klogd_1.4.1-10_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-7_i386.deb
-I: Validating /tmp/target/var/cache/apt/archives/libc6_2.3.2-7_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-39_i386.deb
-I: Validating /tmp/target/var/cache/apt/archives/libconsole_1%3a0.2.3dbs-39_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/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/o/openldap2/libldap2_2.1.22-1_i386.deb
-I: Validating /tmp/target/var/cache/apt/archives/libldap2_2.1.22-1_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-1_i386.deb
-I: Validating /tmp/target/var/cache/apt/archives/libncurses5_5.3.20030719-1_i386.deb
-I: Retrieving http://ftp.jp.debian.org/debian/pool/main/n/newt/libnewt0.51_0.51.4-14_i386.deb
-I: Validating /tmp/target/var/cache/apt/archives/libnewt0.51_0.51.4-14_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.12-1_i386.deb
-I: Validating /tmp/target/var/cache/apt/archives/libsasl2_2.1.12-1_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-1_i386.deb
-I: Validating /tmp/target/var/cache/apt/archives/lilo_1%3a22.5.7.2-1_i386.deb
-I: Retrieving http://ftp.jp.debian.org/debian/pool/main/s/shadow/login_4.0.3-8_i386.deb
-I: Validating /tmp/target/var/cache/apt/archives/login_1%3a4.0.3-8_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-2_all.deb
-I: Validating /tmp/target/var/cache/apt/archives/manpages_1.60-2_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.21-3_i386.deb
-I: Validating /tmp/target/var/cache/apt/archives/modutils_2.4.21-3_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-1_all.deb
-I: Validating /tmp/target/var/cache/apt/archives/ncurses-base_5.3.20030719-1_all.deb
-I: Retrieving http://ftp.jp.debian.org/debian/pool/main/n/ncurses/ncurses-bin_5.3.20030719-1_i386.deb
-I: Validating /tmp/target/var/cache/apt/archives/ncurses-bin_5.3.20030719-1_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-8_i386.deb
-I: Validating /tmp/target/var/cache/apt/archives/passwd_1%3a4.0.3-8_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-18_i386.deb
-I: Validating /tmp/target/var/cache/apt/archives/perl-base_5.8.0-18_i386.deb
-I: Retrieving http://ftp.jp.debian.org/debian/pool/main/p/ppp/ppp_2.4.1.uus2-4_i386.deb
-I: Validating /tmp/target/var/cache/apt/archives/ppp_2.4.1.uus2-4_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_0.9.10.10_all.deb
-I: Validating /tmp/target/var/cache/apt/archives/pppoeconf_0.9.10.10_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-10_i386.deb
-I: Validating /tmp/target/var/cache/apt/archives/sysklogd_1.4.1-10_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-14_i386.deb
-I: Validating /tmp/target/var/cache/apt/archives/whiptail_0.51.4-14_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-8.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-5_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.10_i386.deb...
-I: Extracting /var/cache/apt/archives/dselect_1.10.10_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/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-7_i386.deb...
-I: Extracting /var/cache/apt/archives/libdb1-compat_2.1.3-7_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-1_i386.deb...
-I: Extracting /var/cache/apt/archives/libnewt0.51_0.51.4-14_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/login_1%3a4.0.3-8_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.21-3_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-1_all.deb...
-I: Extracting /var/cache/apt/archives/ncurses-bin_5.3.20030719-1_i386.deb...
-I: Extracting /var/cache/apt/archives/passwd_1%3a4.0.3-8_i386.deb...
-I: Extracting /var/cache/apt/archives/perl-base_5.8.0-18_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-14_i386.deb...
-I: Extracting /var/cache/apt/archives/libgcc1_1%3a3.3.2-0pre4_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/libstdc++5_1%3a3.3.2-0pre4_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.10_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.10_i386.deb containing dpkg, pre-dependency problem:
- dpkg pre-depends on libc6 (>= 2.3.1-1)
-dpkg: warning - ignoring pre-dependency problem !
-(Reading database ... 84 files and directories currently installed.)
-Preparing to replace dpkg 1.10.10 (using .../archives/dpkg_1.10.10_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.1-1); however:
- Package libc6 is not installed.
-Setting up dpkg (1.10.10) ...
-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 ... 219 files and directories currently installed.)
-Unpacking libc6 (from .../libc6_2.3.2-7_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-7) ...
-Current default timezone: 'UTC'.
-Local time is now: Fri Oct 3 00:07:30 UTC 2003.
-Universal Time is now: Fri Oct 3 00:07:30 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 ... 2175 files and directories currently installed.)
-Unpacking perl-base (from .../perl-base_5.8.0-18_i386.deb) ...
-Setting up perl-base (5.8.0-18) ...
-Selecting previously deselected package mawk.
-(Reading database ... 2293 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 ... 2312 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 ... 2447 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-8.1_i386.deb containing bash, pre-dependency problem:
- bash pre-depends on libncurses5 (>= 5.3.20021109-1)
-dpkg: warning - ignoring pre-dependency problem !
-Unpacking bash (from .../bash_2.05b-8.1_i386.deb) ...
-Selecting previously deselected package bsdutils.
-Unpacking bsdutils (from .../bsdutils_1%3a2.12-3_i386.deb) ...
-Selecting previously deselected package coreutils.
-Unpacking coreutils (from .../coreutils_5.0-5_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.10_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.10 (using .../archives/dpkg_1.10.10_i386.deb) ...
-Unpacking replacement dpkg ...
-Selecting previously deselected package dselect.
-Unpacking dselect (from .../dselect_1.10.10_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 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-7 (using .../libc6_2.3.2-7_i386.deb) ...
-Unpacking replacement libc6 ...
-Selecting previously deselected package libdb1-compat.
-Unpacking libdb1-compat (from .../libdb1-compat_2.1.3-7_i386.deb) ...
-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-1_i386.deb) ...
-Selecting previously deselected package libnewt0.51.
-Unpacking libnewt0.51 (from .../libnewt0.51_0.51.4-14_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 login.
-dpkg: regarding .../login_1%3a4.0.3-8_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 !
-Unpacking login (from .../login_1%3a4.0.3-8_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.21-3_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-1_all.deb) ...
-Selecting previously deselected package ncurses-bin.
-dpkg: regarding .../ncurses-bin_5.3.20030719-1_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-1_i386.deb) ...
-Selecting previously deselected package passwd.
-Unpacking passwd (from .../passwd_1%3a4.0.3-8_i386.deb) ...
-Preparing to replace perl-base 5.8.0-18 (using .../perl-base_5.8.0-18_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-14_i386.deb) ...
-Selecting previously deselected package libgcc1.
-Unpacking libgcc1 (from .../libgcc1_1%3a3.3.2-0pre4_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 libstdc++5.
-Unpacking libstdc++5 (from .../libstdc++5_1%3a3.3.2-0pre4_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-1) ...
-
-Setting up gcc-3.2-base (3.2.3-8) ...
-Setting up gcc-3.3-base (3.3.2-0pre4) ...
-Setting up libpam-runtime (0.76-14) ...
-
-Setting up sysv-rc (2.85-7) ...
-
-Setting up libc6 (2.3.2-7) ...
-Current default timezone: 'UTC'.
-Local time is now: Fri Oct 3 00:09:45 UTC 2003.
-Universal Time is now: Fri Oct 3 00:09:45 UTC 2003.
-Run 'tzconfig' if you wish to change it.
-
-Setting up tar (1.13.25-6) ...
-
-Setting up slang1a-utf8 (1.4.9-1) ...
-
-Setting up e2fslibs (1.34+1.35-WIP-2003.08.21-3) ...
-
-Setting up libpam0g (0.76-14) ...
-
-Setting up findutils (4.1.20-1) ...
-
-Setting up slang1 (1.4.9-1) ...
-
-Setting up grep (2.5.1-6) ...
-
-Setting up mount (2.12-3) ...
-
-Setting up libgcc1 (3.3.2-0pre4) ...
-
-Setting up perl-base (5.8.0-18) ...
-Setting up hostname (2.10) ...
-Setting up libstdc++5 (3.3.2-0pre4) ...
-
-Setting up libdb1-compat (2.1.3-7) ...
-
-Setting up libblkid1 (1.34+1.35-WIP-2003.08.21-3) ...
-
-Setting up libncurses5 (5.3.20030719-1) ...
-
-Setting up libdb2 (2.7.7.0-8) ...
-
-Setting up libdb3 (3.2.9-19) ...
-
-Setting up mawk (1.3.3-11) ...
-
-Setting up libreadline4 (4.3-5) ...
-
-Setting up diff (2.8.1-2) ...
-
-Setting up libcap1 (1.10-12) ...
-
-Setting up libnewt0.51 (0.51.4-14) ...
-
-Setting up libpopt0 (1.7-2) ...
-
-Setting up mbr (1.1.5-1) ...
-
-Setting up procps (3.1.12-1) ...
-
-Setting up libstdc++2.10-glibc2.2 (2.95.4-17) ...
-
-Setting up coreutils (5.0-5) ...
-
-Setting up libcomerr2 (1.34+1.35-WIP-2003.08.21-3) ...
-
-Setting up bsdutils (2.12-3) ...
-
-Setting up liblocale-gettext-perl (1.01-17) ...
-Setting up sed (4.0.7-1) ...
-
-Setting up base-passwd (3.5.4) ...
-
-Setting up libuuid1 (1.34+1.35-WIP-2003.08.21-3) ...
-
-Setting up libpam-modules (0.76-14) ...
-
-Setting up makedev (2.3.1-63) ...
-
-Setting up ncurses-bin (5.3.20030719-1) ...
-
-Setting up libss2 (1.34+1.35-WIP-2003.08.21-3) ...
-
-Setting up base-files (3.0.10) ...
-
-Setting up libtext-charwidth-perl (0.04-1) ...
-Setting up whiptail (0.51.4-14) ...
-Setting up libtext-wrapi18n-perl (0.06-1) ...
-Setting up e2fsprogs (1.34+1.35-WIP-2003.08.21-3) ...
-Setting up dselect (1.10.10) ...
-Setting up login (4.0.3-8) ...
-
-Setting up bash (2.05b-8.1) ...
-
-Setting up debianutils (2.5.5) ...
-
-Setting up passwd (4.0.3-8) ...
-
-Setting up gzip (1.3.5-7) ...
-
-Setting up dpkg (1.10.10) ...
-
-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) ...
-
-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 debconf (1.3.14) ...
-
-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.21-3) ...
-
-I: Installing base packages...
-Selecting previously deselected package adduser.
-(Reading database ... 4207 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_5.20030320-1_i386.deb) ...
-Selecting previously deselected package console-common.
-Unpacking console-common (from .../console-common_0.7.25_all.deb) ...
-Selecting previously deselected package console-tools.
-Unpacking console-tools (from .../console-tools_1%3a0.2.3dbs-39_i386.deb) ...
-Selecting previously deselected package libconsole.
-Unpacking libconsole (from .../libconsole_1%3a0.2.3dbs-39_i386.deb) ...
-Selecting previously deselected package console-data.
-Unpacking console-data (from .../console-data_2002.12.04dbs-16_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-74_i386.deb) ...
-Selecting previously deselected package ed.
-Unpacking ed (from .../archives/ed_0.2-20_i386.deb) ...
-Selecting previously deselected package exim.
-Unpacking exim (from .../archives/exim_3.36-8_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-10_i386.deb) ...
-Selecting previously deselected package libident.
-Unpacking libident (from .../libident_0.22-2.2_i386.deb) ...
-Selecting previously deselected package libldap2.
-Unpacking libldap2 (from .../libldap2_2.1.22-1_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.12-1_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 manpages.
-Unpacking manpages (from .../manpages_1.60-2_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.1.uus2-4_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 .../pppoeconf_0.9.10.10_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-10_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 libtext-iconv-perl.
-Unpacking libtext-iconv-perl (from .../libtext-iconv-perl_1.2-2_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-1_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 telnet (0.17-20) ...
-
-Setting up libwrap0 (7.6-ipv6.1-3) ...
-
-Setting up pciutils (2.1.11-2) ...
-
-Setting up ipchains (1.3.10-15) ...
-
-Setting up adduser (3.51) ...
-
-Setting up lilo (22.5.7.2-1) ...
-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 libgcrypt1 (1.1.12-3) ...
-
-Setting up libpcre3 (4.3-3) ...
-
-Setting up iptables (1.2.8-4) ...
-
-Setting up libssl0.9.7 (0.9.7b-2) ...
-
-Setting up psmisc (21.3-1) ...
-
-Setting up console-common (0.7.25) ...
-Looking for keymap to install:
-NONE
-Setting up cron (3.0pl1-74) ...
-Starting periodic command scheduler: cron
-Warning: Fake start-stop-daemon called, doing nothing
-.
-
-Setting up wget (1.8.2-11) ...
-
-Setting up liblockfile1 (1.05) ...
-
-Setting up libident (0.22-2.2) ...
-
-Setting up libtasn1-0 (0.1.2-1) ...
-
-Setting up apt (0.5.14) ...
-
-Setting up iputils-ping (20020927-1) ...
-Setting up manpages (1.60-2) ...
-Setting up libsasl2 (2.1.12-1) ...
-
-Setting up zlib1g (1.1.4-15) ...
-
-Setting up net-tools (1.60-8) ...
-Setting up libconsole (0.2.3dbs-39) ...
-
-Setting up modconf (0.2.44) ...
-
-Setting up gettext-base (0.12.1-6) ...
-
-Setting up syslinux (2.04-1) ...
-Setting up console-tools (0.2.3dbs-39) ...
-fgconsole: VT_GETSTATE: Invalid argument
-
-Setting up cpio (2.5-1.1) ...
-
-Setting up nano (1.2.2-1) ...
-
-Setting up tasksel (1.34) ...
-
-Setting up libtext-iconv-perl (1.2-2) ...
-Setting up liblzo1 (1.08-1) ...
-
-Setting up bsdmainutils (5.20030320-1) ...
-
-dpkg: dependency problems prevent configuration of man-db:
- man-db depends on libgdbm3; however:
- Package libgdbm3 is not installed.
-dpkg: error processing man-db (--configure):
- dependency problems - leaving unconfigured
-Setting up libpcap0.7 (0.7.2-1) ...
-
-Setting up ed (0.2-20) ...
-
-Setting up groff-base (1.18.1-11) ...
-
-Setting up tcpd (7.6-ipv6.1-3) ...
-
-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 libopencdk4 (0.4.2-3) ...
-
-Setting up logrotate (3.6.5-2) ...
-Setting up console-data (2002.12.04dbs-16) ...
-Looking for keymap to install:
-mac-usb-be
-dpkg: error processing console-data (--configure):
- subprocess post-installation script returned error exit status 1
-Setting up apt-utils (0.5.14) ...
-
-Setting up info (4.6-1) ...
-
-Setting up netkit-inetd (0.10-9) ...
-Starting internet superserver: inetd
-Warning: Fake start-stop-daemon called, doing nothing
-.
-
-Setting up nvi (1.79-21) ...
-
-dpkg: dependency problems prevent configuration of base-config:
- base-config depends on console-data (>= 2002.12.04dbs-16); however:
- Package console-data is not configured yet.
-dpkg: error processing base-config (--configure):
- dependency problems - leaving unconfigured
-Setting up ifupdown (0.6.4-4.6) ...
-
-Setting up libgnutls7 (0.8.9-2) ...
-
-Setting up libldap2 (2.1.22-1) ...
-
-Setting up netbase (4.13) ...
-
-Setting up exim (3.36-8) ...
-
-Setting up ppp (2.4.1.uus2-4) ...
-
-Setting up pppoe (3.5-3) ...
-Setting up pppconfig (2.2.0) ...
-
-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 pppoeconf (0.9.10.10) ...
-
-Setting up sysklogd (1.4.1-10) ...
-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 klogd (1.4.1-10) ...
-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
-.
-
-Errors were encountered while processing:
- man-db
- console-data
- base-config
-W: Failure while configuring base packages. This will be attempted 5 times.
-dpkg: dependency problems prevent configuration of man-db:
- man-db depends on libgdbm3; however:
- Package libgdbm3 is not installed.
-dpkg: error processing man-db (--configure):
- dependency problems - leaving unconfigured
-Setting up console-data (2002.12.04dbs-16) ...
-Looking for keymap to install:
-mac-usb-be
-dpkg: error processing console-data (--configure):
- subprocess post-installation script returned error exit status 1
-dpkg: dependency problems prevent configuration of base-config:
- base-config depends on console-data (>= 2002.12.04dbs-16); however:
- Package console-data is not configured yet.
-dpkg: error processing base-config (--configure):
- dependency problems - leaving unconfigured
-Errors were encountered while processing:
- man-db
- console-data
- base-config
-W: Failure while configuring base packages. This will be attempted 5 times.
-dpkg: dependency problems prevent configuration of man-db:
- man-db depends on libgdbm3; however:
- Package libgdbm3 is not installed.
-dpkg: error processing man-db (--configure):
- dependency problems - leaving unconfigured
-Setting up console-data (2002.12.04dbs-16) ...
-Looking for keymap to install:
-mac-usb-be
-dpkg: error processing console-data (--configure):
- subprocess post-installation script returned error exit status 1
-dpkg: dependency problems prevent configuration of base-config:
- base-config depends on console-data (>= 2002.12.04dbs-16); however:
- Package console-data is not configured yet.
-dpkg: error processing base-config (--configure):
- dependency problems - leaving unconfigured
-Errors were encountered while processing:
- man-db
- console-data
- base-config
-W: Failure while configuring base packages. This will be attempted 5 times.
-dpkg: dependency problems prevent configuration of man-db:
- man-db depends on libgdbm3; however:
- Package libgdbm3 is not installed.
-dpkg: error processing man-db (--configure):
- dependency problems - leaving unconfigured
-Setting up console-data (2002.12.04dbs-16) ...
-Looking for keymap to install:
-mac-usb-be
-dpkg: error processing console-data (--configure):
- subprocess post-installation script returned error exit status 1
-dpkg: dependency problems prevent configuration of base-config:
- base-config depends on console-data (>= 2002.12.04dbs-16); however:
- Package console-data is not configured yet.
-dpkg: error processing base-config (--configure):
- dependency problems - leaving unconfigured
-Errors were encountered while processing:
- man-db
- console-data
- base-config
-W: Failure while configuring base packages. This will be attempted 5 times.
-dpkg: dependency problems prevent configuration of man-db:
- man-db depends on libgdbm3; however:
- Package libgdbm3 is not installed.
-dpkg: error processing man-db (--configure):
- dependency problems - leaving unconfigured
-Setting up console-data (2002.12.04dbs-16) ...
-Looking for keymap to install:
-mac-usb-be
-dpkg: error processing console-data (--configure):
- subprocess post-installation script returned error exit status 1
-dpkg: dependency problems prevent configuration of base-config:
- base-config depends on console-data (>= 2002.12.04dbs-16); however:
- Package console-data is not configured yet.
-dpkg: error processing base-config (--configure):
- dependency problems - leaving unconfigured
-Errors were encountered while processing:
- man-db
- console-data
- base-config
-W: Failure while configuring base packages. This will be attempted 5 times.
-Traceback (most recent call last):
- File "/usr/lib/rootstrap/builder", line 66, in ?
- dispatch(module, modulevars)
- File "/usr/lib/rootstrap/builder", line 44, in dispatch
- raise "rootstrap: Module '%s' failed, status: %d" % (module,status)
-rootstrap: Module 'debian' failed, status: 1
-Kernel panic: Attempted to kill init!
- <6>Stopping all CPUs...done
-tracing thread pid = 7311
-
-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/filebJYZ4g 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/filebJYZ4g rw
-Calibrating delay loop... 1434.01 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/09sVBu/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
-EXT2-fs warning: mounting unchecked fs, running e2fsck is recommended
-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 sarge
- -> copying local configuration
- -> mounting /proc filesystem
- -> mounting /dev/pts filesystem
- -> installing dummy policy-rc.d
-Refreshing the base.tgz
- -> upgrading packages
- 0% [Working] Err http://debootstrap.invalid sarge/main Packages
- Could not resolve 'debootstrap.invalid'
- 0% [Connecting to debootstrap.invalid] Err http://debootstrap.invalid sarge/main Release
- Could not resolve 'debootstrap.invalid'
- 0% [Working] Failed to fetch http://debootstrap.invalid/dists/sarge/main/binary-i386/Packages.gz Could not resolve 'debootstrap.invalid'
-Failed to fetch http://debootstrap.invalid/dists/sarge/main/binary-i386/Release Could not resolve 'debootstrap.invalid'
- Reading Package Lists... 0% Reading Package Lists... 0% Reading Package Lists... 1% Reading Package Lists... 30% Reading Package Lists... 55% Reading Package Lists... 79% Reading Package Lists... 99% Reading Package Lists... 99% Reading Package Lists... Done
-E: Some index files failed to download, they have been ignored, or old ones used instead.
- -> Aborting with an error
- -> 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 = 17943
-
- -> Exit code 100
+tracing thread pid = 2966
diff --git a/testsuite/pbuilder-user-mode-linux-create-sid.log b/testsuite/pbuilder-user-mode-linux-create-sid.log
index 5bafd73..63a22fa 100644
--- a/testsuite/pbuilder-user-mode-linux-create-sid.log
+++ b/testsuite/pbuilder-user-mode-linux-create-sid.log
@@ -6,7 +6,7 @@ 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... 1046.89 BogoMIPS
+Calibrating delay loop... 1284.82 BogoMIPS
Memory: 28964k available
Dentry cache hash table entries: 4096 (order: 3, 32768 bytes)
Inode cache hash table entries: 2048 (order: 2, 16384 bytes)
@@ -35,7 +35,7 @@ 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/ks7Nf6/mconsole
+mconsole (version 2) initialized on /home/dancer/.uml/KbtniP/mconsole
unable to open root_fs for validation
Partition check:
ubdb: unknown partition table
@@ -91,8 +91,8 @@ I: Retrieving http://ftp.jp.debian.org/debian/pool/main/a/at/at_3.1.8-11_i386.de
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.73_all.deb
I: Validating /tmp/target/var/cache/apt/archives/base-config_1.73_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-files/base-files_3.0.11_i386.deb
+I: Validating /tmp/target/var/cache/apt/archives/base-files_3.0.11_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
@@ -169,8 +169,8 @@ I: Retrieving http://ftp.jp.debian.org/debian/pool/main/i/iptables/iptables_1.2.
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-12_i386.deb
-I: Validating /tmp/target/var/cache/apt/archives/klogd_1.4.1-12_i386.deb
+I: Retrieving http://ftp.jp.debian.org/debian/pool/main/s/sysklogd/klogd_1.4.1-13_i386.deb
+I: Validating /tmp/target/var/cache/apt/archives/klogd_1.4.1-13_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
@@ -227,8 +227,6 @@ I: Retrieving http://ftp.jp.debian.org/debian/pool/main/p/popt/libpopt0_1.7-2_i3
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.2_i386.deb
-I: Validating /tmp/target/var/cache/apt/archives/libsasl2_2.1.15-5.2_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.7c-1_i386.deb
@@ -245,6 +243,8 @@ I: Retrieving http://ftp.jp.debian.org/debian/pool/main/libt/libtext-iconv-perl/
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/libt/libtextwrap/libtextwrap1_0.1-1_i386.deb
+I: Validating /tmp/target/var/cache/apt/archives/libtextwrap1_0.1-1_i386.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
@@ -307,12 +307,12 @@ I: Retrieving http://ftp.jp.debian.org/debian/pool/main/p/psmisc/psmisc_21.3-1_i
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-12_i386.deb
-I: Validating /tmp/target/var/cache/apt/archives/sysklogd_1.4.1-12_i386.deb
+I: Retrieving http://ftp.jp.debian.org/debian/pool/main/s/slang/slang1_1.4.9-2_i386.deb
+I: Validating /tmp/target/var/cache/apt/archives/slang1_1.4.9-2_i386.deb
+I: Retrieving http://ftp.jp.debian.org/debian/pool/main/s/slang/slang1a-utf8_1.4.9-2_i386.deb
+I: Validating /tmp/target/var/cache/apt/archives/slang1a-utf8_1.4.9-2_i386.deb
+I: Retrieving http://ftp.jp.debian.org/debian/pool/main/s/sysklogd/sysklogd_1.4.1-13_i386.deb
+I: Validating /tmp/target/var/cache/apt/archives/sysklogd_1.4.1-13_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
@@ -335,7 +335,7 @@ I: Retrieving http://ftp.jp.debian.org/debian/pool/main/n/newt/whiptail_0.51.4-1
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-files_3.0.11_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...
@@ -388,8 +388,8 @@ I: Extracting /var/cache/apt/archives/passwd_1%3a4.0.3-11_i386.deb...
I: Extracting /var/cache/apt/archives/perl-base_5.8.1-2_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/slang1_1.4.9-2_i386.deb...
+I: Extracting /var/cache/apt/archives/slang1a-utf8_1.4.9-2_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...
@@ -400,7 +400,7 @@ 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) ...
+Unpacking base-files (from .../base-files_3.0.11_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:
@@ -411,7 +411,7 @@ 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) ...
+Setting up base-files (3.0.11) ...
dpkg: regarding .../archives/dpkg_1.10.15_i386.deb containing dpkg, pre-dependency problem:
dpkg pre-depends on dselect
@@ -440,8 +440,8 @@ dpkg: libc6: dependency problems, but configuring anyway as you request:
Package libdb1-compat is not installed.
Setting up libc6 (2.3.2-8) ...
Current default timezone: 'UTC'.
-Local time is now: Thu Oct 2 23:44:20 UTC 2003.
-Universal Time is now: Thu Oct 2 23:44:20 UTC 2003.
+Local time is now: Fri Oct 3 14:15:20 UTC 2003.
+Universal Time is now: Fri Oct 3 14:15:20 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,
@@ -467,7 +467,7 @@ 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) ...
+Preparing to replace base-files 3.0.11 (using .../base-files_3.0.11_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 ...
@@ -619,9 +619,9 @@ 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) ...
+Unpacking slang1 (from .../slang1_1.4.9-2_i386.deb) ...
Selecting previously deselected package slang1a-utf8.
-Unpacking slang1a-utf8 (from .../slang1a-utf8_1.4.9-1_i386.deb) ...
+Unpacking slang1a-utf8 (from .../slang1a-utf8_1.4.9-2_i386.deb) ...
Selecting previously deselected package initscripts.
Unpacking initscripts (from .../initscripts_2.85-7_all.deb) ...
Selecting previously deselected package sysvinit.
@@ -665,13 +665,13 @@ dpkg: libc6: dependency problems, but configuring anyway as you request:
Package libdb1-compat is not installed.
Setting up libc6 (2.3.2-8) ...
Current default timezone: 'UTC'.
-Local time is now: Thu Oct 2 23:45:49 UTC 2003.
-Universal Time is now: Thu Oct 2 23:45:49 UTC 2003.
+Local time is now: Fri Oct 3 14:16:06 UTC 2003.
+Universal Time is now: Fri Oct 3 14:16:06 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 slang1 (1.4.9-2) ...
Setting up libuuid1 (1.34+1.35-WIP-2003.08.21-3) ...
@@ -686,7 +686,7 @@ Setting up mbr (1.1.5-1) ...
Setting up tar (1.13.25-6) ...
-Setting up slang1a-utf8 (1.4.9-1) ...
+Setting up slang1a-utf8 (1.4.9-2) ...
Setting up libgcc1 (3.3.2-0pre4) ...
@@ -756,7 +756,7 @@ 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 base-files (3.0.11) ...
Setting up libreadline4 (4.3-5) ...
@@ -830,7 +830,7 @@ 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-12_i386.deb) ...
+Unpacking klogd (from .../klogd_1.4.1-13_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.
@@ -853,8 +853,6 @@ 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.2_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.
@@ -894,9 +892,11 @@ 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-12_i386.deb) ...
+Unpacking sysklogd (from .../sysklogd_1.4.1-13_i386.deb) ...
Selecting previously deselected package tasksel.
Unpacking tasksel (from .../archives/tasksel_1.35_i386.deb) ...
+Selecting previously deselected package libtextwrap1.
+Unpacking libtextwrap1 (from .../libtextwrap1_0.1-1_i386.deb) ...
Selecting previously deselected package tcpd.
Unpacking tcpd (from .../tcpd_7.6-ipv6.1-3_i386.deb) ...
Selecting previously deselected package telnet.
@@ -956,11 +956,6 @@ Setting up adduser (3.51) ...
Setting up manpages (1.60-3) ...
Setting up ed (0.2-20) ...
-dpkg: dependency problems prevent configuration of tasksel:
- tasksel depends on libtextwrap1; however:
- Package libtextwrap1 is not installed.
-dpkg: error processing tasksel (--configure):
- dependency problems - leaving unconfigured
Setting up libtext-iconv-perl (1.2-2) ...
Setting up libpcap0.7 (0.7.2-1) ...
@@ -996,8 +991,6 @@ Starting periodic command scheduler: cron
Warning: Fake start-stop-daemon called, doing nothing
.
-Setting up libsasl2 (2.1.15-5.2) ...
-
Setting up nano (1.2.2-2) ...
Setting up netkit-inetd (0.10-9) ...
@@ -1037,7 +1030,7 @@ Setting up pppoeconf (1.0) ...
Setting up pppconfig (2.2.0) ...
-Setting up klogd (1.4.1-12) ...
+Setting up klogd (1.4.1-13) ...
Stopping kernel log daemon: klogd
Warning: Fake start-stop-daemon called, doing nothing
.
@@ -1051,6 +1044,8 @@ hostname: Unknown host
Setting up console-tools (0.2.3dbs-43) ...
+Setting up libtextwrap1 (0.1-1) ...
+
Setting up console-common (0.7.29) ...
Looking for keymap to install:
mac-usb-be
@@ -1059,7 +1054,9 @@ Warning: cannot access console;
Setting up base-config (1.73) ...
-Setting up sysklogd (1.4.1-12) ...
+Setting up tasksel (1.35) ...
+
+Setting up sysklogd (1.4.1-13) ...
Stopping system log daemon: syslogd
Warning: Fake start-stop-daemon called, doing nothing
.
@@ -1082,52 +1079,28 @@ Warning: Fake start-stop-daemon called, doing nothing
.
Setting up exim4 (4.22-5) ...
-Errors were encountered while processing:
- tasksel
-W: Failure while configuring base packages. This will be attempted 5 times.
-dpkg: dependency problems prevent configuration of tasksel:
- tasksel depends on libtextwrap1; however:
- Package libtextwrap1 is not installed.
-dpkg: error processing tasksel (--configure):
- dependency problems - leaving unconfigured
-Errors were encountered while processing:
- tasksel
-W: Failure while configuring base packages. This will be attempted 5 times.
-dpkg: dependency problems prevent configuration of tasksel:
- tasksel depends on libtextwrap1; however:
- Package libtextwrap1 is not installed.
-dpkg: error processing tasksel (--configure):
- dependency problems - leaving unconfigured
-Errors were encountered while processing:
- tasksel
-W: Failure while configuring base packages. This will be attempted 5 times.
-dpkg: dependency problems prevent configuration of tasksel:
- tasksel depends on libtextwrap1; however:
- Package libtextwrap1 is not installed.
-dpkg: error processing tasksel (--configure):
- dependency problems - leaving unconfigured
-Errors were encountered while processing:
- tasksel
-W: Failure while configuring base packages. This will be attempted 5 times.
-dpkg: dependency problems prevent configuration of tasksel:
- tasksel depends on libtextwrap1; however:
- Package libtextwrap1 is not installed.
-dpkg: error processing tasksel (--configure):
- dependency problems - leaving unconfigured
-Errors were encountered while processing:
- tasksel
-W: Failure while configuring base packages. This will be attempted 5 times.
-Traceback (most recent call last):
- File "/usr/lib/rootstrap/builder", line 66, in ?
- dispatch(module, modulevars)
- File "/usr/lib/rootstrap/builder", line 44, in dispatch
- raise "rootstrap: Module '%s' failed, status: %d" % (module,status)
-rootstrap: Module 'debian' failed, status: 1
-Kernel panic: Attempted to kill init!
- <6>Stopping all CPUs...done
-tracing thread pid = 24935
+I: Base system installed successfully.
+chroot /tmp/target dpkg --purge base-config console-common console-tools console-data console-tools-libs
+(Reading database ... 6922 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 = 9275
-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/fileoQMmaW rw
+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/fileG6O9aj 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
@@ -1135,8 +1108,8 @@ 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/fileoQMmaW rw
-Calibrating delay loop... 1608.09 BogoMIPS
+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/fileG6O9aj rw
+Calibrating delay loop... 1329.20 BogoMIPS
Memory: 126208k available
Dentry cache hash table entries: 16384 (order: 5, 131072 bytes)
Inode cache hash table entries: 8192 (order: 4, 65536 bytes)
@@ -1166,7 +1139,7 @@ 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/SJCVbl/mconsole
+mconsole (version 2) initialized on /home/dancer/.uml/v4YU0b/mconsole
unable to open root_fs for validation
Partition check:
ubdb: unknown partition table
@@ -1181,7 +1154,6 @@ 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
-EXT2-fs warning: mounting unchecked fs, running e2fsck is recommended
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
@@ -1216,19 +1188,108 @@ Upgrading for distribution sid
-> installing dummy policy-rc.d
Refreshing the base.tgz
-> upgrading packages
- 0% [Working] Err http://debootstrap.invalid sid/main Packages
- Could not resolve 'debootstrap.invalid'
- 0% [Connecting to debootstrap.invalid] Err http://debootstrap.invalid sid/main Release
- Could not resolve 'debootstrap.invalid'
- 0% [Working] Failed to fetch http://debootstrap.invalid/dists/sid/main/binary-i386/Packages.gz Could not resolve 'debootstrap.invalid'
-Failed to fetch http://debootstrap.invalid/dists/sid/main/binary-i386/Release Could not resolve 'debootstrap.invalid'
- Reading Package Lists... 0% Reading Package Lists... 0% Reading Package Lists... 1% Reading Package Lists... 29% Reading Package Lists... 53% Reading Package Lists... 80% Reading Package Lists... 99% Reading Package Lists... 99% Reading Package Lists... 99% Reading Package Lists... Done
-E: Some index files failed to download, they have been ignored, or old ones used instead.
- -> Aborting with an error
+ 0% [Working] 0% [Connecting to ftp.jp.debian.org (210.157.158.33)] 0% [Connecting to ftp.jp.debian.org (210.157.158.33)] 0% [Waiting for headers] Get:1 http://ftp.jp.debian.org sid/main Packages [2694kB]
+ 0% [1 Packages 0/2694kB 0%] 0% [1 Packages 2542/2694kB 0%] 0% [1 Packages 8302/2694kB 0%] 0% [1 Packages 8302/2694kB 0%] 0% [1 Packages 19822/2694kB 0%] 0% [1 Packages 19822/2694kB 0%] 1% [1 Packages 39982/2694kB 1%] 2% [1 Packages 71662/2694kB 2%] 2% [1 Packages 71662/2694kB 2%] 11.2kB/s 3m53s 4% [1 Packages 118464/2694kB 4%] 11.2kB/s 3m49s 5% [1 Packages 137184/2694kB 5%] 11.2kB/s 3m47s 6% [1 Packages 181824/2694kB 6%] 11.2kB/s 3m43s 9% [1 Packages 243744/2694kB 9%] 11.2kB/s 3m38s 9% [1 Packages 245184/2694kB 9%] 11.2kB/s 3m38s 11% [1 Packages 307872/2694kB 11%] 11.2kB/s 3m32s 11% [1 Packages 307872/2694kB 11%] 11.2kB/s 3m32s 13% [1 Packages 371232/2694kB 13%] 11.2kB/s 3m26s 15% [1 Packages 414432/2694kB 15%] 11.2kB/s 3m23s 16% [1 Packages 434592/2694kB 16%] 11.2kB/s 3m21s 18% [1 Packages 497952/2694kB 18%] 11.2kB/s 3m15s 18% [1 Packages 497952/2694kB 18%] 66.2kB/s 33s 20% [1 Packages 561312/2694kB 20%] 66.2kB/s 32s 21% [1 Packages 581472/2694kB 21%] 66.2kB/s 31s 23% [1 Packages 624672/2694kB 23%] 66.2kB/s 31s 25% [1 Packages 688032/2694kB 25%] 66.2kB/s 30s 25% [1 Packages 690912/2694kB 25%] 66.2kB/s 30s 27% [1 Packages 751392/2694kB 27%] 66.2kB/s 29s 30% [1 Packages 813792/2694kB 30%] 66.2kB/s 28s 30% [1 Packages 813792/2694kB 30%] 66.2kB/s 28s 32% [1 Packages 877152/2694kB 32%] 66.2kB/s 27s 32% [1 Packages 888672/2694kB 32%] 66.2kB/s 27s 34% [1 Packages 940512/2694kB 34%] 66.2kB/s 26s 36% [1 Packages 980832/2694kB 36%] 74.9kB/s 22s 37% [1 Packages 1003872/2694kB 37%] 74.9kB/s 22s 39% [1 Packages 1067232/2694kB 39%] 74.9kB/s 21s 40% [1 Packages 1084512/2694kB 40%] 74.9kB/s 21s 41% [1 Packages 1130592/2694kB 41%] 74.9kB/s 20s 44% [1 Packages 1193952/2694kB 44%] 74.9kB/s 20s 44% [1 Packages 1193952/2694kB 44%] 74.9kB/s 20s 46% [1 Packages 1257312/2694kB 46%] 74.9kB/s 19s 47% [1 Packages 1271712/2694kB 47%] 74.9kB/s 18s 49% [1 Packages 1320672/2694kB 49%] 74.9kB/s 18s 51% [1 Packages 1382592/2694kB 51%] 74.9kB/s 17s 51% [1 Packages 1384032/2694kB 51%] 74.9kB/s 17s 53% [1 Packages 1447392/2694kB 53%] 72.5kB/s 17s 53% [1 Packages 1450272/2694kB 53%] 72.5kB/s 17s 56% [1 Packages 1510752/2694kB 56%] 72.5kB/s 16s 56% [1 Packages 1526592/2694kB 56%] 72.5kB/s 16s 58% [1 Packages 1574112/2694kB 58%] 72.5kB/s 15s 60% [1 Packages 1620192/2694kB 60%] 72.5kB/s 14s 60% [1 Packages 1637472/2694kB 60%] 72.5kB/s 14s 63% [1 Packages 1700832/2694kB 63%] 72.5kB/s 13s 63% [1 Packages 1700832/2694kB 63%] 72.5kB/s 13s 65% [1 Packages 1764064/2694kB 65%] 72.5kB/s 12s 65% [1 Packages 1764064/2694kB 65%] 72.5kB/s 12s 67% [1 Packages 1827424/2694kB 67%] 72.5kB/s 11s 68% [1 Packages 1838944/2694kB 68%] 61.2kB/s 13s 70% [1 Packages 1889376/2694kB 70%] 61.2kB/s 13s 71% [1 Packages 1926816/2694kB 71%] 61.2kB/s 12s 72% [1 Packages 1952736/2694kB 72%] 61.2kB/s 12s 74% [1 Packages 2016096/2694kB 74%] 61.2kB/s 11s 74% [1 Packages 2018976/2694kB 74%] 61.2kB/s 11s 77% [1 Packages 2079456/2694kB 77%] 61.2kB/s 10s 77% [1 Packages 2086656/2694kB 77%] 61.2kB/s 9s 79% [1 Packages 2142816/2694kB 79%] 61.2kB/s 9s 80% [1 Packages 2157216/2694kB 80%] 61.2kB/s 8s 81% [1 Packages 2206176/2694kB 81%] 61.2kB/s 7s 83% [1 Packages 2259456/2694kB 83%] 61.2kB/s 7s 84% [1 Packages 2272416/2694kB 84%] 68.4kB/s 6s 86% [1 Packages 2332896/2694kB 86%] 68.4kB/s 5s 88% [1 Packages 2377536/2694kB 88%] 68.4kB/s 4s 89% [1 Packages 2399136/2694kB 89%] 68.4kB/s 4s 91% [1 Packages 2456736/2694kB 91%] 68.4kB/s 3s 93% [1 Packages 2517216/2694kB 93%] 68.4kB/s 2s 93% [1 Packages 2525856/2694kB 93%] 68.4kB/s 2s 95% [1 Packages 2583456/2694kB 95%] 68.4kB/s 1s 97% [1 Packages 2613696/2694kB 97%] 68.4kB/s 1s 98% [1 Packages 2646816/2694kB 98%] 68.4kB/s 0s Get:2 http://ftp.jp.debian.org sid/main Release [82B]
+ 99% [Working] 68.4kB/s 0s 99% [1 Packages gzip 0] 68.4kB/s 0s 99% [1 Packages gzip 4976640] 66.6kB/s 0s 99% [1 Packages gzip 8818688] 66.6kB/s 0s 100% [Working] 66.6kB/s 0s Fetched 2694kB in 45s (58.7kB/s)
+ Reading Package Lists... 0% Reading Package Lists... 0% Reading Package Lists... 1% Reading Package Lists... 42% Reading Package Lists... 84% Reading Package Lists... 99% Reading Package Lists... 99% Reading Package Lists... Done
+(Reading database ... 6175 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... 44% 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... 48% 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 16.6MB of archives.
+After unpacking 58.2MB of additional disk space will be used.
+ 0% [Working] 0% [Connecting to ftp.jp.debian.org (210.157.158.33)] 0% [Waiting for headers] 0% [Waiting for headers] 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 2550/2429kB 0%] 0% [1 binutils 8310/2429kB 0%] 0% [1 binutils 8310/2429kB 0%] 0% [1 binutils 19830/2429kB 0%] 0% [1 binutils 19830/2429kB 0%] 0% [1 binutils 42870/2429kB 1%] 0% [1 binutils 47190/2429kB 1%] 0% [1 binutils 83190/2429kB 3%] 12.8kB/s 21m31s 0% [1 binutils 142230/2429kB 5%] 12.8kB/s 21m27s 1% [1 binutils 202710/2429kB 8%] 12.8kB/s 21m22s 1% [1 binutils 224310/2429kB 9%] 12.8kB/s 21m20s 1% [1 binutils 266070/2429kB 10%] 12.8kB/s 21m17s 1% [1 binutils 322230/2429kB 13%] 12.8kB/s 21m13s 2% [1 binutils 343830/2429kB 14%] 12.8kB/s 21m11s 2% [1 binutils 392790/2429kB 16%] 12.8kB/s 21m7s 2% [1 binutils 448950/2429kB 18%] 12.8kB/s 21m3s 2% [1 binutils 470550/2429kB 19%] 12.8kB/s 21m1s 3% [1 binutils 519510/2429kB 21%] 12.8kB/s 20m57s 3% [1 binutils 575670/2429kB 23%] 80.4kB/s 3m19s 3% [1 binutils 605910/2429kB 24%] 80.4kB/s 3m19s 3% [1 binutils 646230/2429kB 26%] 80.4kB/s 3m18s 4% [1 binutils 700950/2429kB 28%] 80.4kB/s 3m18s 4% [1 binutils 758550/2429kB 31%] 80.4kB/s 3m17s 4% [1 binutils 785910/2429kB 32%] 80.4kB/s 3m17s 5% [1 binutils 833430/2429kB 34%] 80.4kB/s 3m16s 5% [1 binutils 885270/2429kB 36%] 80.4kB/s 3m15s 5% [1 binutils 908310/2429kB 37%] 80.4kB/s 3m15s 5% [1 binutils 958710/2429kB 39%] 80.4kB/s 3m15s 6% [1 binutils 1011990/2429kB 41%] 80.4kB/s 3m14s 6% [1 binutils 1032150/2429kB 42%] 80.4kB/s 3m14s 6% [1 binutils 1083990/2429kB 44%] 78.2kB/s 3m18s 6% [1 binutils 1137270/2429kB 46%] 78.2kB/s 3m18s 7% [1 binutils 1168950/2429kB 48%] 78.2kB/s 3m17s 7% [1 binutils 1210710/2429kB 49%] 78.2kB/s 3m17s 7% [1 binutils 1266870/2429kB 52%] 78.2kB/s 3m16s 7% [1 binutils 1292790/2429kB 53%] 78.2kB/s 3m16s 8% [1 binutils 1337430/2429kB 55%] 78.2kB/s 3m15s 8% [1 binutils 1393590/2429kB 57%] 78.2kB/s 3m15s 8% [1 binutils 1419510/2429kB 58%] 78.2kB/s 3m14s 8% [1 binutils 1464150/2429kB 60%] 78.2kB/s 3m14s 9% [1 binutils 1520310/2429kB 62%] 78.2kB/s 3m13s 9% [1 binutils 1539030/2429kB 63%] 78.2kB/s 3m13s 9% [1 binutils 1589430/2429kB 65%] 78.5kB/s 3m11s 9% [1 binutils 1619670/2429kB 66%] 78.5kB/s 3m11s 9% [1 binutils 1651360/2429kB 67%] 78.5kB/s 3m11s 10% [1 binutils 1708960/2429kB 70%] 78.5kB/s 3m10s 10% [1 binutils 1721920/2429kB 70%] 78.5kB/s 3m10s 10% [1 binutils 1775200/2429kB 73%] 78.5kB/s 3m9s 10% [1 binutils 1788160/2429kB 73%] 78.5kB/s 3m9s 11% [1 binutils 1841440/2429kB 75%] 78.5kB/s 3m8s 11% [1 binutils 1854400/2429kB 76%] 78.5kB/s 3m8s 11% [1 binutils 1904800/2429kB 78%] 78.5kB/s 3m7s 11% [1 binutils 1914880/2429kB 78%] 78.5kB/s 3m7s 11% [1 binutils 1966720/2429kB 80%] 78.5kB/s 3m7s 11% [1 binutils 1978240/2429kB 81%] 60.9kB/s 4m0s 12% [1 binutils 2031520/2429kB 83%] 60.9kB/s 3m59s 12% [1 binutils 2061760/2429kB 84%] 60.9kB/s 3m59s 12% [1 binutils 2100640/2429kB 86%] 60.9kB/s 3m58s 12% [1 binutils 2151040/2429kB 88%] 60.9kB/s 3m57s 13% [1 binutils 2171200/2429kB 89%] 60.9kB/s 3m57s 13% [1 binutils 2220160/2429kB 91%] 60.9kB/s 3m56s 13% [1 binutils 2236000/2429kB 92%] 60.9kB/s 3m56s 13% [1 binutils 2284960/2429kB 94%] 60.9kB/s 3m55s 13% [1 binutils 2312320/2429kB 95%] 60.9kB/s 3m55s 14% [1 binutils 2354080/2429kB 96%] 60.9kB/s 3m54s 14% [1 binutils 2377120/2429kB 97%] 60.9kB/s 3m54s 14% [1 binutils 2420320/2429kB 99%] 69.1kB/s 3m26s Get:2 http://ftp.jp.debian.org sid/main cpp-3.3 1:3.3.2-0pre4 [1387kB]
+ 14% [2 cpp-3.3 91/1387kB 0%] 69.1kB/s 3m25s 14% [2 cpp-3.3 44731/1387kB 3%] 69.1kB/s 3m25s 15% [2 cpp-3.3 74971/1387kB 5%] 69.1kB/s 3m24s 15% [2 cpp-3.3 110971/1387kB 8%] 69.1kB/s 3m24s 15% [2 cpp-3.3 138331/1387kB 9%] 69.1kB/s 3m23s 15% [2 cpp-3.3 177211/1387kB 12%] 69.1kB/s 3m23s 15% [2 cpp-3.3 229051/1387kB 16%] 69.1kB/s 3m22s 16% [2 cpp-3.3 243451/1387kB 17%] 69.1kB/s 3m22s 16% [2 cpp-3.3 296731/1387kB 21%] 69.1kB/s 3m21s 16% [2 cpp-3.3 309691/1387kB 22%] 69.1kB/s 3m21s 16% [2 cpp-3.3 360091/1387kB 25%] 69.1kB/s 3m20s 16% [2 cpp-3.3 374491/1387kB 27%] 62.0kB/s 3m43s 17% [2 cpp-3.3 420571/1387kB 30%] 62.0kB/s 3m42s 17% [2 cpp-3.3 443611/1387kB 31%] 62.0kB/s 3m42s 17% [2 cpp-3.3 489691/1387kB 35%] 62.0kB/s 3m41s 17% [2 cpp-3.3 518491/1387kB 37%] 62.0kB/s 3m40s 17% [2 cpp-3.3 554491/1387kB 39%] 62.0kB/s 3m40s 18% [2 cpp-3.3 581851/1387kB 41%] 62.0kB/s 3m39s 18% [2 cpp-3.3 622944/1387kB 44%] 62.0kB/s 3m39s 18% [2 cpp-3.3 673344/1387kB 48%] 62.0kB/s 3m38s 18% [2 cpp-3.3 689184/1387kB 49%] 62.0kB/s 3m38s 19% [2 cpp-3.3 748224/1387kB 53%] 62.0kB/s 3m37s 19% [2 cpp-3.3 766944/1387kB 55%] 62.0kB/s 3m36s 19% [2 cpp-3.3 815904/1387kB 58%] 68.5kB/s 3m15s 19% [2 cpp-3.3 863424/1387kB 62%] 68.5kB/s 3m14s 19% [2 cpp-3.3 879264/1387kB 63%] 68.5kB/s 3m14s 20% [2 cpp-3.3 926784/1387kB 66%] 68.5kB/s 3m13s 20% [2 cpp-3.3 942624/1387kB 67%] 68.5kB/s 3m13s 20% [2 cpp-3.3 993024/1387kB 71%] 68.5kB/s 3m12s 20% [2 cpp-3.3 1011744/1387kB 72%] 68.5kB/s 3m12s 20% [2 cpp-3.3 1062144/1387kB 76%] 68.5kB/s 3m11s 21% [2 cpp-3.3 1080864/1387kB 77%] 68.5kB/s 3m11s 21% [2 cpp-3.3 1125504/1387kB 81%] 68.5kB/s 3m11s 21% [2 cpp-3.3 1152864/1387kB 83%] 68.5kB/s 3m10s 21% [2 cpp-3.3 1188864/1387kB 85%] 68.5kB/s 3m10s 21% [2 cpp-3.3 1216224/1387kB 87%] 62.4kB/s 3m28s 22% [2 cpp-3.3 1255104/1387kB 90%] 62.4kB/s 3m27s 22% [2 cpp-3.3 1282464/1387kB 92%] 62.4kB/s 3m27s 22% [2 cpp-3.3 1321344/1387kB 95%] 62.4kB/s 3m26s 22% [2 cpp-3.3 1351584/1387kB 97%] 62.4kB/s 3m26s 22% [2 cpp-3.3 1384704/1387kB 99%] 62.4kB/s 3m25s Get:3 http://ftp.jp.debian.org sid/main cpp 4:3.3.1-2 [26.0kB]
+ 22% [3 cpp 652/26.0kB 2%] 62.4kB/s 3m25s Get:4 http://ftp.jp.debian.org sid/main perl-modules 5.8.1-2 [2156kB]
+ 23% [4 perl-modules 1671/2156kB 0%] 62.4kB/s 3m25s 23% [4 perl-modules 34791/2156kB 1%] 62.4kB/s 3m24s 23% [4 perl-modules 73671/2156kB 3%] 62.4kB/s 3m24s 23% [4 perl-modules 85191/2156kB 3%] 62.4kB/s 3m23s 23% [4 perl-modules 85191/2156kB 3%] 62.4kB/s 3m23s 23% [4 perl-modules 148551/2156kB 6%] 62.4kB/s 3m22s 23% [4 perl-modules 151431/2156kB 7%] 54.4kB/s 3m52s 24% [4 perl-modules 155751/2156kB 7%] 54.4kB/s 3m52s 24% [4 perl-modules 162951/2156kB 7%] 54.4kB/s 3m52s 24% [4 perl-modules 174471/2156kB 8%] 54.4kB/s 3m52s 24% [4 perl-modules 174471/2156kB 8%] 54.4kB/s 3m52s 24% [4 perl-modules 191751/2156kB 8%] 54.4kB/s 3m51s 24% [4 perl-modules 219111/2156kB 10%] 54.4kB/s 3m51s 24% [4 perl-modules 252231/2156kB 11%] 54.4kB/s 3m50s 24% [4 perl-modules 285351/2156kB 13%] 54.4kB/s 3m50s 24% [4 perl-modules 288231/2156kB 13%] 54.4kB/s 3m49s 24% [4 perl-modules 319911/2156kB 14%] 54.4kB/s 3m49s 25% [4 perl-modules 354471/2156kB 16%] 54.4kB/s 3m48s 25% [4 perl-modules 384711/2156kB 17%] 36.2kB/s 5m43s 25% [4 perl-modules 401991/2156kB 18%] 36.2kB/s 5m42s 25% [4 perl-modules 426471/2156kB 19%] 36.2kB/s 5m41s 25% [4 perl-modules 461031/2156kB 21%] 36.2kB/s 5m40s 26% [4 perl-modules 497031/2156kB 23%] 36.2kB/s 5m39s 26% [4 perl-modules 501351/2156kB 23%] 36.2kB/s 5m39s 26% [4 perl-modules 537351/2156kB 24%] 36.2kB/s 5m38s 26% [4 perl-modules 576231/2156kB 26%] 36.2kB/s 5m37s 26% [4 perl-modules 609351/2156kB 28%] 36.2kB/s 5m36s 26% [4 perl-modules 619431/2156kB 28%] 36.2kB/s 5m36s 27% [4 perl-modules 656871/2156kB 30%] 36.2kB/s 5m35s 27% [4 perl-modules 698631/2156kB 32%] 36.2kB/s 5m34s 27% [4 perl-modules 738951/2156kB 34%] 54.9kB/s 3m39s 27% [4 perl-modules 779271/2156kB 36%] 54.9kB/s 3m38s 27% [4 perl-modules 809511/2156kB 37%] 54.9kB/s 3m38s 28% [4 perl-modules 832551/2156kB 38%] 54.9kB/s 3m37s 28% [4 perl-modules 869991/2156kB 40%] 54.9kB/s 3m37s 28% [4 perl-modules 914631/2156kB 42%] 54.9kB/s 3m36s 28% [4 perl-modules 959271/2156kB 44%] 54.9kB/s 3m35s 29% [4 perl-modules 988071/2156kB 45%] 54.9kB/s 3m35s 29% [4 perl-modules 1015431/2156kB 47%] 54.9kB/s 3m34s 29% [4 perl-modules 1051431/2156kB 48%] 54.9kB/s 3m34s 29% [4 perl-modules 1091751/2156kB 50%] 54.9kB/s 3m33s 29% [4 perl-modules 1109031/2156kB 51%] 54.9kB/s 3m32s 29% [4 perl-modules 1146471/2156kB 53%] 63.9kB/s 3m2s 30% [4 perl-modules 1179591/2156kB 54%] 63.9kB/s 3m1s 30% [4 perl-modules 1201191/2156kB 55%] 63.9kB/s 3m1s 30% [4 perl-modules 1245831/2156kB 57%] 63.9kB/s 3m0s 30% [4 perl-modules 1283271/2156kB 59%] 63.9kB/s 3m0s 30% [4 perl-modules 1301991/2156kB 60%] 63.9kB/s 3m0s 31% [4 perl-modules 1346631/2156kB 62%] 63.9kB/s 2m59s 31% [4 perl-modules 1368231/2156kB 63%] 63.9kB/s 2m59s 31% [4 perl-modules 1398471/2156kB 64%] 63.9kB/s 2m58s 31% [4 perl-modules 1441671/2156kB 66%] 63.9kB/s 2m57s 31% [4 perl-modules 1458951/2156kB 67%] 63.9kB/s 2m57s 32% [4 perl-modules 1502151/2156kB 69%] 63.9kB/s 2m56s 32% [4 perl-modules 1526631/2156kB 70%] 58.8kB/s 3m11s 32% [4 perl-modules 1556871/2156kB 72%] 58.8kB/s 3m11s 32% [4 perl-modules 1589991/2156kB 73%] 58.8kB/s 3m10s 32% [4 perl-modules 1620231/2156kB 75%] 58.8kB/s 3m10s 33% [4 perl-modules 1659111/2156kB 76%] 58.8kB/s 3m9s 33% [4 perl-modules 1685031/2156kB 78%] 58.8kB/s 3m9s 33% [4 perl-modules 1721031/2156kB 79%] 58.8kB/s 3m8s 33% [4 perl-modules 1752711/2156kB 81%] 58.8kB/s 3m8s 33% [4 perl-modules 1780071/2156kB 82%] 58.8kB/s 3m7s 34% [4 perl-modules 1820391/2156kB 84%] 58.8kB/s 3m6s 34% [4 perl-modules 1843431/2156kB 85%] 58.8kB/s 3m6s 34% [4 perl-modules 1889511/2156kB 87%] 59.9kB/s 3m2s 34% [4 perl-modules 1909671/2156kB 88%] 59.9kB/s 3m1s 34% [4 perl-modules 1951431/2156kB 90%] 59.9kB/s 3m1s 34% [4 perl-modules 1978791/2156kB 91%] 59.9kB/s 3m0s 35% [4 perl-modules 2010471/2156kB 93%] 59.9kB/s 3m0s 35% [4 perl-modules 2047911/2156kB 94%] 59.9kB/s 2m59s 35% [4 perl-modules 2073831/2156kB 96%] 59.9kB/s 2m59s 35% [4 perl-modules 2122791/2156kB 98%] 59.9kB/s 2m58s 35% [4 perl-modules 2151591/2156kB 99%] 59.9kB/s 2m57s Get:5 http://ftp.jp.debian.org sid/main libdb4.0 4.0.14-1.3 [302kB]
+ 36% [5 libdb4.0 842/302kB 0%] 59.9kB/s 2m57s 36% [5 libdb4.0 46922/302kB 15%] 59.9kB/s 2m57s 36% [5 libdb4.0 93002/302kB 30%] 59.9kB/s 2m56s 36% [5 libdb4.0 137642/302kB 45%] 66.1kB/s 2m39s 37% [5 libdb4.0 173642/302kB 57%] 66.1kB/s 2m38s 37% [5 libdb4.0 213962/302kB 70%] 66.1kB/s 2m37s 37% [5 libdb4.0 245642/302kB 81%] 66.1kB/s 2m37s 37% [5 libdb4.0 291722/302kB 96%] 66.1kB/s 2m36s Get:6 http://ftp.jp.debian.org sid/main perl 5.8.1-2 [3305kB]
+ 37% [6 perl 821/3305kB 0%] 66.1kB/s 2m36s 38% [6 perl 36821/3305kB 1%] 66.1kB/s 2m36s 38% [6 perl 69941/3305kB 2%] 66.1kB/s 2m35s 38% [6 perl 113141/3305kB 3%] 66.1kB/s 2m34s 38% [6 perl 144821/3305kB 4%] 66.1kB/s 2m34s 38% [6 perl 185141/3305kB 5%] 66.1kB/s 2m33s 39% [6 perl 224021/3305kB 6%] 66.1kB/s 2m33s 39% [6 perl 254261/3305kB 7%] 67.7kB/s 2m29s 39% [6 perl 298901/3305kB 9%] 67.7kB/s 2m28s 39% [6 perl 334901/3305kB 10%] 67.7kB/s 2m27s 40% [6 perl 376661/3305kB 11%] 67.7kB/s 2m27s 40% [6 perl 418421/3305kB 12%] 67.7kB/s 2m26s 40% [6 perl 458741/3305kB 13%] 67.7kB/s 2m26s 40% [6 perl 503381/3305kB 15%] 67.7kB/s 2m25s 41% [6 perl 539381/3305kB 16%] 67.7kB/s 2m24s 41% [6 perl 569621/3305kB 17%] 67.7kB/s 2m24s 41% [6 perl 608501/3305kB 18%] 67.7kB/s 2m23s 41% [6 perl 647381/3305kB 19%] 67.7kB/s 2m23s 41% [6 perl 684821/3305kB 20%] 67.7kB/s 2m22s 42% [6 perl 729461/3305kB 22%] 73.9kB/s 2m10s 42% [6 perl 759701/3305kB 22%] 73.9kB/s 2m9s 42% [6 perl 798581/3305kB 24%] 73.9kB/s 2m9s 42% [6 perl 837461/3305kB 25%] 73.9kB/s 2m8s 43% [6 perl 873461/3305kB 26%] 73.9kB/s 2m8s 43% [6 perl 903701/3305kB 27%] 73.9kB/s 2m7s 43% [6 perl 936821/3305kB 28%] 73.9kB/s 2m7s 43% [6 perl 969941/3305kB 29%] 73.9kB/s 2m6s 43% [6 perl 1003061/3305kB 30%] 73.9kB/s 2m6s 44% [6 perl 1033301/3305kB 31%] 73.9kB/s 2m6s 44% [6 perl 1072181/3305kB 32%] 73.9kB/s 2m5s 44% [6 perl 1105301/3305kB 33%] 73.9kB/s 2m5s 44% [6 perl 1141301/3305kB 34%] 64.3kB/s 2m23s 44% [6 perl 1177301/3305kB 35%] 64.3kB/s 2m22s 45% [6 perl 1216181/3305kB 36%] 64.3kB/s 2m21s 45% [6 perl 1242101/3305kB 37%] 64.3kB/s 2m21s 45% [6 perl 1279541/3305kB 38%] 64.3kB/s 2m20s 45% [6 perl 1306901/3305kB 39%] 64.3kB/s 2m20s 45% [6 perl 1344341/3305kB 40%] 64.3kB/s 2m19s 46% [6 perl 1378901/3305kB 41%] 64.3kB/s 2m19s 46% [6 perl 1413461/3305kB 42%] 64.3kB/s 2m18s 46% [6 perl 1450901/3305kB 43%] 64.3kB/s 2m18s 46% [6 perl 1485461/3305kB 44%] 64.3kB/s 2m17s 47% [6 perl 1532981/3305kB 46%] 64.3kB/s 2m16s 47% [6 perl 1566101/3305kB 47%] 66.6kB/s 2m11s 47% [6 perl 1599221/3305kB 48%] 66.6kB/s 2m11s 47% [6 perl 1632341/3305kB 49%] 66.6kB/s 2m10s 47% [6 perl 1675541/3305kB 50%] 66.6kB/s 2m10s 48% [6 perl 1712981/3305kB 51%] 66.6kB/s 2m9s 48% [6 perl 1750421/3305kB 52%] 66.6kB/s 2m9s 48% [6 perl 1784981/3305kB 54%] 66.6kB/s 2m8s 48% [6 perl 1819541/3305kB 55%] 66.6kB/s 2m8s 48% [6 perl 1851221/3305kB 56%] 66.6kB/s 2m7s 49% [6 perl 1882901/3305kB 56%] 66.6kB/s 2m7s 49% [6 perl 1914581/3305kB 57%] 66.6kB/s 2m6s 49% [6 perl 1949141/3305kB 58%] 66.6kB/s 2m6s 49% [6 perl 1983701/3305kB 60%] 65.2kB/s 2m8s 49% [6 perl 2012501/3305kB 60%] 65.2kB/s 2m7s 50% [6 perl 2049941/3305kB 62%] 65.2kB/s 2m7s 50% [6 perl 2078741/3305kB 62%] 65.2kB/s 2m6s 50% [6 perl 2113301/3305kB 63%] 65.2kB/s 2m6s 50% [6 perl 2142101/3305kB 64%] 65.2kB/s 2m5s 50% [6 perl 2176661/3305kB 65%] 65.2kB/s 2m5s 51% [6 perl 2228501/3305kB 67%] 65.2kB/s 2m4s 51% [6 perl 2255861/3305kB 68%] 65.2kB/s 2m4s 51% [6 perl 2294741/3305kB 69%] 65.2kB/s 2m3s 51% [6 perl 2327861/3305kB 70%] 65.2kB/s 2m2s 52% [6 perl 2366741/3305kB 71%] 63.8kB/s 2m5s 52% [6 perl 2402741/3305kB 72%] 63.8kB/s 2m4s 52% [6 perl 2441621/3305kB 73%] 63.8kB/s 2m3s 52% [6 perl 2484821/3305kB 75%] 63.8kB/s 2m3s 52% [6 perl 2517941/3305kB 76%] 63.8kB/s 2m2s 53% [6 perl 2556821/3305kB 77%] 63.8kB/s 2m2s 53% [6 perl 2592821/3305kB 78%] 63.8kB/s 2m1s 53% [6 perl 2628821/3305kB 79%] 63.8kB/s 2m0s 53% [6 perl 2673461/3305kB 80%] 63.8kB/s 2m0s 54% [6 perl 2715221/3305kB 82%] 63.8kB/s 1m59s 54% [6 perl 2746901/3305kB 83%] 63.8kB/s 1m59s 54% [6 perl 2782901/3305kB 84%] 63.8kB/s 1m58s 54% [6 perl 2830421/3305kB 85%] 72.5kB/s 1m43s 55% [6 perl 2873621/3305kB 86%] 72.5kB/s 1m43s 55% [6 perl 2909621/3305kB 88%] 72.5kB/s 1m42s 55% [6 perl 2954261/3305kB 89%] 72.5kB/s 1m42s 55% [6 perl 2996021/3305kB 90%] 72.5kB/s 1m41s 56% [6 perl 3034901/3305kB 91%] 72.5kB/s 1m40s 56% [6 perl 3069461/3305kB 92%] 72.5kB/s 1m40s 56% [6 perl 3105461/3305kB 93%] 72.5kB/s 1m39s 56% [6 perl 3152981/3305kB 95%] 72.5kB/s 1m39s 56% [6 perl 3188981/3305kB 96%] 72.5kB/s 1m38s 57% [6 perl 3224981/3305kB 97%] 72.5kB/s 1m38s 57% [6 perl 3262421/3305kB 98%] 72.5kB/s 1m37s 57% [Waiting for headers] 75.8kB/s 1m32s Get:7 http://ftp.jp.debian.org sid/main patch 2.5.9-1 [92.3kB]
+ 57% [7 patch 2555/92.3kB 2%] 75.8kB/s 1m32s 57% [7 patch 37115/92.3kB 40%] 75.8kB/s 1m32s 58% [7 patch 75995/92.3kB 82%] 75.8kB/s 1m31s Get:8 http://ftp.jp.debian.org sid/main make 3.80-4 [349kB]
+ 58% [8 make 2059/349kB 0%] 75.8kB/s 1m31s 58% [8 make 38059/349kB 10%] 75.8kB/s 1m31s 58% [8 make 71179/349kB 20%] 75.8kB/s 1m30s 58% [8 make 107179/349kB 30%] 75.8kB/s 1m30s 59% [8 make 143179/349kB 41%] 75.8kB/s 1m29s 59% [8 make 190699/349kB 54%] 75.8kB/s 1m29s 59% [8 make 232459/349kB 66%] 75.8kB/s 1m28s 59% [8 make 265579/349kB 76%] 75.8kB/s 1m28s 60% [8 make 301579/349kB 86%] 75.8kB/s 1m27s 60% [8 make 333259/349kB 95%] 70.3kB/s 1m34s Get:9 http://ftp.jp.debian.org sid/main dpkg-dev 1.10.15 [112kB]
+ 60% [9 dpkg-dev 1085/112kB 0%] 70.3kB/s 1m33s 60% [9 dpkg-dev 39965/112kB 35%] 70.3kB/s 1m33s 60% [9 dpkg-dev 73085/112kB 65%] 70.3kB/s 1m32s 60% [9 dpkg-dev 106205/112kB 94%] 70.3kB/s 1m32s Get:10 http://ftp.jp.debian.org sid/main gcc-3.3 1:3.3.2-0pre4 [1309kB]
+ 61% [10 gcc-3.3 2100/1309kB 0%] 70.3kB/s 1m32s 61% [10 gcc-3.3 43860/1309kB 3%] 70.3kB/s 1m31s 61% [10 gcc-3.3 76980/1309kB 5%] 70.3kB/s 1m31s 61% [10 gcc-3.3 120180/1309kB 9%] 70.3kB/s 1m30s 61% [10 gcc-3.3 150420/1309kB 11%] 70.3kB/s 1m30s 62% [10 gcc-3.3 192180/1309kB 14%] 70.3kB/s 1m29s 62% [10 gcc-3.3 231060/1309kB 17%] 70.3kB/s 1m29s 62% [10 gcc-3.3 267060/1309kB 20%] 70.3kB/s 1m28s 62% [10 gcc-3.3 305940/1309kB 23%] 71.0kB/s 1m27s 63% [10 gcc-3.3 339060/1309kB 25%] 71.0kB/s 1m26s 63% [10 gcc-3.3 385140/1309kB 29%] 71.0kB/s 1m25s 63% [10 gcc-3.3 426900/1309kB 32%] 71.0kB/s 1m25s 63% [10 gcc-3.3 462900/1309kB 35%] 71.0kB/s 1m24s 64% [10 gcc-3.3 498900/1309kB 38%] 71.0kB/s 1m24s 64% [10 gcc-3.3 529140/1309kB 40%] 71.0kB/s 1m23s 64% [10 gcc-3.3 565140/1309kB 43%] 71.0kB/s 1m23s 64% [10 gcc-3.3 606900/1309kB 46%] 71.0kB/s 1m22s 64% [10 gcc-3.3 640020/1309kB 48%] 71.0kB/s 1m22s 65% [10 gcc-3.3 670260/1309kB 51%] 71.0kB/s 1m21s 65% [10 gcc-3.3 706260/1309kB 53%] 65.1kB/s 1m28s 65% [10 gcc-3.3 742260/1309kB 56%] 65.1kB/s 1m28s 65% [10 gcc-3.3 782580/1309kB 59%] 65.1kB/s 1m27s 65% [10 gcc-3.3 818580/1309kB 62%] 65.1kB/s 1m27s 66% [10 gcc-3.3 845940/1309kB 64%] 65.1kB/s 1m26s 66% [10 gcc-3.3 890580/1309kB 68%] 65.1kB/s 1m26s 66% [10 gcc-3.3 917940/1309kB 70%] 65.1kB/s 1m25s 66% [10 gcc-3.3 956820/1309kB 73%] 65.1kB/s 1m25s 66% [10 gcc-3.3 984180/1309kB 75%] 65.1kB/s 1m24s 67% [10 gcc-3.3 1020180/1309kB 77%] 65.1kB/s 1m24s 67% [10 gcc-3.3 1050420/1309kB 80%] 65.1kB/s 1m23s 67% [10 gcc-3.3 1089300/1309kB 83%] 65.1kB/s 1m22s 67% [10 gcc-3.3 1119540/1309kB 85%] 64.3kB/s 1m23s 67% [10 gcc-3.3 1158420/1309kB 88%] 64.3kB/s 1m22s 68% [10 gcc-3.3 1182900/1309kB 90%] 64.3kB/s 1m22s 68% [10 gcc-3.3 1224660/1309kB 93%] 64.3kB/s 1m21s 68% [10 gcc-3.3 1257780/1309kB 96%] 64.3kB/s 1m21s 68% [10 gcc-3.3 1262100/1309kB 96%] 64.3kB/s 1m21s 68% [10 gcc-3.3 1262100/1309kB 96%] 64.3kB/s 1m21s Get:11 http://ftp.jp.debian.org sid/main libc6-dev 2.3.2-8 [2633kB]
+ 68% [11 libc6-dev 15776/2633kB 0%] 64.3kB/s 1m20s 68% [11 libc6-dev 15776/2633kB 0%] 64.3kB/s 1m20s 68% [11 libc6-dev 18656/2633kB 0%] 64.3kB/s 1m20s 69% [11 libc6-dev 22976/2633kB 0%] 64.3kB/s 1m20s 69% [11 libc6-dev 22976/2633kB 0%] 64.3kB/s 1m20s 69% [11 libc6-dev 30176/2633kB 1%] 35.8kB/s 2m23s 69% [11 libc6-dev 41696/2633kB 1%] 35.8kB/s 2m23s 69% [11 libc6-dev 58976/2633kB 2%] 35.8kB/s 2m22s 69% [11 libc6-dev 58976/2633kB 2%] 35.8kB/s 2m22s 69% [11 libc6-dev 84896/2633kB 3%] 35.8kB/s 2m22s 69% [11 libc6-dev 118016/2633kB 4%] 35.8kB/s 2m21s 69% [11 libc6-dev 130976/2633kB 4%] 35.8kB/s 2m20s 69% [11 libc6-dev 151136/2633kB 5%] 35.8kB/s 2m20s 69% [11 libc6-dev 182816/2633kB 6%] 35.8kB/s 2m19s 70% [11 libc6-dev 217376/2633kB 8%] 35.8kB/s 2m18s 70% [11 libc6-dev 217376/2633kB 8%] 35.8kB/s 2m18s 70% [11 libc6-dev 251936/2633kB 9%] 35.8kB/s 2m17s 70% [11 libc6-dev 285056/2633kB 10%] 39.5kB/s 2m4s 70% [11 libc6-dev 287936/2633kB 10%] 39.5kB/s 2m3s 70% [11 libc6-dev 323936/2633kB 12%] 39.5kB/s 2m3s 70% [11 libc6-dev 339776/2633kB 12%] 39.5kB/s 2m2s 71% [11 libc6-dev 361376/2633kB 13%] 39.5kB/s 2m2s 71% [11 libc6-dev 398816/2633kB 15%] 39.5kB/s 2m1s 71% [11 libc6-dev 398816/2633kB 15%] 39.5kB/s 2m1s 71% [11 libc6-dev 437696/2633kB 16%] 39.5kB/s 2m0s 71% [11 libc6-dev 437696/2633kB 16%] 39.5kB/s 2m0s 71% [11 libc6-dev 476576/2633kB 18%] 39.5kB/s 1m59s 71% [11 libc6-dev 488096/2633kB 18%] 39.5kB/s 1m58s 71% [11 libc6-dev 516896/2633kB 19%] 39.5kB/s 1m58s 72% [11 libc6-dev 555776/2633kB 21%] 41.9kB/s 1m50s 72% [11 libc6-dev 557216/2633kB 21%] 41.9kB/s 1m50s 72% [11 libc6-dev 597536/2633kB 22%] 41.9kB/s 1m49s 72% [11 libc6-dev 601856/2633kB 22%] 41.9kB/s 1m49s 72% [11 libc6-dev 640736/2633kB 24%] 41.9kB/s 1m48s 72% [11 libc6-dev 682496/2633kB 25%] 41.9kB/s 1m47s 72% [11 libc6-dev 683936/2633kB 25%] 41.9kB/s 1m47s 73% [11 libc6-dev 725696/2633kB 27%] 41.9kB/s 1m46s 73% [11 libc6-dev 727136/2633kB 27%] 41.9kB/s 1m46s 73% [11 libc6-dev 770336/2633kB 29%] 41.9kB/s 1m45s 73% [11 libc6-dev 774656/2633kB 29%] 41.9kB/s 1m45s 73% [11 libc6-dev 814976/2633kB 30%] 41.9kB/s 1m44s 73% [11 libc6-dev 846656/2633kB 32%] 45.6kB/s 1m35s 74% [11 libc6-dev 861056/2633kB 32%] 45.6kB/s 1m34s 74% [11 libc6-dev 905696/2633kB 34%] 45.6kB/s 1m33s 74% [11 libc6-dev 907136/2633kB 34%] 45.6kB/s 1m33s 74% [11 libc6-dev 953216/2633kB 36%] 45.6kB/s 1m32s 74% [11 libc6-dev 966176/2633kB 36%] 45.6kB/s 1m32s 74% [11 libc6-dev 1000736/2633kB 38%] 45.6kB/s 1m31s 75% [11 libc6-dev 1029536/2633kB 39%] 45.6kB/s 1m31s 75% [11 libc6-dev 1049696/2633kB 39%] 45.6kB/s 1m30s 75% [11 libc6-dev 1090016/2633kB 41%] 45.6kB/s 1m29s 75% [11 libc6-dev 1098656/2633kB 41%] 45.6kB/s 1m29s 75% [11 libc6-dev 1146176/2633kB 43%] 45.6kB/s 1m28s 75% [11 libc6-dev 1149056/2633kB 43%] 46.8kB/s 1m26s 76% [11 libc6-dev 1196576/2633kB 45%] 46.8kB/s 1m25s 76% [11 libc6-dev 1210976/2633kB 45%] 46.8kB/s 1m24s 76% [11 libc6-dev 1249856/2633kB 47%] 46.8kB/s 1m23s 76% [11 libc6-dev 1280096/2633kB 48%] 46.8kB/s 1m23s 76% [11 libc6-dev 1300256/2633kB 49%] 46.8kB/s 1m22s 76% [11 libc6-dev 1339136/2633kB 50%] 46.8kB/s 1m22s 77% [11 libc6-dev 1353536/2633kB 51%] 46.8kB/s 1m21s 77% [11 libc6-dev 1403936/2633kB 53%] 46.8kB/s 1m20s 77% [11 libc6-dev 1406816/2633kB 53%] 46.8kB/s 1m20s 77% [11 libc6-dev 1416896/2633kB 53%] 46.8kB/s 1m20s 77% [11 libc6-dev 1416896/2633kB 53%] 46.8kB/s 1m20s 77% [11 libc6-dev 1480256/2633kB 56%] 51.7kB/s 1m11s 77% [11 libc6-dev 1480256/2633kB 56%] 51.7kB/s 1m11s 77% [11 libc6-dev 1491776/2633kB 56%] 51.7kB/s 1m11s 77% [11 libc6-dev 1507616/2633kB 57%] 51.7kB/s 1m10s 77% [11 libc6-dev 1510496/2633kB 57%] 51.7kB/s 1m10s 78% [11 libc6-dev 1539296/2633kB 58%] 51.7kB/s 1m10s 78% [11 libc6-dev 1545056/2633kB 58%] 51.7kB/s 1m10s 78% [11 libc6-dev 1568096/2633kB 59%] 51.7kB/s 1m9s 78% [11 libc6-dev 1598336/2633kB 60%] 51.7kB/s 1m9s 78% [11 libc6-dev 1604096/2633kB 60%] 51.7kB/s 1m9s 78% [11 libc6-dev 1628576/2633kB 61%] 51.7kB/s 1m8s 78% [11 libc6-dev 1660256/2633kB 63%] 51.7kB/s 1m8s 78% [11 libc6-dev 1660256/2633kB 63%] 27.7kB/s 2m6s 79% [11 libc6-dev 1691936/2633kB 64%] 27.7kB/s 2m5s 79% [11 libc6-dev 1714976/2633kB 65%] 27.7kB/s 2m4s 79% [11 libc6-dev 1725056/2633kB 65%] 27.7kB/s 2m4s 79% [11 libc6-dev 1758176/2633kB 66%] 27.7kB/s 2m3s 79% [11 libc6-dev 1758176/2633kB 66%] 27.7kB/s 2m3s 79% [11 libc6-dev 1792736/2633kB 68%] 27.7kB/s 2m2s 79% [11 libc6-dev 1818656/2633kB 69%] 27.7kB/s 2m1s 79% [11 libc6-dev 1827296/2633kB 69%] 27.7kB/s 2m0s 80% [11 libc6-dev 1861856/2633kB 70%] 27.7kB/s 1m59s 80% [11 libc6-dev 1882016/2633kB 71%] 27.7kB/s 1m58s 80% [11 libc6-dev 1897856/2633kB 72%] 27.7kB/s 1m58s 80% [11 libc6-dev 1933856/2633kB 73%] 42.3kB/s 1m16s 80% [11 libc6-dev 1964096/2633kB 74%] 42.3kB/s 1m15s 80% [11 libc6-dev 1971296/2633kB 74%] 42.3kB/s 1m15s 80% [11 libc6-dev 2008736/2633kB 76%] 42.3kB/s 1m14s 81% [11 libc6-dev 2047616/2633kB 77%] 42.3kB/s 1m13s 81% [11 libc6-dev 2079296/2633kB 78%] 42.3kB/s 1m13s 81% [11 libc6-dev 2086496/2633kB 79%] 42.3kB/s 1m13s 81% [11 libc6-dev 2125376/2633kB 80%] 42.3kB/s 1m12s 81% [11 libc6-dev 2161376/2633kB 82%] 42.3kB/s 1m11s 81% [11 libc6-dev 2181536/2633kB 82%] 42.3kB/s 1m10s 82% [11 libc6-dev 2207456/2633kB 83%] 42.3kB/s 1m10s 82% [11 libc6-dev 2244896/2633kB 85%] 42.3kB/s 1m9s 82% [11 libc6-dev 2270816/2633kB 86%] 52.2kB/s 55s 82% [11 libc6-dev 2292416/2633kB 87%] 52.2kB/s 55s 82% [11 libc6-dev 2331296/2633kB 88%] 52.2kB/s 54s 82% [11 libc6-dev 2344256/2633kB 89%] 52.2kB/s 54s 83% [11 libc6-dev 2377376/2633kB 90%] 52.2kB/s 53s 83% [11 libc6-dev 2420576/2633kB 91%] 52.2kB/s 52s 83% [11 libc6-dev 2446496/2633kB 92%] 52.2kB/s 52s 83% [11 libc6-dev 2470976/2633kB 93%] 52.2kB/s 51s 83% [11 libc6-dev 2512736/2633kB 95%] 52.2kB/s 51s 84% [11 libc6-dev 2540096/2633kB 96%] 52.2kB/s 50s 84% [11 libc6-dev 2563136/2633kB 97%] 52.2kB/s 50s 84% [11 libc6-dev 2607776/2633kB 99%] 52.2kB/s 49s Get:12 http://ftp.jp.debian.org sid/main libstdc++5-3.3-dev 1:3.3.2-0pre4 [766kB]
+ 84% [12 libstdc++5-3.3-dev 1485/766kB 0%] 56.9kB/s 44s 84% [12 libstdc++5-3.3-dev 25965/766kB 3%] 56.9kB/s 44s 85% [12 libstdc++5-3.3-dev 72045/766kB 9%] 56.9kB/s 43s 85% [12 libstdc++5-3.3-dev 99405/766kB 12%] 56.9kB/s 42s 85% [12 libstdc++5-3.3-dev 126765/766kB 16%] 56.9kB/s 42s 85% [12 libstdc++5-3.3-dev 172845/766kB 22%] 56.9kB/s 41s 85% [12 libstdc++5-3.3-dev 204525/766kB 26%] 56.9kB/s 41s 86% [12 libstdc++5-3.3-dev 237645/766kB 31%] 56.9kB/s 40s 86% [12 libstdc++5-3.3-dev 276525/766kB 36%] 56.9kB/s 39s 86% [12 libstdc++5-3.3-dev 309645/766kB 40%] 56.9kB/s 39s 86% [12 libstdc++5-3.3-dev 338445/766kB 44%] 56.9kB/s 38s 87% [12 libstdc++5-3.3-dev 383085/766kB 49%] 56.9kB/s 37s 87% [12 libstdc++5-3.3-dev 416205/766kB 54%] 64.7kB/s 32s 87% [12 libstdc++5-3.3-dev 437805/766kB 57%] 64.7kB/s 32s 87% [12 libstdc++5-3.3-dev 486765/766kB 63%] 64.7kB/s 31s 87% [12 libstdc++5-3.3-dev 505485/766kB 65%] 64.7kB/s 31s 88% [12 libstdc++5-3.3-dev 548685/766kB 71%] 64.7kB/s 30s 88% [12 libstdc++5-3.3-dev 568845/766kB 74%] 64.7kB/s 30s 88% [12 libstdc++5-3.3-dev 604845/766kB 78%] 64.7kB/s 29s 88% [12 libstdc++5-3.3-dev 640845/766kB 83%] 64.7kB/s 29s 88% [12 libstdc++5-3.3-dev 662445/766kB 86%] 64.7kB/s 29s 88% [12 libstdc++5-3.3-dev 709965/766kB 92%] 64.7kB/s 28s 89% [12 libstdc++5-3.3-dev 731565/766kB 95%] 64.7kB/s 28s Get:13 http://ftp.jp.debian.org sid/main g++-3.3 1:3.3.2-0pre4 [1767kB]
+ 89% [13 g++-3.3 2340/1767kB 0%] 64.7kB/s 27s 89% [13 g++-3.3 23940/1767kB 1%] 59.6kB/s 29s 89% [13 g++-3.3 67140/1767kB 3%] 59.6kB/s 28s 89% [13 g++-3.3 82980/1767kB 4%] 59.6kB/s 28s 90% [13 g++-3.3 131940/1767kB 7%] 59.6kB/s 27s 90% [13 g++-3.3 159300/1767kB 9%] 59.6kB/s 27s 90% [13 g++-3.3 192420/1767kB 10%] 59.6kB/s 26s 90% [13 g++-3.3 225540/1767kB 12%] 59.6kB/s 26s 90% [13 g++-3.3 229860/1767kB 13%] 59.6kB/s 26s 90% [13 g++-3.3 229860/1767kB 13%] 59.6kB/s 26s 91% [13 g++-3.3 293220/1767kB 16%] 59.6kB/s 24s 91% [13 g++-3.3 296100/1767kB 16%] 59.6kB/s 24s 91% [13 g++-3.3 300420/1767kB 17%] 59.6kB/s 24s 91% [13 g++-3.3 304740/1767kB 17%] 43.6kB/s 33s 91% [13 g++-3.3 307620/1767kB 17%] 43.6kB/s 33s 91% [13 g++-3.3 319140/1767kB 18%] 43.6kB/s 33s 91% [13 g++-3.3 336420/1767kB 19%] 43.6kB/s 33s 91% [13 g++-3.3 363780/1767kB 20%] 43.6kB/s 32s 91% [13 g++-3.3 395460/1767kB 22%] 43.6kB/s 31s 91% [13 g++-3.3 406980/1767kB 23%] 43.6kB/s 31s 91% [13 g++-3.3 427140/1767kB 24%] 43.6kB/s 31s 92% [13 g++-3.3 460260/1767kB 26%] 43.6kB/s 30s 92% [13 g++-3.3 480420/1767kB 27%] 43.6kB/s 29s 92% [13 g++-3.3 493380/1767kB 27%] 43.6kB/s 29s 92% [13 g++-3.3 527940/1767kB 29%] 43.6kB/s 28s 92% [13 g++-3.3 533700/1767kB 30%] 35.3kB/s 35s 92% [13 g++-3.3 562500/1767kB 31%] 35.3kB/s 34s 92% [13 g++-3.3 595620/1767kB 33%] 35.3kB/s 33s 92% [13 g++-3.3 598500/1767kB 33%] 35.3kB/s 33s 93% [13 g++-3.3 634500/1767kB 35%] 35.3kB/s 32s 93% [13 g++-3.3 669060/1767kB 37%] 35.3kB/s 31s 93% [13 g++-3.3 671940/1767kB 38%] 35.3kB/s 31s 93% [13 g++-3.3 707940/1767kB 40%] 35.3kB/s 30s 93% [13 g++-3.3 745380/1767kB 42%] 35.3kB/s 29s 93% [13 g++-3.3 765540/1767kB 43%] 35.3kB/s 28s 94% [13 g++-3.3 785700/1767kB 44%] 35.3kB/s 28s 94% [13 g++-3.3 824580/1767kB 46%] 35.3kB/s 27s 94% [13 g++-3.3 863460/1767kB 48%] 51.3kB/s 17s 94% [13 g++-3.3 866340/1767kB 49%] 51.3kB/s 17s 94% [13 g++-3.3 906660/1767kB 51%] 51.3kB/s 17s 95% [13 g++-3.3 948420/1767kB 53%] 51.3kB/s 16s 95% [13 g++-3.3 977220/1767kB 55%] 51.3kB/s 15s 95% [13 g++-3.3 991620/1767kB 56%] 51.3kB/s 15s 95% [13 g++-3.3 1034820/1767kB 58%] 51.3kB/s 14s 95% [13 g++-3.3 1078020/1767kB 61%] 51.3kB/s 13s 95% [13 g++-3.3 1079460/1767kB 61%] 51.3kB/s 13s 96% [13 g++-3.3 1124100/1767kB 63%] 51.3kB/s 12s 96% [13 g++-3.3 1168740/1767kB 66%] 51.3kB/s 11s 96% [13 g++-3.3 1178820/1767kB 66%] 51.3kB/s 11s 96% [13 g++-3.3 1214820/1767kB 68%] 55.1kB/s 10s 96% [13 g++-3.3 1262340/1767kB 71%] 55.1kB/s 9s 96% [13 g++-3.3 1269540/1767kB 71%] 55.1kB/s 9s 97% [13 g++-3.3 1309860/1767kB 74%] 55.1kB/s 8s 97% [13 g++-3.3 1357380/1767kB 76%] 55.1kB/s 7s 97% [13 g++-3.3 1358820/1767kB 76%] 55.1kB/s 7s 97% [13 g++-3.3 1407780/1767kB 79%] 55.1kB/s 6s 97% [13 g++-3.3 1438020/1767kB 81%] 55.1kB/s 6s 98% [13 g++-3.3 1458180/1767kB 82%] 55.1kB/s 5s 98% [13 g++-3.3 1502820/1767kB 85%] 55.1kB/s 5s 98% [13 g++-3.3 1520100/1767kB 86%] 55.1kB/s 4s 98% [13 g++-3.3 1558980/1767kB 88%] 55.1kB/s 4s 98% [13 g++-3.3 1600740/1767kB 90%] 60.3kB/s 2s 98% [13 g++-3.3 1610820/1767kB 91%] 60.3kB/s 2s 99% [13 g++-3.3 1662660/1767kB 94%] 60.3kB/s 1s 99% [13 g++-3.3 1672740/1767kB 94%] 60.3kB/s 1s 99% [13 g++-3.3 1715940/1767kB 97%] 60.3kB/s 1s 99% [13 g++-3.3 1756260/1767kB 99%] 60.3kB/s 0s 99% [Waiting for headers] 60.3kB/s 0s Get:14 http://ftp.jp.debian.org sid/main g++ 4:3.3.1-2 [1390B]
+ Get:15 http://ftp.jp.debian.org sid/main gcc 4:3.3.1-2 [4850B]
+ 99% [15 gcc 845/4850B 17%] 60.3kB/s 0s 99% [Waiting for headers] 60.3kB/s 0s Get:16 http://ftp.jp.debian.org sid/main build-essential 10 [6450B]
+ 99% [16 build-essential 2871/6450B 44%] 60.3kB/s 0s 100% [Working] 60.3kB/s 0s Fetched 16.6MB in 4m49s (57.6kB/s)
+Selecting previously deselected package binutils.
+(Reading database ... 6136 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.1-2_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 .../archives/perl_5.8.1-2_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.1-2) ...
+Setting up g++-3.3 (3.3.2-0pre4) ...
+Setting up g++ (3.3.1-2) ...
+
+Setting up perl (5.8.1-2) ...
+
+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 = 6359
+tracing thread pid = 14626
- -> Exit code 100
+ -> Successful exit from user-mode linux