Closed BrytonLee closed 6 months ago
The docker image build is or should be independent of your host system.
Can you paste the ~error messages~ output that you see from the make docker-image
?
Can you try the answer from this SO question?
Can you try the answer from this SO question?
Tried, but doesn't work.
The docker image build is or should be independent of your host system. Can you paste the ~error messages~ output that you see from the
make docker-image
?
Setting up libfile-find-rule-perl (0.34-3) ... Selecting previously unselected package usrmerge. (Reading database ... 8766 files and directories currently installed.) Preparing to unpack .../archives/usrmerge_39_all.deb ... Unpacking usrmerge (39) ... Setting up usrmerge (39) ... Warning: overlayfs detected, /usr/lib/usrmerge/convert-usrmerge will not be run automatically. See #1008202 for details.
If this is a container then it can be converted by unpacking the image, entering it with chroot(8), installing usrmerge and then repacking the image again. at /usr/lib/usrmerge/convert-usrmerge line 408. E: usrmerge failed. dpkg: error processing package usrmerge (--configure): installed usrmerge package post-installation script subprocess returned error exit status 1 Errors were encountered while processing: usrmerge E: Sub-process /usr/bin/dpkg returned an error code (1) The command '/bin/sh -c apt-get update && apt-get dist-upgrade -y' returned a non-zero code: 100 make: *** [Makefile:58: docker-image] Error 100
I revised the Dockerfile to narrow down the actual command that report this error. Thererfore, it only contains apt-get update && apt-get dist-upgrade -y
, which is different from the original RUN command.
It must be a network problem,I had the same problem, I built using a foreign server without any problems
tion script subprocess returned error exit status 1
Thank you. Any method to confirm that? My experience is that the command executed pretty fast, didn't see any network timeout .
It must be a network problem,I had the same problem, I built using a foreign server without any problems
Could you tell me what's your OS version?
Successfully built version Welcome to Ubuntu 22.04.1 LTS (GNU/Linux 5.15.0-46-generic x86_64)
Successfully built version Welcome to Ubuntu 22.04.1 LTS (GNU/Linux 5.15.0-46-generic x86_64)
Appreciate it. Did you see any error from installing usrmerge
, it looks like it is failed to install this package on my Ubuntu, which I believe it is invoked by apt-get update
.
This is a screenshot of the log of the machine that reported the error
When I switch to a US server for installation, everything works fine
This is a screenshot of the log of the machine that reported the error
I see. I think this error is different with mine, and there is no evidence point to network, I have a proxy with necessary capabilities but still don't work.
It seems that exit code: 100 is a common code and doesn't direct to any specific error.
Just a wild guess: did you try docker system prune
, maybe you are out of disk space (check cache usage with docker system df
).
What still puzzles me is that in my image, usrmerge
isn't even installed. Why is it going to be installed in yours?
More (bad) info about usrmerge
: https://askubuntu.com/questions/1406991/ubuntu-22-04-usrmerge-fatal-error
What still puzzles me is that in my image,
usrmerge
isn't even installed. Why is it going to be installed in yours?More (bad) info about
usrmerge
: https://askubuntu.com/questions/1406991/ubuntu-22-04-usrmerge-fatal-error
Thank you. How many disk capacities should I preserve for make docker-image
? I tried docker ssytem df
:
$ sudo docker system df TYPE TOTAL ACTIVE SIZE RECLAIMABLE Images 4 1 16.66GB 16.66GB (100%) Containers 1 0 188.4MB 188.4MB (100%) Local Volumes 0 0 0B 0B Build Cache 0 0 0B 0B
Is there any limit on docker, could you guide me how to modify it?
Is there any limit on docker, could you guide me how to modify it?
Not a docker expert here, the info should be available through search.
But again, your output shows libfile-find-rule-perl
and usrmerge
being installed. But they are not going to be installed here when building the docker image. Both our outputs should be the same - except the base image (debian:testing) is different for you and me. Or the Debian repositories are out of sync.
Are you on Arm64? See uname -m
which is x86_64
here.
I see. Yes, x86_64, my Ubuntu runs on AMD64.
Have you tried a brand new install? I didn't run make docker image
succeeded even once, so there is no cache for my runs. :-)
Have you tried a brand new install? I didn't run
make docker image
succeeded even once, so there is no cache for my runs. :-)
Yes I did by adding --no-cache
to the docker build command line in the Makefile
.
I also know that several colleagues tested building the docker image and none of them had issues.
Again, let's find out why your package list is different from mine. That really should be exactly the same!
My package installation output:
$ make docker-image
docker build --no-cache -t profiling-agent --build-arg arch=amd64 -f Dockerfile .
Sending build context to Docker daemon 112MB
Step 1/14 : FROM debian:testing
---> c5047ec52314
Step 2/14 : WORKDIR /agent
---> Running in 4406333ffb50
Removing intermediate container 4406333ffb50
---> 9bc851797fa7
Step 3/14 : ARG arch=amd64
---> Running in c628f1359961
Removing intermediate container c628f1359961
---> 0bde6270ca53
Step 4/14 : RUN apt-get update -y && apt-get dist-upgrade -y && apt-get install -y curl wget cmake dwz lsb-release software-properties-common gnupg git clang llvm golang unzip
---> Running in 30c07f08a0eb
Get:1 http://deb.debian.org/debian testing InRelease [158 kB]
Get:2 http://deb.debian.org/debian testing-updates InRelease [45.1 kB]
Get:3 http://deb.debian.org/debian-security testing-security InRelease [43.5 kB]
Get:4 http://deb.debian.org/debian testing/main amd64 Packages [8880 kB]
Fetched 9127 kB in 1s (11.4 MB/s)
Reading package lists...
Reading package lists...
Building dependency tree...
Reading state information...
Calculating upgrade...
The following packages will be upgraded:
apt base-files debconf debianutils gzip libapt-pkg6.0 libbz2-1.0 libc-bin
libc6 libcap-ng0 libdebconfclient0 libffi8 libhogweed6 liblz4-1 liblzma5
libnettle8 libpcre2-8-0 libssl3 libsystemd0 libtinfo6 libudev1 libunistring5
libxxhash0 login ncurses-base ncurses-bin passwd sysvinit-utils
28 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Need to get 13.1 MB of archives.
After this operation, 25.6 kB of additional disk space will be used.
Get:1 http://deb.debian.org/debian testing/main amd64 base-files amd64 13.1 [70.8 kB]
Get:2 http://deb.debian.org/debian testing/main amd64 debianutils amd64 5.17 [89.0 kB]
Get:3 http://deb.debian.org/debian testing/main amd64 gzip amd64 1.12-1.1 [133 kB]
Get:4 http://deb.debian.org/debian testing/main amd64 login amd64 1:4.13+dfsg1-4 [616 kB]
Get:5 http://deb.debian.org/debian testing/main amd64 ncurses-bin amd64 6.4+20240414-1 [433 kB]
Get:6 http://deb.debian.org/debian testing/main amd64 libc6 amd64 2.37-15 [2750 kB]
Get:7 http://deb.debian.org/debian testing/main amd64 libbz2-1.0 amd64 1.0.8-5.1 [38.0 kB]
Get:8 http://deb.debian.org/debian testing/main amd64 liblz4-1 amd64 1.9.4-2 [61.4 kB]
Get:9 http://deb.debian.org/debian testing/main amd64 liblzma5 amd64 5.6.1+really5.4.5-1 [240 kB]
Get:10 http://deb.debian.org/debian testing/main amd64 libsystemd0 amd64 255.4-1 [364 kB]
Get:11 http://deb.debian.org/debian testing/main amd64 libudev1 amd64 255.4-1 [125 kB]
Get:12 http://deb.debian.org/debian testing/main amd64 libxxhash0 amd64 0.8.2-2+b1 [26.6 kB]
Get:13 http://deb.debian.org/debian testing/main amd64 libapt-pkg6.0 amd64 2.7.12 [983 kB]
Get:14 http://deb.debian.org/debian testing/main amd64 apt amd64 2.7.12 [1368 kB]
Get:15 http://deb.debian.org/debian testing/main amd64 libc-bin amd64 2.37-15 [602 kB]
Get:16 http://deb.debian.org/debian testing/main amd64 ncurses-base all 6.4+20240414-1 [269 kB]
Get:17 http://deb.debian.org/debian testing/main amd64 sysvinit-utils amd64 3.08-7 [32.2 kB]
Get:18 http://deb.debian.org/debian testing/main amd64 debconf all 1.5.86 [119 kB]
Get:19 http://deb.debian.org/debian testing/main amd64 libcap-ng0 amd64 0.8.5-1 [17.1 kB]
Get:20 http://deb.debian.org/debian testing/main amd64 libdebconfclient0 amd64 0.271+b1 [10.2 kB]
Get:21 http://deb.debian.org/debian testing/main amd64 libffi8 amd64 3.4.6-1 [23.6 kB]
Get:22 http://deb.debian.org/debian testing/main amd64 libnettle8 amd64 3.9.1-2+b1 [296 kB]
Get:23 http://deb.debian.org/debian testing/main amd64 libhogweed6 amd64 3.9.1-2+b1 [328 kB]
Get:24 http://deb.debian.org/debian testing/main amd64 libpcre2-8-0 amd64 10.42-4+b1 [262 kB]
Get:25 http://deb.debian.org/debian testing/main amd64 libssl3 amd64 3.1.5-1 [2063 kB]
Get:26 http://deb.debian.org/debian testing/main amd64 libtinfo6 amd64 6.4+20240414-1 [344 kB]
Get:27 http://deb.debian.org/debian testing/main amd64 libunistring5 amd64 1.2-1 [425 kB]
Get:28 http://deb.debian.org/debian testing/main amd64 passwd amd64 1:4.13+dfsg1-4 [973 kB]
debconf: delaying package configuration, since apt-utils is not installed
Fetched 13.1 MB in 0s (64.9 MB/s)
(Reading database ... 5222 files and directories currently installed.)
Preparing to unpack .../base-files_13.1_amd64.deb ...
Unpacking base-files (13.1) over (13) ...
Setting up base-files (13.1) ...
(Reading database ... 5222 files and directories currently installed.)
Preparing to unpack .../debianutils_5.17_amd64.deb ...
Unpacking debianutils (5.17) over (5.16) ...
Setting up debianutils (5.17) ...
(Reading database ... 5222 files and directories currently installed.)
Preparing to unpack .../gzip_1.12-1.1_amd64.deb ...
Unpacking gzip (1.12-1.1) over (1.12-1) ...
dpkg: warning: old file '/bin/uncompress' is the same as several new files! (both '/usr/bin/gunzip' and '/usr/bin/uncompress')
dpkg: warning: old file '/bin/gunzip' is the same as several new files! (both '/usr/bin/gunzip' and '/usr/bin/uncompress')
Setting up gzip (1.12-1.1) ...
(Reading database ... 5222 files and directories currently installed.)
Preparing to unpack .../login_1%3a4.13+dfsg1-4_amd64.deb ...
Unpacking login (1:4.13+dfsg1-4) over (1:4.13+dfsg1-3+b1) ...
Setting up login (1:4.13+dfsg1-4) ...
(Reading database ... 5221 files and directories currently installed.)
Preparing to unpack .../ncurses-bin_6.4+20240414-1_amd64.deb ...
Unpacking ncurses-bin (6.4+20240414-1) over (6.4+20240113-1) ...
Setting up ncurses-bin (6.4+20240414-1) ...
(Reading database ... 5221 files and directories currently installed.)
Preparing to unpack .../libc6_2.37-15_amd64.deb ...
debconf: unable to initialize frontend: Dialog
debconf: (TERM is not set, so the dialog frontend is not usable.)
debconf: falling back to frontend: Readline
debconf: unable to initialize frontend: Readline
debconf: (Can't locate Term/ReadLine.pm in @INC (you may need to install the Term::ReadLine module) (@INC entries checked: /etc/perl /usr/local/lib/x86_64-linux-gnu/perl/5.38.2 /usr/local/share/perl/5.38.2 /usr/lib/x86_64-linux-gnu/perl5/5.38 /usr/share/perl5 /usr/lib/x86_64-linux-gnu/perl-base /usr/lib/x86_64-linux-gnu/perl/5.38 /usr/share/perl/5.38 /usr/local/lib/site_perl) at /usr/share/perl5/Debconf/FrontEnd/Readline.pm line 8.)
debconf: falling back to frontend: Teletype
Unpacking libc6:amd64 (2.37-15) over (2.37-15~deb13u1) ...
Setting up libc6:amd64 (2.37-15) ...
debconf: unable to initialize frontend: Dialog
debconf: (TERM is not set, so the dialog frontend is not usable.)
debconf: falling back to frontend: Readline
debconf: unable to initialize frontend: Readline
debconf: (Can't locate Term/ReadLine.pm in @INC (you may need to install the Term::ReadLine module) (@INC entries checked: /etc/perl /usr/local/lib/x86_64-linux-gnu/perl/5.38.2 /usr/local/share/perl/5.38.2 /usr/lib/x86_64-linux-gnu/perl5/5.38 /usr/share/perl5 /usr/lib/x86_64-linux-gnu/perl-base /usr/lib/x86_64-linux-gnu/perl/5.38 /usr/share/perl/5.38 /usr/local/lib/site_perl) at /usr/share/perl5/Debconf/FrontEnd/Readline.pm line 8.)
debconf: falling back to frontend: Teletype
(Reading database ... 5221 files and directories currently installed.)
Preparing to unpack .../libbz2-1.0_1.0.8-5.1_amd64.deb ...
Unpacking libbz2-1.0:amd64 (1.0.8-5.1) over (1.0.8-5+b2) ...
Setting up libbz2-1.0:amd64 (1.0.8-5.1) ...
(Reading database ... 5220 files and directories currently installed.)
Preparing to unpack .../liblz4-1_1.9.4-2_amd64.deb ...
Unpacking liblz4-1:amd64 (1.9.4-2) over (1.9.4-1+b2) ...
Setting up liblz4-1:amd64 (1.9.4-2) ...
(Reading database ... 5219 files and directories currently installed.)
Preparing to unpack .../liblzma5_5.6.1+really5.4.5-1_amd64.deb ...
Unpacking liblzma5:amd64 (5.6.1+really5.4.5-1) over (5.4.5-0.3) ...
Setting up liblzma5:amd64 (5.6.1+really5.4.5-1) ...
(Reading database ... 5219 files and directories currently installed.)
Preparing to unpack .../libsystemd0_255.4-1_amd64.deb ...
Unpacking libsystemd0:amd64 (255.4-1) over (255.3-2) ...
Setting up libsystemd0:amd64 (255.4-1) ...
(Reading database ... 5219 files and directories currently installed.)
Preparing to unpack .../libudev1_255.4-1_amd64.deb ...
Unpacking libudev1:amd64 (255.4-1) over (255.3-2) ...
Setting up libudev1:amd64 (255.4-1) ...
(Reading database ... 5219 files and directories currently installed.)
Preparing to unpack .../libxxhash0_0.8.2-2+b1_amd64.deb ...
Unpacking libxxhash0:amd64 (0.8.2-2+b1) over (0.8.2-2) ...
Setting up libxxhash0:amd64 (0.8.2-2+b1) ...
(Reading database ... 5220 files and directories currently installed.)
Preparing to unpack .../libapt-pkg6.0_2.7.12_amd64.deb ...
Unpacking libapt-pkg6.0:amd64 (2.7.12) over (2.7.10) ...
Setting up libapt-pkg6.0:amd64 (2.7.12) ...
(Reading database ... 5220 files and directories currently installed.)
Preparing to unpack .../archives/apt_2.7.12_amd64.deb ...
Unpacking apt (2.7.12) over (2.7.10) ...
Setting up apt (2.7.12) ...
(Reading database ... 5220 files and directories currently installed.)
Preparing to unpack .../libc-bin_2.37-15_amd64.deb ...
Unpacking libc-bin (2.37-15) over (2.37-15~deb13u1) ...
Setting up libc-bin (2.37-15) ...
(Reading database ... 5220 files and directories currently installed.)
Preparing to unpack .../ncurses-base_6.4+20240414-1_all.deb ...
Unpacking ncurses-base (6.4+20240414-1) over (6.4+20240113-1) ...
Setting up ncurses-base (6.4+20240414-1) ...
(Reading database ... 5220 files and directories currently installed.)
Preparing to unpack .../sysvinit-utils_3.08-7_amd64.deb ...
Unpacking sysvinit-utils (3.08-7) over (3.08-6) ...
dpkg: warning: unable to delete old directory '/lib/lsb/init-functions.d': Directory not empty
dpkg: warning: unable to delete old directory '/lib/lsb': Directory not empty
dpkg: warning: unable to delete old directory '/lib/init': Directory not empty
Setting up sysvinit-utils (3.08-7) ...
(Reading database ... 5220 files and directories currently installed.)
Preparing to unpack .../debconf_1.5.86_all.deb ...
Unpacking debconf (1.5.86) over (1.5.85) ...
Setting up debconf (1.5.86) ...
debconf: unable to initialize frontend: Dialog
debconf: (TERM is not set, so the dialog frontend is not usable.)
debconf: falling back to frontend: Readline
debconf: unable to initialize frontend: Readline
debconf: (Can't locate Term/ReadLine.pm in @INC (you may need to install the Term::ReadLine module) (@INC entries checked: /etc/perl /usr/local/lib/x86_64-linux-gnu/perl/5.38.2 /usr/local/share/perl/5.38.2 /usr/lib/x86_64-linux-gnu/perl5/5.38 /usr/share/perl5 /usr/lib/x86_64-linux-gnu/perl-base /usr/lib/x86_64-linux-gnu/perl/5.38 /usr/share/perl/5.38 /usr/local/lib/site_perl) at /usr/share/perl5/Debconf/FrontEnd/Readline.pm line 8.)
debconf: falling back to frontend: Teletype
(Reading database ... 5220 files and directories currently installed.)
Preparing to unpack .../libcap-ng0_0.8.5-1_amd64.deb ...
Unpacking libcap-ng0:amd64 (0.8.5-1) over (0.8.4-1) ...
Setting up libcap-ng0:amd64 (0.8.5-1) ...
(Reading database ... 5220 files and directories currently installed.)
Preparing to unpack .../libdebconfclient0_0.271+b1_amd64.deb ...
Unpacking libdebconfclient0:amd64 (0.271+b1) over (0.271) ...
Setting up libdebconfclient0:amd64 (0.271+b1) ...
(Reading database ... 5221 files and directories currently installed.)
Preparing to unpack .../libffi8_3.4.6-1_amd64.deb ...
Unpacking libffi8:amd64 (3.4.6-1) over (3.4.4-2) ...
Setting up libffi8:amd64 (3.4.6-1) ...
(Reading database ... 5221 files and directories currently installed.)
Preparing to unpack .../libnettle8_3.9.1-2+b1_amd64.deb ...
Unpacking libnettle8:amd64 (3.9.1-2+b1) over (3.9.1-2) ...
Setting up libnettle8:amd64 (3.9.1-2+b1) ...
(Reading database ... 5222 files and directories currently installed.)
Preparing to unpack .../libhogweed6_3.9.1-2+b1_amd64.deb ...
Unpacking libhogweed6:amd64 (3.9.1-2+b1) over (3.9.1-2) ...
Setting up libhogweed6:amd64 (3.9.1-2+b1) ...
(Reading database ... 5223 files and directories currently installed.)
Preparing to unpack .../libpcre2-8-0_10.42-4+b1_amd64.deb ...
Unpacking libpcre2-8-0:amd64 (10.42-4+b1) over (10.42-4) ...
Setting up libpcre2-8-0:amd64 (10.42-4+b1) ...
(Reading database ... 5224 files and directories currently installed.)
Preparing to unpack .../libssl3_3.1.5-1_amd64.deb ...
Unpacking libssl3:amd64 (3.1.5-1) over (3.1.4-2) ...
Setting up libssl3:amd64 (3.1.5-1) ...
(Reading database ... 5224 files and directories currently installed.)
Preparing to unpack .../libtinfo6_6.4+20240414-1_amd64.deb ...
Unpacking libtinfo6:amd64 (6.4+20240414-1) over (6.4+20240113-1) ...
Setting up libtinfo6:amd64 (6.4+20240414-1) ...
(Reading database ... 5224 files and directories currently installed.)
Preparing to unpack .../libunistring5_1.2-1_amd64.deb ...
Unpacking libunistring5:amd64 (1.2-1) over (1.1-2) ...
Setting up libunistring5:amd64 (1.2-1) ...
(Reading database ... 5224 files and directories currently installed.)
Preparing to unpack .../passwd_1%3a4.13+dfsg1-4_amd64.deb ...
Unpacking passwd (1:4.13+dfsg1-4) over (1:4.13+dfsg1-3+b1) ...
Setting up passwd (1:4.13+dfsg1-4) ...
Processing triggers for libc-bin (2.37-15) ...
Reading package lists...
Building dependency tree...
Reading state information...
The following additional packages will be installed:
adduser appstream binutils binutils-common binutils-x86-64-linux-gnu
ca-certificates clang-16 cmake-data cpp cpp-13 cpp-13-x86-64-linux-gnu
cpp-x86-64-linux-gnu dbus dbus-bin dbus-daemon dbus-session-bus-common
dbus-system-bus-common dbus-user-session dirmngr distro-info-data dmsetup
fontconfig-config fonts-dejavu-core fonts-dejavu-mono g++ g++-13
g++-13-x86-64-linux-gnu g++-x86-64-linux-gnu gcc gcc-13 gcc-13-base
gcc-13-x86-64-linux-gnu gcc-x86-64-linux-gnu gir1.2-girepository-2.0
gir1.2-glib-2.0 gir1.2-packagekitglib-1.0 git-man gnupg-l10n gnupg-utils
golang-1.22 golang-1.22-doc golang-1.22-go golang-1.22-src golang-doc
golang-go golang-src gpg gpg-agent gpg-wks-client gpg-wks-server gpgconf
gpgsm icu-devtools iso-codes krb5-locales less lib32gcc-s1 lib32stdc++6
libabsl20220623 libaom3 libapparmor1 libappstream5 libarchive13 libargon2-1
libasan8 libassuan0 libatomic1 libavif16 libbinutils libbrotli1 libbsd0
libc-dev-bin libc-devtools libc6-dev libc6-i386 libcap2-bin libcbor0.10
libcc1-0 libclang-common-16-dev libclang-cpp16 libclang-rt-16-dev
libclang1-16 libcrypt-dev libcryptsetup12 libctf-nobfd0 libctf0
libcurl3-gnutls libcurl4 libdav1d7 libdbus-1-3 libde265-0 libdeflate0
libdevmapper1.02.1 libduktape207 libdw1 libedit2 libelf1 liberror-perl
libexpat1 libfdisk1 libffi-dev libfido2-1 libfontconfig1 libfreetype6
libgav1-1 libgc1 libgcc-13-dev libgd3 libgdbm-compat4 libgdbm6
libgirepository-1.0-1 libglib2.0-0 libglib2.0-bin libglib2.0-data libgomp1
libgpm2 libgprofng0 libgssapi-krb5-2 libgstreamer1.0-0 libheif-plugin-aomenc
libheif-plugin-dav1d libheif-plugin-libde265 libheif-plugin-x265 libheif1
libhwasan0 libicu-dev libicu72 libisl23 libitm1 libjansson4 libjbig0
libjpeg62-turbo libjson-c5 libjsoncpp25 libk5crypto3 libkeyutils1 libkmod2
libkrb5-3 libkrb5support0 libksba8 libldap-2.5-0 libldap-common liblerc4
libllvm16 liblsan0 libmpc3 libmpfr6 libncurses-dev libncurses6 libncursesw6
libnghttp2-14 libnpth0 libnsl-dev libnsl2 libnss-systemd libnuma1
libobjc-13-dev libobjc4 libpackagekit-glib2-18 libpam-cap libpam-systemd
libperl5.38 libpfm4 libpkgconf3 libpng16-16 libpolkit-agent-1-0
libpolkit-gobject-1-0 libproc2-0 libpsl5 libpython3-stdlib
libpython3.11-minimal libpython3.11-stdlib libquadmath0 librav1e0
libreadline8 librhash0 librtmp1 libsasl2-2 libsasl2-modules
libsasl2-modules-db libsframe1 libsharpyuv0 libsqlite3-0 libssh2-1
libstdc++-13-dev libstemmer0d libsvtav1enc1d1 libsystemd-shared libtiff6
libtirpc-common libtirpc-dev libtirpc3 libtsan2 libubsan1 libunwind8 libuv1
libwebp7 libx11-6 libx11-data libx265-199 libxau6 libxcb1 libxdmcp6 libxext6
libxml2 libxml2-dev libxmlb2 libxmuu1 libxpm4 libyaml-0-2 libyuv0 libz3-4
libz3-dev linux-libc-dev llvm-16 llvm-16-dev llvm-16-linker-tools
llvm-16-runtime llvm-16-tools llvm-runtime make manpages manpages-dev
media-types netbase openssh-client openssl packagekit packagekit-tools patch
perl perl-modules-5.38 pinentry-curses pkg-config pkgconf pkgconf-bin
polkitd procps psmisc publicsuffix python-apt-common python3 python3-apt
python3-blinker python3-cffi-backend python3-cryptography python3-dbus
python3-distro python3-gi python3-httplib2 python3-jwt
python3-lazr.restfulclient python3-lazr.uri python3-minimal python3-oauthlib
python3-pkg-resources python3-pygments python3-pyparsing
python3-software-properties python3-wadllib python3-yaml python3.11
python3.11-minimal readline-common rpcsvc-proto sgml-base shared-mime-info
systemd systemd-dev systemd-sysv systemd-timesyncd xauth xdg-user-dirs
xml-core
Suggested packages:
liblocale-gettext-perl cron quota apt-config-icons binutils-doc gprofng-gui
clang-16-doc wasi-libc cmake-doc cmake-format elpa-cmake-mode ninja-build
cpp-doc gcc-13-locales cpp-13-doc pinentry-gnome3 tor g++-multilib
g++-13-multilib gcc-13-doc gcc-multilib autoconf automake libtool flex bison
gdb gcc-doc gcc-13-multilib gdb-x86-64-linux-gnu gettext-base git-daemon-run
| git-daemon-sysvinit git-doc git-email git-gui gitk gitweb git-cvs
git-mediawiki git-svn parcimonie xloadimage bzr | brz mercurial subversion
scdaemon isoquery lrzip glibc-doc libgd-tools gdbm-l10n low-memory-monitor
gpm krb5-doc krb5-user gstreamer1.0-tools libheif-plugin-ffmpegdec
libheif-plugin-jpegdec libheif-plugin-jpegenc libheif-plugin-j2kdec
libheif-plugin-j2kenc libheif-plugin-rav1e libheif-plugin-svtenc icu-doc
ncurses-doc sensible-utils libsasl2-modules-gssapi-mit
| libsasl2-modules-gssapi-heimdal libsasl2-modules-ldap libsasl2-modules-otp
libsasl2-modules-sql libstdc++-13-doc llvm-16-doc make-doc man-browser
keychain libpam-ssh monkeysphere ssh-askpass ed diffutils-doc perl-doc
libterm-readline-gnu-perl | libterm-readline-perl-perl
libtap-harness-archive-perl pinentry-doc polkitd-pkla python3-doc python3-tk
python3-venv python-apt-doc python-blinker-doc python-cryptography-doc
python3-cryptography-vectors python-dbus-doc python3-crypto
python3-setuptools python-pygments-doc ttf-bitstream-vera
python-pyparsing-doc python3.11-venv python3.11-doc binfmt-support
readline-doc sgml-base-doc systemd-container systemd-homed systemd-userdbd
systemd-boot systemd-resolved libip4tc2 libqrencode4 libtss2-esys-3.0.2-0
libtss2-mu-4.0.1-0 libtss2-rc0 libtss2-tcti-device0 zip debhelper
Recommended packages:
gnupg
The following NEW packages will be installed:
adduser appstream binutils binutils-common binutils-x86-64-linux-gnu
ca-certificates clang clang-16 cmake cmake-data cpp cpp-13
cpp-13-x86-64-linux-gnu cpp-x86-64-linux-gnu curl dbus dbus-bin dbus-daemon
dbus-session-bus-common dbus-system-bus-common dbus-user-session dirmngr
distro-info-data dmsetup dwz fontconfig-config fonts-dejavu-core
fonts-dejavu-mono g++ g++-13 g++-13-x86-64-linux-gnu g++-x86-64-linux-gnu
gcc gcc-13 gcc-13-base gcc-13-x86-64-linux-gnu gcc-x86-64-linux-gnu
gir1.2-girepository-2.0 gir1.2-glib-2.0 gir1.2-packagekitglib-1.0 git
git-man gnupg gnupg-l10n gnupg-utils golang golang-1.22 golang-1.22-doc
golang-1.22-go golang-1.22-src golang-doc golang-go golang-src gpg gpg-agent
gpg-wks-client gpg-wks-server gpgconf gpgsm icu-devtools iso-codes
krb5-locales less lib32gcc-s1 lib32stdc++6 libabsl20220623 libaom3
libapparmor1 libappstream5 libarchive13 libargon2-1 libasan8 libassuan0
libatomic1 libavif16 libbinutils libbrotli1 libbsd0 libc-dev-bin
libc-devtools libc6-dev libc6-i386 libcap2-bin libcbor0.10 libcc1-0
libclang-common-16-dev libclang-cpp16 libclang-rt-16-dev libclang1-16
libcrypt-dev libcryptsetup12 libctf-nobfd0 libctf0 libcurl3-gnutls libcurl4
libdav1d7 libdbus-1-3 libde265-0 libdeflate0 libdevmapper1.02.1
libduktape207 libdw1 libedit2 libelf1 liberror-perl libexpat1 libfdisk1
libffi-dev libfido2-1 libfontconfig1 libfreetype6 libgav1-1 libgc1
libgcc-13-dev libgd3 libgdbm-compat4 libgdbm6 libgirepository-1.0-1
libglib2.0-0 libglib2.0-bin libglib2.0-data libgomp1 libgpm2 libgprofng0
libgssapi-krb5-2 libgstreamer1.0-0 libheif-plugin-aomenc
libheif-plugin-dav1d libheif-plugin-libde265 libheif-plugin-x265 libheif1
libhwasan0 libicu-dev libicu72 libisl23 libitm1 libjansson4 libjbig0
libjpeg62-turbo libjson-c5 libjsoncpp25 libk5crypto3 libkeyutils1 libkmod2
libkrb5-3 libkrb5support0 libksba8 libldap-2.5-0 libldap-common liblerc4
libllvm16 liblsan0 libmpc3 libmpfr6 libncurses-dev libncurses6 libncursesw6
libnghttp2-14 libnpth0 libnsl-dev libnsl2 libnss-systemd libnuma1
libobjc-13-dev libobjc4 libpackagekit-glib2-18 libpam-cap libpam-systemd
libperl5.38 libpfm4 libpkgconf3 libpng16-16 libpolkit-agent-1-0
libpolkit-gobject-1-0 libproc2-0 libpsl5 libpython3-stdlib
libpython3.11-minimal libpython3.11-stdlib libquadmath0 librav1e0
libreadline8 librhash0 librtmp1 libsasl2-2 libsasl2-modules
libsasl2-modules-db libsframe1 libsharpyuv0 libsqlite3-0 libssh2-1
libstdc++-13-dev libstemmer0d libsvtav1enc1d1 libsystemd-shared libtiff6
libtirpc-common libtirpc-dev libtirpc3 libtsan2 libubsan1 libunwind8 libuv1
libwebp7 libx11-6 libx11-data libx265-199 libxau6 libxcb1 libxdmcp6 libxext6
libxml2 libxml2-dev libxmlb2 libxmuu1 libxpm4 libyaml-0-2 libyuv0 libz3-4
libz3-dev linux-libc-dev llvm llvm-16 llvm-16-dev llvm-16-linker-tools
llvm-16-runtime llvm-16-tools llvm-runtime lsb-release make manpages
manpages-dev media-types netbase openssh-client openssl packagekit
packagekit-tools patch perl perl-modules-5.38 pinentry-curses pkg-config
pkgconf pkgconf-bin polkitd procps psmisc publicsuffix python-apt-common
python3 python3-apt python3-blinker python3-cffi-backend
python3-cryptography python3-dbus python3-distro python3-gi python3-httplib2
python3-jwt python3-lazr.restfulclient python3-lazr.uri python3-minimal
python3-oauthlib python3-pkg-resources python3-pygments python3-pyparsing
python3-software-properties python3-wadllib python3-yaml python3.11
python3.11-minimal readline-common rpcsvc-proto sgml-base shared-mime-info
software-properties-common systemd systemd-dev systemd-sysv
systemd-timesyncd unzip wget xauth xdg-user-dirs xml-core
0 upgraded, 286 newly installed, 0 to remove and 0 not upgraded.
Need to get 345 MB of archives.
After this operation, 1753 MB of additional disk space will be used.
docker build -t profiling-agent --build-arg arch=amd64 -f Dockerfile . DEPRECATED: The legacy builder is deprecated and will be removed in a future release. Install the buildx component to build images with BuildKit: https://docs.docker.com/go/buildx/
Sending build context to Docker daemon 9.357MB Step 1/16 : FROM debian:testing ---> 17029e8afa10 Step 2/16 : WORKDIR /agent ---> Using cache ---> 241b76bcfdd1 Step 3/16 : ARG arch=amd64 ---> Using cache ---> 720d22b4d723 Step 4/16 : RUN apt search usrmerge ---> Using cache ---> cf2eba0b2b76 Step 5/16 : RUN apt-get update && apt-get dist-upgrade -y ---> Running in b9f6d49882b1 Get:1 http://deb.debian.org/debian testing InRelease [158 kB] Get:2 http://deb.debian.org/debian testing/main amd64 Packages [8880 kB] Fetched 9038 kB in 9s (1023 kB/s) Reading package lists... Reading package lists... Building dependency tree... Reading state information... Calculating upgrade... The following packages were automatically installed and are no longer required: libffi7 libgssapi-krb5-2 libk5crypto3 libkeyutils1 libkrb5-3 libkrb5support0 libnsl2 libpcre3 libsepol1 libssl1.1 libtirpc-common libtirpc3 libunistring2 lsb-base Use 'apt autoremove' to remove them. The following packages will be REMOVED: libsemanage1 The following NEW packages will be installed: gcc-14-base libcap2 libffi8 libfile-find-rule-perl libgdbm-compat4 libgdbm6 libmd0 libnumber-compare-perl libperl5.38 libsemanage2 libsepol2 libssl3 libtext-glob-perl libunistring5 netbase perl perl-modules-5.38 sensible-utils usrmerge The following packages will be upgraded: adduser apt base-files base-passwd bash bsdutils coreutils dash debconf debian-archive-keyring debianutils diffutils dpkg e2fsprogs findutils gpgv grep gzip hostname init-system-helpers libacl1 libapt-pkg6.0 libattr1 libaudit-common libaudit1 libblkid1 libbz2-1.0 libc-bin libc6 libcap-ng0 libcom-err2 libcrypt1 libdb5.3 libdebconfclient0 libext2fs2 libgcc-s1 libgcrypt20 libgmp10 libgnutls30 libgpg-error0 libgssapi-krb5-2 libhogweed6 libidn2-0 libk5crypto3 libkeyutils1 libkrb5-3 libkrb5support0 liblz4-1 liblzma5 libmount1 libnettle8 libnsl2 libp11-kit0 libpam-modules libpam-modules-bin libpam-runtime libpam0g libpcre2-8-0 libpcre3 libseccomp2 libselinux1 libsemanage-common libsmartcols1 libss2 libstdc++6 libsystemd0 libtasn1-6 libtinfo6 libtirpc-common libtirpc3 libudev1 libuuid1 libxxhash0 libzstd1 login logsave lsb-base mawk mount ncurses-base ncurses-bin passwd perl-base sed sysvinit-utils tar tzdata util-linux zlib1g 89 upgraded, 19 newly installed, 1 to remove and 0 not upgraded. Need to get 42.8 MB of archives. After this operation, 61.1 MB of additional disk space will be used. Get:1 http://deb.debian.org/debian testing/main amd64 base-files amd64 13.1 [70.8 kB] Get:2 http://deb.debian.org/debian testing/main amd64 libc6 amd64 2.37-15 [2750 kB] Get:3 http://deb.debian.org/debian testing/main amd64 libc-bin amd64 2.37-15 [602 kB] Get:4 http://deb.debian.org/debian testing/main amd64 gcc-14-base amd64 14-20240201-3 [42.3 kB] Get:5 http://deb.debian.org/debian testing/main amd64 libgcc-s1 amd64 14-20240201-3 [71.6 kB] Get:6 http://deb.debian.org/debian testing/main amd64 debianutils amd64 5.17 [89.0 kB] Get:7 http://deb.debian.org/debian testing/main amd64 bash amd64 5.2.21-2 [1492 kB] Get:8 http://deb.debian.org/debian testing/main amd64 bsdutils amd64 1:2.39.3-6 [96.9 kB] Get:9 http://deb.debian.org/debian testing/main amd64 libgmp10 amd64 2:6.3.0+dfsg-2+b1 [559 kB] Get:10 http://deb.debian.org/debian testing/main amd64 libssl3 amd64 3.1.5-1 [2063 kB] Get:11 http://deb.debian.org/debian testing/main amd64 coreutils amd64 9.4-3+b1 [2950 kB] Get:12 http://deb.debian.org/debian testing/main amd64 liblzma5 amd64 5.6.1+really5.4.5-1 [240 kB] Get:13 http://deb.debian.org/debian testing/main amd64 libmd0 amd64 1.1.0-2 [35.8 kB] Get:14 http://deb.debian.org/debian testing/main amd64 libzstd1 amd64 1.5.5+dfsg2-2 [295 kB] Get:15 http://deb.debian.org/debian testing/main amd64 tar amd64 1.35+dfsg-3 [813 kB] Get:16 http://deb.debian.org/debian testing/main amd64 dpkg amd64 1.22.4 [1509 kB] Get:17 http://deb.debian.org/debian testing/main amd64 dash amd64 0.5.12-6 [92.1 kB] Get:18 http://deb.debian.org/debian testing/main amd64 diffutils amd64 1:3.10-1 [375 kB] Get:19 http://deb.debian.org/debian testing/main amd64 findutils amd64 4.9.0-5 [636 kB] Get:20 http://deb.debian.org/debian testing/main amd64 grep amd64 3.11-4 [431 kB] Get:21 http://deb.debian.org/debian testing/main amd64 gzip amd64 1.12-1.1 [133 kB] Get:22 http://deb.debian.org/debian testing/main amd64 hostname amd64 3.23+nmu2 [10.6 kB] Get:23 http://deb.debian.org/debian testing/main amd64 login amd64 1:4.13+dfsg1-4 [616 kB] Get:24 http://deb.debian.org/debian testing/main amd64 libtinfo6 amd64 6.4+20240414-1 [344 kB] Get:25 http://deb.debian.org/debian testing/main amd64 ncurses-bin amd64 6.4+20240414-1 [433 kB] Get:26 http://deb.debian.org/debian testing/main amd64 perl-base amd64 5.38.2-3 [1643 kB] Get:27 http://deb.debian.org/debian testing/main amd64 sed amd64 4.9-2 [329 kB] Get:28 http://deb.debian.org/debian testing/main amd64 libblkid1 amd64 2.39.3-6 [159 kB] Get:29 http://deb.debian.org/debian testing/main amd64 libpcre2-8-0 amd64 10.42-4+b1 [262 kB] Get:30 http://deb.debian.org/debian testing/main amd64 libselinux1 amd64 3.5-2 [74.8 kB] Get:31 http://deb.debian.org/debian testing/main amd64 libmount1 amd64 2.39.3-6 [190 kB] Get:32 http://deb.debian.org/debian testing/main amd64 libsmartcols1 amd64 2.39.3-6 [117 kB] Get:33 http://deb.debian.org/debian testing/main amd64 util-linux amd64 2.39.3-6 [1230 kB] Get:34 http://deb.debian.org/debian testing/main amd64 libdebconfclient0 amd64 0.271+b1 [10.2 kB] Get:35 http://deb.debian.org/debian testing/main amd64 base-passwd amd64 3.6.3 [50.8 kB] Get:36 http://deb.debian.org/debian testing/main amd64 libgpg-error0 amd64 1.47-3 [77.8 kB] Get:37 http://deb.debian.org/debian testing/main amd64 libgcrypt20 amd64 1.10.3-2 [708 kB] Get:38 http://deb.debian.org/debian testing/main amd64 libstdc++6 amd64 14-20240201-3 [714 kB] Get:39 http://deb.debian.org/debian testing/main amd64 libbz2-1.0 amd64 1.0.8-5.1 [38.0 kB] Get:40 http://deb.debian.org/debian testing/main amd64 liblz4-1 amd64 1.9.4-2 [61.4 kB] Get:41 http://deb.debian.org/debian testing/main amd64 libcap2 amd64 1:2.66-5 [27.4 kB] Get:42 http://deb.debian.org/debian testing/main amd64 libsystemd0 amd64 255.4-1 [364 kB] Get:43 http://deb.debian.org/debian testing/main amd64 libudev1 amd64 255.4-1 [125 kB] Get:44 http://deb.debian.org/debian testing/main amd64 libxxhash0 amd64 0.8.2-2+b1 [26.6 kB] Get:45 http://deb.debian.org/debian testing/main amd64 zlib1g amd64 1:1.3.dfsg-3+b1 [87.8 kB] Get:46 http://deb.debian.org/debian testing/main amd64 libapt-pkg6.0 amd64 2.7.12 [983 kB] Get:47 http://deb.debian.org/debian testing/main amd64 libnettle8 amd64 3.9.1-2+b1 [296 kB] Get:48 http://deb.debian.org/debian testing/main amd64 libffi8 amd64 3.4.6-1 [23.6 kB] Get:49 http://deb.debian.org/debian testing/main amd64 libp11-kit0 amd64 0.25.3-4 [418 kB] Get:50 http://deb.debian.org/debian testing/main amd64 libunistring5 amd64 1.2-1 [425 kB] Get:51 http://deb.debian.org/debian testing/main amd64 libhogweed6 amd64 3.9.1-2+b1 [328 kB] Get:52 http://deb.debian.org/debian testing/main amd64 libidn2-0 amd64 2.3.7-2 [128 kB] Get:53 http://deb.debian.org/debian testing/main amd64 libtasn1-6 amd64 4.19.0-3+b2 [48.9 kB] Get:54 http://deb.debian.org/debian testing/main amd64 libgnutls30 amd64 3.8.3-1 [1425 kB] Get:55 http://deb.debian.org/debian testing/main amd64 libsemanage-common all 3.5-1 [9908 B] Get:56 http://deb.debian.org/debian testing/main amd64 libsepol2 amd64 3.5-2 [277 kB] Get:57 http://deb.debian.org/debian testing/main amd64 libsemanage2 amd64 3.5-1+b2 [90.3 kB] Get:58 http://deb.debian.org/debian testing/main amd64 passwd amd64 1:4.13+dfsg1-4 [973 kB] Get:59 http://deb.debian.org/debian testing/main amd64 libaudit-common all 1:3.1.2-2 [11.3 kB] Get:60 http://deb.debian.org/debian testing/main amd64 libcap-ng0 amd64 0.8.5-1 [17.1 kB] Get:61 http://deb.debian.org/debian testing/main amd64 libaudit1 amd64 1:3.1.2-2 [48.4 kB] Get:62 http://deb.debian.org/debian testing/main amd64 debconf all 1.5.86 [119 kB] Get:63 http://deb.debian.org/debian testing/main amd64 libpam0g amd64 1.5.2-9.1+b1 [65.8 kB] Get:64 http://deb.debian.org/debian testing/main amd64 libcrypt1 amd64 1:4.4.36-4 [89.8 kB] Get:65 http://deb.debian.org/debian testing/main amd64 libpam-modules-bin amd64 1.5.2-9.1+b1 [50.1 kB] Get:66 http://deb.debian.org/debian testing/main amd64 libpam-modules amd64 1.5.2-9.1+b1 [265 kB] Get:67 http://deb.debian.org/debian testing/main amd64 adduser all 3.137 [140 kB] Get:68 http://deb.debian.org/debian testing/main amd64 gpgv amd64 2.2.40-1.1+b1 [649 kB] Get:69 http://deb.debian.org/debian testing/main amd64 debian-archive-keyring all 2023.4 [161 kB] Get:70 http://deb.debian.org/debian testing/main amd64 libseccomp2 amd64 2.5.5-1 [47.0 kB] Get:71 http://deb.debian.org/debian testing/main amd64 apt amd64 2.7.12 [1368 kB] Get:72 http://deb.debian.org/debian testing/main amd64 perl-modules-5.38 all 5.38.2-3 [2899 kB] Get:73 http://deb.debian.org/debian testing/main amd64 libgdbm6 amd64 1.23-5+b1 [72.8 kB] Get:74 http://deb.debian.org/debian testing/main amd64 libgdbm-compat4 amd64 1.23-5+b1 [48.5 kB] Get:75 http://deb.debian.org/debian testing/main amd64 libdb5.3 amd64 5.3.28+dfsg2-4+b1 [697 kB] Get:76 http://deb.debian.org/debian testing/main amd64 libperl5.38 amd64 5.38.2-3 [4275 kB] Get:77 http://deb.debian.org/debian testing/main amd64 perl amd64 5.38.2-3 [236 kB] Get:78 http://deb.debian.org/debian testing/main amd64 libnumber-compare-perl all 0.03-3 [6332 B] Get:79 http://deb.debian.org/debian testing/main amd64 libtext-glob-perl all 0.11-3 [7676 B] Get:80 http://deb.debian.org/debian testing/main amd64 libfile-find-rule-perl all 0.34-3 [26.6 kB] Get:81 http://deb.debian.org/debian testing/main amd64 usrmerge all 39 [13.1 kB] Get:82 http://deb.debian.org/debian testing/main amd64 init-system-helpers all 1.66 [39.0 kB] Get:83 http://deb.debian.org/debian testing/main amd64 ncurses-base all 6.4+20240414-1 [269 kB] Get:84 http://deb.debian.org/debian testing/main amd64 sysvinit-utils amd64 3.08-7 [32.2 kB] Get:85 http://deb.debian.org/debian testing/main amd64 lsb-base all 11.6 [4584 B] Get:86 http://deb.debian.org/debian testing/main amd64 logsave amd64 1.47.0-2+b1 [19.9 kB] Get:87 http://deb.debian.org/debian testing/main amd64 libext2fs2 amd64 1.47.0-2+b1 [205 kB] Get:88 http://deb.debian.org/debian testing/main amd64 e2fsprogs amd64 1.47.0-2+b1 [572 kB] Get:89 http://deb.debian.org/debian testing/main amd64 mount amd64 2.39.3-6 [143 kB] Get:90 http://deb.debian.org/debian testing/main amd64 libpam-runtime all 1.5.2-9.1 [134 kB] Get:91 http://deb.debian.org/debian testing/main amd64 libacl1 amd64 2.3.2-1 [32.4 kB] Get:92 http://deb.debian.org/debian testing/main amd64 libattr1 amd64 1:2.5.2-1 [22.5 kB] Get:93 http://deb.debian.org/debian testing/main amd64 libpcre3 amd64 2:8.39-15+b1 [342 kB] Get:94 http://deb.debian.org/debian testing/main amd64 libuuid1 amd64 2.39.3-6 [29.7 kB] Get:95 http://deb.debian.org/debian testing/main amd64 mawk amd64 1.3.4.20240123-1 [136 kB] Get:96 http://deb.debian.org/debian testing/main amd64 tzdata all 2024a-1 [255 kB] Get:97 http://deb.debian.org/debian testing/main amd64 netbase all 6.4 [12.8 kB] Get:98 http://deb.debian.org/debian testing/main amd64 sensible-utils all 0.0.22 [22.4 kB] Get:99 http://deb.debian.org/debian testing/main amd64 libcom-err2 amd64 1.47.0-2+b1 [20.1 kB] Get:100 http://deb.debian.org/debian testing/main amd64 libgssapi-krb5-2 amd64 1.20.1-5+b1 [135 kB] Get:101 http://deb.debian.org/debian testing/main amd64 libkrb5-3 amd64 1.20.1-5+b1 [333 kB] Get:102 http://deb.debian.org/debian testing/main amd64 libk5crypto3 amd64 1.20.1-5+b1 [80.0 kB] Get:103 http://deb.debian.org/debian testing/main amd64 libkrb5support0 amd64 1.20.1-5+b1 [33.2 kB] Get:104 http://deb.debian.org/debian testing/main amd64 libkeyutils1 amd64 1.6.3-3 [8952 B] Get:105 http://deb.debian.org/debian testing/main amd64 libtirpc-common all 1.3.4+ds-1 [10.7 kB] Get:106 http://deb.debian.org/debian testing/main amd64 libtirpc3 amd64 1.3.4+ds-1 [82.1 kB] Get:107 http://deb.debian.org/debian testing/main amd64 libnsl2 amd64 1.3.0-3 [40.0 kB] Get:108 http://deb.debian.org/debian testing/main amd64 libss2 amd64 1.47.0-2+b1 [24.8 kB] debconf: delaying package configuration, since apt-utils is not installed Fetched 42.8 MB in 31s (1365 kB/s) (Reading database ... 6653 files and directories currently installed.) Preparing to unpack .../base-files_13.1_amd64.deb ... Unpacking base-files (13.1) over (11.1) ... Setting up base-files (13.1) ... Installing new version of config file /etc/debian_version ... Installing new version of config file /etc/issue ... Installing new version of config file /etc/issue.net ... (Reading database ... 6653 files and directories currently installed.) Preparing to unpack .../libc6_2.37-15_amd64.deb ... debconf: unable to initialize frontend: Dialog debconf: (TERM is not set, so the dialog frontend is not usable.) debconf: falling back to frontend: Readline debconf: unable to initialize frontend: Readline debconf: (Can't locate Term/ReadLine.pm in @INC (you may need to install the Term::ReadLine module) (@INC contains: /etc/perl /usr/local/lib/x86_64-linux-gnu/perl/5.32.1 /usr/local/share/perl/5.32.1 /usr/lib/x86_64-linux-gnu/perl5/5.32 /usr/share/perl5 /usr/lib/x86_64-linux-gnu/perl-base /usr/lib/x86_64-linux-gnu/perl/5.32 /usr/share/perl/5.32 /usr/local/lib/site_perl) at /usr/share/perl5/Debconf/FrontEnd/Readline.pm line 7.) debconf: falling back to frontend: Teletype Checking for services that may need to be restarted... Checking init scripts... Unpacking libc6:amd64 (2.37-15) over (2.31-12) ... Setting up libc6:amd64 (2.37-15) ... debconf: unable to initialize frontend: Dialog debconf: (TERM is not set, so the dialog frontend is not usable.) debconf: falling back to frontend: Readline debconf: unable to initialize frontend: Readline debconf: (Can't locate Term/ReadLine.pm in @INC (you may need to install the Term::ReadLine module) (@INC contains: /etc/perl /usr/local/lib/x86_64-linux-gnu/perl/5.32.1 /usr/local/share/perl/5.32.1 /usr/lib/x86_64-linux-gnu/perl5/5.32 /usr/share/perl5 /usr/lib/x86_64-linux-gnu/perl-base /usr/lib/x86_64-linux-gnu/perl/5.32 /usr/share/perl/5.32 /usr/local/lib/site_perl) at /usr/share/perl5/Debconf/FrontEnd/Readline.pm line 7.) debconf: falling back to frontend: Teletype Checking for services that may need to be restarted... Checking init scripts... Nothing to restart. (Reading database ... 6636 files and directories currently installed.) Preparing to unpack .../libc-bin_2.37-15_amd64.deb ... Unpacking libc-bin (2.37-15) over (2.31-12) ... Setting up libc-bin (2.37-15) ... Selecting previously unselected package gcc-14-base:amd64. (Reading database ... 6636 files and directories currently installed.) Preparing to unpack .../gcc-14-base_14-20240201-3_amd64.deb ... Unpacking gcc-14-base:amd64 (14-20240201-3) ... Setting up gcc-14-base:amd64 (14-20240201-3) ... (Reading database ... 6641 files and directories currently installed.) Preparing to unpack .../libgcc-s1_14-20240201-3_amd64.deb ... Unpacking libgcc-s1:amd64 (14-20240201-3) over (10.2.1-6) ... Setting up libgcc-s1:amd64 (14-20240201-3) ... (Reading database ... 6641 files and directories currently installed.) Preparing to unpack .../debianutils_5.17_amd64.deb ... Unpacking debianutils (5.17) over (4.11.2) ... Setting up debianutils (5.17) ... update-alternatives: using /usr/bin/which.debianutils to provide /usr/bin/which (which) in auto mode (Reading database ... 6643 files and directories currently installed.) Preparing to unpack .../bash_5.2.21-2_amd64.deb ... Unpacking bash (5.2.21-2) over (5.1-2+b1) ... Setting up bash (5.2.21-2) ... update-alternatives: using /usr/share/man/man7/bash-builtins.7.gz to provide /usr/share/man/man7/builtins.7.gz (builtins.7.gz) in auto mode (Reading database ... 6643 files and directories currently installed.) Preparing to unpack .../bsdutils_1%3a2.39.3-6_amd64.deb ... Unpacking bsdutils (1:2.39.3-6) over (1:2.36.1-7) ... Setting up bsdutils (1:2.39.3-6) ... (Reading database ... 6643 files and directories currently installed.) Preparing to unpack .../libgmp10_2%3a6.3.0+dfsg-2+b1_amd64.deb ... Unpacking libgmp10:amd64 (2:6.3.0+dfsg-2+b1) over (2:6.2.1+dfsg-1) ... Setting up libgmp10:amd64 (2:6.3.0+dfsg-2+b1) ... Selecting previously unselected package libssl3:amd64. (Reading database ... 6644 files and directories currently installed.) Preparing to unpack .../libssl3_3.1.5-1_amd64.deb ... Unpacking libssl3:amd64 (3.1.5-1) ... Setting up libssl3:amd64 (3.1.5-1) ... (Reading database ... 6657 files and directories currently installed.) Preparing to unpack .../coreutils_9.4-3+b1_amd64.deb ... Unpacking coreutils (9.4-3+b1) over (8.32-4+b1) ... Setting up coreutils (9.4-3+b1) ... (Reading database ... 6662 files and directories currently installed.) Preparing to unpack .../liblzma5_5.6.1+really5.4.5-1_amd64.deb ... Unpacking liblzma5:amd64 (5.6.1+really5.4.5-1) over (5.2.5-2) ... Setting up liblzma5:amd64 (5.6.1+really5.4.5-1) ... Selecting previously unselected package libmd0:amd64. (Reading database ... 6662 files and directories currently installed.) Preparing to unpack .../libmd0_1.1.0-2_amd64.deb ... Unpacking libmd0:amd64 (1.1.0-2) ... Setting up libmd0:amd64 (1.1.0-2) ... (Reading database ... 6668 files and directories currently installed.) Preparing to unpack .../libzstd1_1.5.5+dfsg2-2_amd64.deb ... Unpacking libzstd1:amd64 (1.5.5+dfsg2-2) over (1.4.8+dfsg-2.1) ... Setting up libzstd1:amd64 (1.5.5+dfsg2-2) ... (Reading database ... 6668 files and directories currently installed.) Preparing to unpack .../tar_1.35+dfsg-3_amd64.deb ... Unpacking tar (1.35+dfsg-3) over (1.34+dfsg-1) ... Setting up tar (1.35+dfsg-3) ... (Reading database ... 6669 files and directories currently installed.) Preparing to unpack .../archives/dpkg_1.22.4_amd64.deb ... Unpacking dpkg (1.22.4) over (1.20.9) ... Setting up dpkg (1.22.4) ... Installing new version of config file /etc/cron.daily/dpkg ... (Reading database ... 6672 files and directories currently installed.) Preparing to unpack .../dash_0.5.12-6_amd64.deb ... Unpacking dash (0.5.12-6) over (0.5.11+git20200708+dd9ef66-5) ... Setting up dash (0.5.12-6) ... Removing 'diversion of /bin/sh to /bin/sh.distrib by dash' Removing 'diversion of /usr/share/man/man1/sh.1.gz to /usr/share/man/man1/sh.distrib.1.gz by dash' (Reading database ... 6671 files and directories currently installed.) Preparing to unpack .../diffutils_1%3a3.10-1_amd64.deb ... Unpacking diffutils (1:3.10-1) over (1:3.7-5) ... Setting up diffutils (1:3.10-1) ... (Reading database ... 6673 files and directories currently installed.) Preparing to unpack .../findutils_4.9.0-5_amd64.deb ... Unpacking findutils (4.9.0-5) over (4.8.0-1) ... Setting up findutils (4.9.0-5) ... (Reading database ... 6673 files and directories currently installed.) Preparing to unpack .../archives/grep_3.11-4_amd64.deb ... Unpacking grep (3.11-4) over (3.6-1) ... Setting up grep (3.11-4) ... (Reading database ... 6675 files and directories currently installed.) Preparing to unpack .../gzip_1.12-1.1_amd64.deb ... Unpacking gzip (1.12-1.1) over (1.10-4) ... Setting up gzip (1.12-1.1) ... (Reading database ... 6675 files and directories currently installed.) Preparing to unpack .../hostname_3.23+nmu2_amd64.deb ... Unpacking hostname (3.23+nmu2) over (3.23) ... Setting up hostname (3.23+nmu2) ... (Reading database ... 6675 files and directories currently installed.) Preparing to unpack .../login_1%3a4.13+dfsg1-4_amd64.deb ... Unpacking login (1:4.13+dfsg1-4) over (1:4.8.1-1) ... Setting up login (1:4.13+dfsg1-4) ... Installing new version of config file /etc/login.defs ... Installing new version of config file /etc/pam.d/login ... (Reading database ... 6688 files and directories currently installed.) Preparing to unpack .../libtinfo6_6.4+20240414-1_amd64.deb ... Unpacking libtinfo6:amd64 (6.4+20240414-1) over (6.2+20201114-2) ... Setting up libtinfo6:amd64 (6.4+20240414-1) ... (Reading database ... 6686 files and directories currently installed.) Preparing to unpack .../ncurses-bin_6.4+20240414-1_amd64.deb ... Unpacking ncurses-bin (6.4+20240414-1) over (6.2+20201114-2) ... Setting up ncurses-bin (6.4+20240414-1) ... (Reading database ... 6686 files and directories currently installed.) Preparing to unpack .../perl-base_5.38.2-3_amd64.deb ... Unpacking perl-base (5.38.2-3) over (5.32.1-4) ... Setting up perl-base (5.38.2-3) ... (Reading database ... 6693 files and directories currently installed.) Preparing to unpack .../archives/sed_4.9-2_amd64.deb ... Unpacking sed (4.9-2) over (4.7-1) ... Setting up sed (4.9-2) ... (Reading database ... 6694 files and directories currently installed.) Preparing to unpack .../libblkid1_2.39.3-6_amd64.deb ... Unpacking libblkid1:amd64 (2.39.3-6) over (2.36.1-7) ... Setting up libblkid1:amd64 (2.39.3-6) ... (Reading database ... 6695 files and directories currently installed.) Preparing to unpack .../libpcre2-8-0_10.42-4+b1_amd64.deb ... Unpacking libpcre2-8-0:amd64 (10.42-4+b1) over (10.36-2) ... Setting up libpcre2-8-0:amd64 (10.42-4+b1) ... (Reading database ... 6696 files and directories currently installed.) Preparing to unpack .../libselinux1_3.5-2_amd64.deb ... Unpacking libselinux1:amd64 (3.5-2) over (3.1-3) ... Setting up libselinux1:amd64 (3.5-2) ... (Reading database ... 6697 files and directories currently installed.) Preparing to unpack .../libmount1_2.39.3-6_amd64.deb ... Unpacking libmount1:amd64 (2.39.3-6) over (2.36.1-7) ... Setting up libmount1:amd64 (2.39.3-6) ... (Reading database ... 6698 files and directories currently installed.) Preparing to unpack .../libsmartcols1_2.39.3-6_amd64.deb ... Unpacking libsmartcols1:amd64 (2.39.3-6) over (2.36.1-7) ... Setting up libsmartcols1:amd64 (2.39.3-6) ... (Reading database ... 6699 files and directories currently installed.) Preparing to unpack .../util-linux_2.39.3-6_amd64.deb ... Unpacking util-linux (2.39.3-6) over (2.36.1-7) ... dpkg: warning: unable to delete old directory '/etc/init.d': Directory not empty Setting up util-linux (2.39.3-6) ... (Reading database ... 6691 files and directories currently installed.) Preparing to unpack .../libdebconfclient0_0.271+b1_amd64.deb ... Unpacking libdebconfclient0:amd64 (0.271+b1) over (0.259) ... Setting up libdebconfclient0:amd64 (0.271+b1) ... (Reading database ... 6692 files and directories currently installed.) Preparing to unpack .../base-passwd_3.6.3_amd64.deb ... Unpacking base-passwd (3.6.3) over (3.5.49) ... Setting up base-passwd (3.6.3) ... debconf: unable to initialize frontend: Dialog debconf: (TERM is not set, so the dialog frontend is not usable.) debconf: falling back to frontend: Readline debconf: unable to initialize frontend: Readline debconf: (Can't locate Term/ReadLine.pm in @INC (you may need to install the Term::ReadLine module) (@INC entries checked: /etc/perl /usr/local/lib/x86_64-linux-gnu/perl/5.38.2 /usr/local/share/perl/5.38.2 /usr/lib/x86_64-linux-gnu/perl5/5.38 /usr/share/perl5 /usr/lib/x86_64-linux-gnu/perl-base /usr/lib/x86_64-linux-gnu/perl/5.38 /usr/share/perl/5.38 /usr/local/lib/site_perl) at /usr/share/perl5/Debconf/FrontEnd/Readline.pm line 7.) debconf: falling back to frontend: Teletype (Reading database ... 6692 files and directories currently installed.) Preparing to unpack .../libgpg-error0_1.47-3_amd64.deb ... Unpacking libgpg-error0:amd64 (1.47-3) over (1.38-2) ... Setting up libgpg-error0:amd64 (1.47-3) ... (Reading database ... 6692 files and directories currently installed.) Preparing to unpack .../libgcrypt20_1.10.3-2_amd64.deb ... Unpacking libgcrypt20:amd64 (1.10.3-2) over (1.8.7-6) ... Setting up libgcrypt20:amd64 (1.10.3-2) ... (Reading database ... 6694 files and directories currently installed.) Preparing to unpack .../libstdc++6_14-20240201-3_amd64.deb ... Unpacking libstdc++6:amd64 (14-20240201-3) over (10.2.1-6) ... Setting up libstdc++6:amd64 (14-20240201-3) ... (Reading database ... 6694 files and directories currently installed.) Preparing to unpack .../libbz2-1.0_1.0.8-5.1_amd64.deb ... Unpacking libbz2-1.0:amd64 (1.0.8-5.1) over (1.0.8-4) ... Setting up libbz2-1.0:amd64 (1.0.8-5.1) ... (Reading database ... 6694 files and directories currently installed.) Preparing to unpack .../liblz4-1_1.9.4-2_amd64.deb ... Unpacking liblz4-1:amd64 (1.9.4-2) over (1.9.3-2) ... Setting up liblz4-1:amd64 (1.9.4-2) ... Selecting previously unselected package libcap2:amd64. (Reading database ... 6694 files and directories currently installed.) Preparing to unpack .../libcap2_1%3a2.66-5_amd64.deb ... Unpacking libcap2:amd64 (1:2.66-5) ... Setting up libcap2:amd64 (1:2.66-5) ... (Reading database ... 6702 files and directories currently installed.) Preparing to unpack .../libsystemd0_255.4-1_amd64.deb ... Unpacking libsystemd0:amd64 (255.4-1) over (247.3-5) ... Setting up libsystemd0:amd64 (255.4-1) ... (Reading database ... 6703 files and directories currently installed.) Preparing to unpack .../libudev1_255.4-1_amd64.deb ... Unpacking libudev1:amd64 (255.4-1) over (247.3-5) ... Setting up libudev1:amd64 (255.4-1) ... (Reading database ... 6704 files and directories currently installed.) Preparing to unpack .../libxxhash0_0.8.2-2+b1_amd64.deb ... Unpacking libxxhash0:amd64 (0.8.2-2+b1) over (0.8.0-2) ... Setting up libxxhash0:amd64 (0.8.2-2+b1) ... (Reading database ... 6705 files and directories currently installed.) Preparing to unpack .../zlib1g_1%3a1.3.dfsg-3+b1_amd64.deb ... Unpacking zlib1g:amd64 (1:1.3.dfsg-3+b1) over (1:1.2.11.dfsg-2) ... Setting up zlib1g:amd64 (1:1.3.dfsg-3+b1) ... (Reading database ... 6706 files and directories currently installed.) Preparing to unpack .../libapt-pkg6.0_2.7.12_amd64.deb ... Unpacking libapt-pkg6.0:amd64 (2.7.12) over (2.2.4) ... Setting up libapt-pkg6.0:amd64 (2.7.12) ... (Reading database ... 6706 files and directories currently installed.) Preparing to unpack .../libnettle8_3.9.1-2+b1_amd64.deb ... Unpacking libnettle8:amd64 (3.9.1-2+b1) over (3.7.3-1) ... Setting up libnettle8:amd64 (3.9.1-2+b1) ... Selecting previously unselected package libffi8:amd64. (Reading database ... 6707 files and directories currently installed.) Preparing to unpack .../libffi8_3.4.6-1_amd64.deb ... Unpacking libffi8:amd64 (3.4.6-1) ... Setting up libffi8:amd64 (3.4.6-1) ... (Reading database ... 6712 files and directories currently installed.) Preparing to unpack .../libp11-kit0_0.25.3-4_amd64.deb ... Unpacking libp11-kit0:amd64 (0.25.3-4) over (0.23.22-1) ... Setting up libp11-kit0:amd64 (0.25.3-4) ... Selecting previously unselected package libunistring5:amd64. (Reading database ... 6712 files and directories currently installed.) Preparing to unpack .../libunistring5_1.2-1_amd64.deb ... Unpacking libunistring5:amd64 (1.2-1) ... Setting up libunistring5:amd64 (1.2-1) ... (Reading database ... 6718 files and directories currently installed.) Preparing to unpack .../libhogweed6_3.9.1-2+b1_amd64.deb ... Unpacking libhogweed6:amd64 (3.9.1-2+b1) over (3.7.3-1) ... Setting up libhogweed6:amd64 (3.9.1-2+b1) ... (Reading database ... 6719 files and directories currently installed.) Preparing to unpack .../libidn2-0_2.3.7-2_amd64.deb ... Unpacking libidn2-0:amd64 (2.3.7-2) over (2.3.0-5) ... Setting up libidn2-0:amd64 (2.3.7-2) ... (Reading database ... 6721 files and directories currently installed.) Preparing to unpack .../libtasn1-6_4.19.0-3+b2_amd64.deb ... Unpacking libtasn1-6:amd64 (4.19.0-3+b2) over (4.16.0-2) ... Setting up libtasn1-6:amd64 (4.19.0-3+b2) ... (Reading database ... 6722 files and directories currently installed.) Preparing to unpack .../libgnutls30_3.8.3-1_amd64.deb ... Unpacking libgnutls30:amd64 (3.8.3-1) over (3.7.1-5) ... Setting up libgnutls30:amd64 (3.8.3-1) ... (Reading database ... 6723 files and directories currently installed.) Preparing to unpack .../libsemanage-common_3.5-1_all.deb ... Unpacking libsemanage-common (3.5-1) over (3.1-1) ... Setting up libsemanage-common (3.5-1) ... Installing new version of config file /etc/selinux/semanage.conf ... Selecting previously unselected package libsepol2:amd64. (Reading database ... 6723 files and directories currently installed.) Preparing to unpack .../libsepol2_3.5-2_amd64.deb ... Unpacking libsepol2:amd64 (3.5-2) ... Setting up libsepol2:amd64 (3.5-2) ... Selecting previously unselected package libsemanage2:amd64. (Reading database ... 6727 files and directories currently installed.) Preparing to unpack .../libsemanage2_3.5-1+b2_amd64.deb ... Unpacking libsemanage2:amd64 (3.5-1+b2) ... Setting up libsemanage2:amd64 (3.5-1+b2) ... (Reading database ... 6732 files and directories currently installed.) Preparing to unpack .../passwd_1%3a4.13+dfsg1-4_amd64.deb ... Unpacking passwd (1:4.13+dfsg1-4) over (1:4.8.1-1) ... Setting up passwd (1:4.13+dfsg1-4) ... Installing new version of config file /etc/default/useradd ... (Reading database ... 6766 files and directories currently installed.) Removing libsemanage1:amd64 (3.1-1+b2) ... (Reading database ... 6761 files and directories currently installed.) Preparing to unpack .../libaudit-common_1%3a3.1.2-2_all.deb ... Unpacking libaudit-common (1:3.1.2-2) over (1:3.0-2) ... Setting up libaudit-common (1:3.1.2-2) ... (Reading database ... 6761 files and directories currently installed.) Preparing to unpack .../libcap-ng0_0.8.5-1_amd64.deb ... Unpacking libcap-ng0:amd64 (0.8.5-1) over (0.7.9-2.2+b1) ... Setting up libcap-ng0:amd64 (0.8.5-1) ... (Reading database ... 6762 files and directories currently installed.) Preparing to unpack .../libaudit1_1%3a3.1.2-2_amd64.deb ... Unpacking libaudit1:amd64 (1:3.1.2-2) over (1:3.0-2) ... Setting up libaudit1:amd64 (1:3.1.2-2) ... (Reading database ... 6762 files and directories currently installed.) Preparing to unpack .../debconf_1.5.86_all.deb ... Unpacking debconf (1.5.86) over (1.5.75) ... Setting up debconf (1.5.86) ... Installing new version of config file /etc/debconf.conf ... debconf: unable to initialize frontend: Dialog debconf: (TERM is not set, so the dialog frontend is not usable.) debconf: falling back to frontend: Readline debconf: unable to initialize frontend: Readline debconf: (Can't locate Term/ReadLine.pm in @INC (you may need to install the Term::ReadLine module) (@INC entries checked: /etc/perl /usr/local/lib/x86_64-linux-gnu/perl/5.38.2 /usr/local/share/perl/5.38.2 /usr/lib/x86_64-linux-gnu/perl5/5.38 /usr/share/perl5 /usr/lib/x86_64-linux-gnu/perl-base /usr/lib/x86_64-linux-gnu/perl/5.38 /usr/share/perl/5.38 /usr/local/lib/site_perl) at /usr/share/perl5/Debconf/FrontEnd/Readline.pm line 8.) debconf: falling back to frontend: Teletype (Reading database ... 6760 files and directories currently installed.) Preparing to unpack .../libpam0g_1.5.2-9.1+b1_amd64.deb ... Unpacking libpam0g:amd64 (1.5.2-9.1+b1) over (1.4.0-7) ... Setting up libpam0g:amd64 (1.5.2-9.1+b1) ... debconf: unable to initialize frontend: Dialog debconf: (TERM is not set, so the dialog frontend is not usable.) debconf: falling back to frontend: Readline debconf: unable to initialize frontend: Readline debconf: (Can't locate Term/ReadLine.pm in @INC (you may need to install the Term::ReadLine module) (@INC entries checked: /etc/perl /usr/local/lib/x86_64-linux-gnu/perl/5.38.2 /usr/local/share/perl/5.38.2 /usr/lib/x86_64-linux-gnu/perl5/5.38 /usr/share/perl5 /usr/lib/x86_64-linux-gnu/perl-base /usr/lib/x86_64-linux-gnu/perl/5.38 /usr/share/perl/5.38 /usr/local/lib/site_perl) at /usr/share/perl5/Debconf/FrontEnd/Readline.pm line 8.) debconf: falling back to frontend: Teletype (Reading database ... 6760 files and directories currently installed.) Preparing to unpack .../libcrypt1_1%3a4.4.36-4_amd64.deb ... Unpacking libcrypt1:amd64 (1:4.4.36-4) over (1:4.4.18-4) ... Setting up libcrypt1:amd64 (1:4.4.36-4) ... (Reading database ... 6760 files and directories currently installed.) Preparing to unpack .../libpam-modules-bin_1.5.2-9.1+b1_amd64.deb ... Unpacking libpam-modules-bin (1.5.2-9.1+b1) over (1.4.0-7) ... Replacing files in old package libpam-modules:amd64 (1.4.0-7) ... Setting up libpam-modules-bin (1.5.2-9.1+b1) ... (Reading database ... 6765 files and directories currently installed.) Preparing to unpack .../libpam-modules_1.5.2-9.1+b1_amd64.deb ... debconf: unable to initialize frontend: Dialog debconf: (TERM is not set, so the dialog frontend is not usable.) debconf: falling back to frontend: Readline debconf: unable to initialize frontend: Readline debconf: (Can't locate Term/ReadLine.pm in @INC (you may need to install the Term::ReadLine module) (@INC entries checked: /etc/perl /usr/local/lib/x86_64-linux-gnu/perl/5.38.2 /usr/local/share/perl/5.38.2 /usr/lib/x86_64-linux-gnu/perl5/5.38 /usr/share/perl5 /usr/lib/x86_64-linux-gnu/perl-base /usr/lib/x86_64-linux-gnu/perl/5.38 /usr/share/perl/5.38 /usr/local/lib/site_perl) at /usr/share/perl5/Debconf/FrontEnd/Readline.pm line 8.) debconf: falling back to frontend: Teletype Unpacking libpam-modules:amd64 (1.5.2-9.1+b1) over (1.4.0-7) ... Setting up libpam-modules:amd64 (1.5.2-9.1+b1) ... Installing new version of config file /etc/security/limits.conf ... Installing new version of config file /etc/security/sepermit.conf ... (Reading database ... 6766 files and directories currently installed.) Preparing to unpack .../archives/adduser_3.137_all.deb ... moving unchanged adduser.conf to adduser.conf.update-old. New dpkg-conffile will come from the package. Unpacking adduser (3.137) over (3.118) ... Setting up adduser (3.137) ... Installing new version of config file /etc/deluser.conf ... (Reading database ... 6728 files and directories currently installed.) Preparing to unpack .../gpgv_2.2.40-1.1+b1_amd64.deb ... Unpacking gpgv (2.2.40-1.1+b1) over (2.2.27-2) ... Setting up gpgv (2.2.40-1.1+b1) ... (Reading database ... 6729 files and directories currently installed.) Preparing to unpack .../debian-archive-keyring_2023.4_all.deb ... Unpacking debian-archive-keyring (2023.4) over (2021.1.1) ... Setting up debian-archive-keyring (2023.4) ... Removing obsolete conffile /etc/apt/trusted.gpg.d/debian-archive-stretch-automatic.gpg ... Removing obsolete conffile /etc/apt/trusted.gpg.d/debian-archive-stretch-security-automatic.gpg ... Removing obsolete conffile /etc/apt/trusted.gpg.d/debian-archive-stretch-stable.gpg ... Removing obsolete conffile /etc/apt/trusted.gpg.d/debian-archive-buster-automatic.gpg ... Removing obsolete conffile /etc/apt/trusted.gpg.d/debian-archive-buster-security-automatic.gpg ... Removing obsolete conffile /etc/apt/trusted.gpg.d/debian-archive-buster-stable.gpg ... Removing obsolete conffile /etc/apt/trusted.gpg.d/debian-archive-bullseye-automatic.gpg ... Removing obsolete conffile /etc/apt/trusted.gpg.d/debian-archive-bullseye-security-automatic.gpg ... Removing obsolete conffile /etc/apt/trusted.gpg.d/debian-archive-bullseye-stable.gpg ... (Reading database ... 6729 files and directories currently installed.) Preparing to unpack .../libseccomp2_2.5.5-1_amd64.deb ... Unpacking libseccomp2:amd64 (2.5.5-1) over (2.5.1-1) ... Setting up libseccomp2:amd64 (2.5.5-1) ... (Reading database ... 6729 files and directories currently installed.) Preparing to unpack .../archives/apt_2.7.12_amd64.deb ... Unpacking apt (2.7.12) over (2.2.4) ... Setting up apt (2.7.12) ... Installing new version of config file /etc/apt/apt.conf.d/01autoremove ... Installing new version of config file /etc/cron.daily/apt-compat ... Removing obsolete conffile /etc/kernel/postinst.d/apt-auto-removal ... Selecting previously unselected package perl-modules-5.38. (Reading database ... 6722 files and directories currently installed.) Preparing to unpack .../perl-modules-5.38_5.38.2-3_all.deb ... Unpacking perl-modules-5.38 (5.38.2-3) ... Selecting previously unselected package libgdbm6:amd64. Preparing to unpack .../libgdbm6_1.23-5+b1_amd64.deb ... Unpacking libgdbm6:amd64 (1.23-5+b1) ... Selecting previously unselected package libgdbm-compat4:amd64. Preparing to unpack .../libgdbm-compat4_1.23-5+b1_amd64.deb ... Unpacking libgdbm-compat4:amd64 (1.23-5+b1) ... Preparing to unpack .../libdb5.3_5.3.28+dfsg2-4+b1_amd64.deb ... Unpacking libdb5.3:amd64 (5.3.28+dfsg2-4+b1) over (5.3.28+dfsg1-0.8) ... Setting up libdb5.3:amd64 (5.3.28+dfsg2-4+b1) ... Selecting previously unselected package libperl5.38:amd64. (Reading database ... 8151 files and directories currently installed.) Preparing to unpack .../libperl5.38_5.38.2-3_amd64.deb ... Unpacking libperl5.38:amd64 (5.38.2-3) ... Selecting previously unselected package perl. Preparing to unpack .../perl_5.38.2-3_amd64.deb ... Unpacking perl (5.38.2-3) ... Selecting previously unselected package libnumber-compare-perl. Preparing to unpack .../libnumber-compare-perl_0.03-3_all.deb ... Unpacking libnumber-compare-perl (0.03-3) ... Setting up libnumber-compare-perl (0.03-3) ... Selecting previously unselected package libtext-glob-perl. (Reading database ... 8744 files and directories currently installed.) Preparing to unpack .../libtext-glob-perl_0.11-3_all.deb ... Unpacking libtext-glob-perl (0.11-3) ... Setting up libtext-glob-perl (0.11-3) ... Selecting previously unselected package libfile-find-rule-perl. (Reading database ... 8751 files and directories currently installed.) Preparing to unpack .../libfile-find-rule-perl_0.34-3_all.deb ... Unpacking libfile-find-rule-perl (0.34-3) ... Setting up perl-modules-5.38 (5.38.2-3) ... Setting up libgdbm6:amd64 (1.23-5+b1) ... Setting up libgdbm-compat4:amd64 (1.23-5+b1) ... Setting up libperl5.38:amd64 (5.38.2-3) ... Setting up perl (5.38.2-3) ... Setting up libfile-find-rule-perl (0.34-3) ... Selecting previously unselected package usrmerge. (Reading database ... 8766 files and directories currently installed.) Preparing to unpack .../archives/usrmerge_39_all.deb ... Unpacking usrmerge (39) ... Setting up usrmerge (39) ... Warning: overlayfs detected, /usr/lib/usrmerge/convert-usrmerge will not be run automatically. See #1008202 for details.
If this is a container then it can be converted by unpacking the image, entering it with chroot(8), installing usrmerge and then repacking the image again. at /usr/lib/usrmerge/convert-usrmerge line 408. E: usrmerge failed. dpkg: error processing package usrmerge (--configure): installed usrmerge package post-installation script subprocess returned error exit status 1 Errors were encountered while processing: usrmerge E: Sub-process /usr/bin/dpkg returned an error code (1) The command '/bin/sh -c apt-get update && apt-get dist-upgrade -y' returned a non-zero code: 100 make: *** [Makefile:58: docker-image] Error 100
Have you tried a brand new install? I didn't run
make docker image
succeeded even once, so there is no cache for my runs. :-)Yes I did by adding
--no-cache
to the docker build command line in theMakefile
. I also know that several colleagues tested building the docker image and none of them had issues.Again, let's find out why your package list is different from mine. That really should be exactly the same!
Agreed, above is my run full log. It is quite different from yours, I need to install way much more packages than yours.
When testing, please use make docker-image
, so that we have exactly the same docker build command line.
docker images
tells me
debian testing 66db305f2299 12 days ago 124MB
Go into the debian:testing image with docker run -it debian:testing /bin/bash
and run dpkg -l '*usr*'
. The output here is
ii usr-is-merged 39 all Transitional package to assert a merged-/usr system
un usrmerge <none> <none> (no description available)
So nothing should install usrmerge
in this case.
Also do a uname -a
inside the container and check the date, here it is (2024-03-13)
.
Yes, I ran make docker-image
everytime, which I think there is no difference with yours.
The good news is that I can run docker run -it debian:testing /bin/bash
now, which is great as I can do some experiments inside it.
Will get back to you if I have some findings.
@rockdaboot Sorry for the confuse. I finally made a success build after changing my docker registry mirror from a outdated one to a normal one. Everything works well now, thank you very much.
For people from China who reaches to this thread, please checkout your docker registry mirror first in case you ran into a similar situation like me. I incautiously used an outdated mirror, which is provided by a public mirror service from a cloud provider.
:+1: Thanks for reporting back
I tried to run
sudo make docker-image
on my Ubuntu 22.04.3 LTS, but failed at "returned a non-zero code: 100".After an investigation, I found that it is due to these commands in Dockerfile
"RUN apt-get update && apt-get dist-upgrade -y ..."
I didn't find any solution for that. Could you confirm it?
Thank you.