Giter Club home page Giter Club logo

docker-debian-artifacts's Introduction

Debuerreotype

GitHub CI

Reproducible, snapshot-based Debian rootfs builds (especially for Docker).

This is based on lamby's work for reproducible debootstrap:

"Debuerreotype"?

The name is an attempt at riffing off the photography basis of the word "snapshot". The daguerreotype process was an early method for taking photographs, and this is a method for taking "photographs" of Debian at a given point in time.

Why?

The goal is to create an auditable, reproducible process for creating rootfs tarballs (especially for use in Docker) of Debian releases, based on point-in-time snapshots from snapshot.debian.org.

However, as noted below, the only strictly Docker-specific script is debuerreotype-minimizing-config, which applies many configuration tweaks which are useful for Docker users and may or may not be useful outside of that context.

Usage

The usage of the scripts here center around a "rootfs" directory, which is both the working directory for building the target rootfs, and contains the debuerreotype-epoch file, which records our snapshot.debian.org epoch value (so we can adjust timestamps using it, as it is the basis for our reproducibility).

Available scripts:

script purpose
debuerreotype-init create the initial "rootfs", given a suite and a timestamp (in some format date(1) can parse); sources.list will be pointing at snapshot.debian.org
debuerreotype-chroot run a command in the given "rootfs" (using unshare to mount /dev, /proc, and /sys from the parent environment in a simple, safe way)
debuerreotype-apt-get run apt-get via debuerreotype-chroot, including -o Acquire::Check-Valid-Until=false to account for older snapshots with (now) invalid Valid-Until values
debuerreotype-minimizing-config apply configuration tweaks to make the rootfs minimal and keep it minimal (especially targeted at Docker images, with comments explicitly describing Docker use cases)
debuerreotype-slimify remove files such as documentation to create an even smaller rootfs (used for creating slim variants of the Docker images, for example)
debuerreotype-debian-sources-list generate an appropriate Debian sources.list in the rootfs given a suite (especially for updating sources.list to point at deb.debian.org before generating outputs)
debuerreotype-recalculate-epoch (esp. for non-Debian) recalculate debuerreotype-epoch from /var/lib/apt/lists/*_{In,}Release files' Date: fields (after updating sources.list / apt-get update)
debuerreotype-fixup invoked by debuerreotype-tar to fixup timestamps and remove known-bad log files for determinism
debuerreotype-tar deterministically create a tar file of the rootfs
debuerreotype-version print out the version of the current debuerreotype installation

A simple Dockerfile is provided for using these scripts in a simple deterministic environment based on Docker, but given a recent enough version of debootstrap, they should run fine outside Docker as well (and their deterministic properties have been verified on at least a Gentoo host in addition to the provided Debian-based Docker environment).

The provided Dockerfile also includes comments with hints for bootstrapping the environment on a new architecture (which then presumably doesn't have a debian Docker base image yet).

Full example: (see examples/debian.sh for this in practice)

$ debuerreotype-init --keyring /usr/share/keyrings/debian-archive-removed-keys.gpg rootfs stretch 2017-01-01T00:00:00Z
I: Retrieving InRelease
I: Checking Release signature
I: Valid Release signature (key id 126C0D24BD8A2942CC7DF8AC7638D0442B90D010)
...
I: Checking component main on http://snapshot.debian.org/archive/debian/20170101T000000Z...
...
I: Base system installed successfully.

$ cat rootfs/debuerreotype-epoch
1483228800

$ debuerreotype-minimizing-config rootfs

$ debuerreotype-apt-get rootfs update -qq
$ debuerreotype-apt-get rootfs dist-upgrade -yqq
$ debuerreotype-apt-get rootfs install -yqq --no-install-recommends inetutils-ping iproute2
debconf: delaying package configuration, since apt-utils is not installed
Selecting previously unselected package libelf1:amd64.
(Reading database ... 6299 files and directories currently installed.)
Preparing to unpack .../0-libelf1_0.166-2.2_amd64.deb ...
Unpacking libelf1:amd64 (0.166-2.2) ...
Selecting previously unselected package libmnl0:amd64.
Preparing to unpack .../1-libmnl0_1.0.4-2_amd64.deb ...
Unpacking libmnl0:amd64 (1.0.4-2) ...
Selecting previously unselected package iproute2.
Preparing to unpack .../2-iproute2_4.9.0-1_amd64.deb ...
Unpacking iproute2 (4.9.0-1) ...
Selecting previously unselected package netbase.
Preparing to unpack .../3-netbase_5.3_all.deb ...
Unpacking netbase (5.3) ...
Selecting previously unselected package inetutils-ping.
Preparing to unpack .../4-inetutils-ping_2%3a1.9.4-2+b1_amd64.deb ...
Unpacking inetutils-ping (2:1.9.4-2+b1) ...
Setting up libelf1:amd64 (0.166-2.2) ...
Processing triggers for libc-bin (2.24-8) ...
Setting up libmnl0:amd64 (1.0.4-2) ...
Setting up netbase (5.3) ...
Setting up inetutils-ping (2:1.9.4-2+b1) ...
Setting up iproute2 (4.9.0-1) ...
Processing triggers for libc-bin (2.24-8) ...

$ debuerreotype-debian-sources-list rootfs stretch

$ debuerreotype-tar rootfs - | sha256sum
e6f10da22f7ab5996f855c85ad5ae38cd786029c57893436c3bb2320f30bc188  -

$ # try it!  you should get that same sha256sum value!

(As a one-liner via docker-run.sh: ./docker-run.sh sh -euxc 'debuerreotype-init --keyring /usr/share/keyrings/debian-archive-removed-keys.gpg /tmp/rootfs stretch 2017-01-01T00:00:00Z; debuerreotype-minimizing-config /tmp/rootfs; debuerreotype-apt-get /tmp/rootfs update -qq; debuerreotype-apt-get /tmp/rootfs dist-upgrade -yqq; debuerreotype-apt-get /tmp/rootfs install -yqq --no-install-recommends inetutils-ping iproute2; debuerreotype-debian-sources-list /tmp/rootfs stretch; debuerreotype-tar /tmp/rootfs - | sha256sum')

How much have you verified this?

Well, I ran the scripts across seven explicit architectures (amd64, arm64, armel, armhf, i386, ppc64el, s390x) and eight explicit suites (oldstable, stable, testing, unstable, wheezy, jessie, stretch, sid) for a timestamp of 2017-05-16T00:00:00Z (where supported, since wheezy/oldstable didn't or no longer currently supports some of those architectures), and there were no modifications to any of the tarballs after several runs across several days.

Additionally, GitHub Actions runs with a fixed timestamp value across several suites to verify that their checksums are reproducible, as expected.

From time to time, comments in the files generated by debuerreotype-minimizing-config might change (for example), which would obviously result in a different checksum, but a simple diffoscope should be sufficient to verify that the change is benign.

docker-debian-artifacts's People

Contributors

tianon avatar yosifkit avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

docker-debian-artifacts's Issues

perl-base copyright is missing

perl-base.deb has a symlink at /usr/share/doc/perl-base -> perl. This is allowed by policy. But the dpkg.cfg.d/docker excludes all /usr/share/doc/*, but then includes copyright files. This has the side-effect of not extracting symlinks.

Policy allows for PkgA to symlink PkgB, if they are from the same source. So now the copyright file is not available at /usr/share/doc/perl-base/copyright, because the symlink wasn't created.

This also at least applies to libstdc++6, libgcc1, and libcursesw5.

Locale definition of doc not working on stretch-slim

The line on the README:

RUN apt-get update && apt-get install -y locales && rm -rf /var/lib/apt/lists/* \
    && localedef -i en_US -c -f UTF-8 -A /usr/share/locale/locale.alias en_US.UTF-8
ENV LANG en_US.utf8

Didn't work on stretch-slim.

This works for me:

RUN apt-get update && apt-get install -y locales && rm -rf /var/lib/apt/lists/* \
    && localedef -i en_US -c -f UTF-8 -A /etc/locale.alias en_US.UTF-8
ENV LANG en_US.utf8

Error while installing openjdk 8 in stretch slim

root@dca8d0eb3237:/# apt-get install openjdk-8-jdk-headless
Reading package lists... Done
Building dependency tree       
Reading state information... Done
openjdk-8-jdk-headless is already the newest version (8u151-b12-1~deb9u1).
0 upgraded, 0 newly installed, 0 to remove and 1 not upgraded.
2 not fully installed or removed.
After this operation, 0 B of additional disk space will be used.
Do you want to continue? [Y/n] y
Setting up openjdk-8-jre-headless:amd64 (8u151-b12-1~deb9u1) ...
update-alternatives: using /usr/lib/jvm/java-8-openjdk-amd64/jre/bin/rmid to provide /usr/bin/rmid (rmid) in auto mode
update-alternatives: error: error creating symbolic link '/usr/share/man/man1/rmid.1.gz.dpkg-tmp': No such file or directory
dpkg: error processing package openjdk-8-jre-headless:amd64 (--configure):
 subprocess installed post-installation script returned error exit status 2
dpkg: dependency problems prevent configuration of openjdk-8-jdk-headless:amd64:
 openjdk-8-jdk-headless:amd64 depends on openjdk-8-jre-headless (= 8u151-b12-1~deb9u1); however:
  Package openjdk-8-jre-headless:amd64 is not configured yet.

dpkg: error processing package openjdk-8-jdk-headless:amd64 (--configure):
 dependency problems - leaving unconfigured
Errors were encountered while processing:
 openjdk-8-jre-headless:amd64
 openjdk-8-jdk-headless:amd64
E: Sub-process /usr/bin/dpkg returned an error code (1)
root@dca8d0eb3237:/# 

The obvious workaround is manually creating /usr/share/man/man1/

dockerhub pull failing when --disable-content-trust=false

This started a few hours ago:

$ docker pull --disable-content-trust=false debian:jessie WARN[0000] Error while downloading remote metadata, using cached timestamp - this might not be the latest version available remotely ERRO[0000] Metadata for timestamp expired WARN[0000] Error while downloading remote metadata, using cached timestamp - this might not be the latest version available remotely ERRO[0000] Metadata for timestamp expired Error: remote repository docker.io/library/debian out-of-date: timestamp expired at Wed Oct 3 15:40:21 UTC 2018

Note that things work without the --disable-content-trust=false

$ docker pull debian:jessie jessie: Pulling from library/debian Digest: sha256:53ad4744268d3ae3ab11efffe55693e8f1f0d5cb93742fd1d2f26f0a4a84f839 Status: Image is up to date for debian:jessie

From the error messages it's not clear if the problem is downloading the new metadata (and the cache is expired), or if the metadata from dockerhub has somehow expired.

Cannot install libssl1 on jessie due to "cannot get security labeling handle: No such file or directory"

On the host:

$ sudo docker create --privileged -it --name debian -v /:/remote debian:jessie
$ sudo docker start debian
$ sudo docker exec -it debian bash

In the container:

# apt-get update
...
# apt-get install wget
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following extra packages will be installed:
  ca-certificates libffi6 libgmp10 libgnutls-deb0-28 libhogweed2 libicu52 libidn11 libnettle4 libp11-kit0 libpsl0 libssl1.0.0 libtasn1-6 openssl
Suggested packages:
  gnutls-bin
The following NEW packages will be installed:
  ca-certificates libffi6 libgmp10 libgnutls-deb0-28 libhogweed2 libicu52 libidn11 libnettle4 libp11-kit0 libpsl0 libssl1.0.0 libtasn1-6 openssl wget
0 upgraded, 14 newly installed, 0 to remove and 8 not upgraded.
Need to get 10.8 MB of archives.
After this operation, 38.8 MB of additional disk space will be used.
Do you want to continue? [Y/n] 
Get:1 http://deb.debian.org/debian/ jessie/main libssl1.0.0 amd64 1.0.1t-1+deb8u6 [1047 kB]
Get:2 http://deb.debian.org/debian/ jessie/main libgmp10 amd64 2:6.0.0+dfsg-6 [253 kB]
Get:3 http://deb.debian.org/debian/ jessie/main libnettle4 amd64 2.7.1-5+deb8u2 [176 kB]
Get:4 http://deb.debian.org/debian/ jessie/main libhogweed2 amd64 2.7.1-5+deb8u2 [125 kB]
Get:5 http://deb.debian.org/debian/ jessie/main libffi6 amd64 3.1-2+deb8u1 [20.2 kB]
Get:6 http://deb.debian.org/debian/ jessie/main libp11-kit0 amd64 0.20.7-1 [81.2 kB]
Get:7 http://deb.debian.org/debian/ jessie/main libtasn1-6 amd64 4.2-3+deb8u3 [49.2 kB]
Get:8 http://deb.debian.org/debian/ jessie/main libgnutls-deb0-28 amd64 3.3.8-6+deb8u7 [696 kB]
Get:9 http://deb.debian.org/debian/ jessie/main libidn11 amd64 1.29-1+deb8u2 [136 kB]
Get:10 http://deb.debian.org/debian/ jessie/main libicu52 amd64 52.1-8+deb8u5 [6801 kB]
Get:11 http://deb.debian.org/debian/ jessie/main libpsl0 amd64 0.5.1-1 [41.6 kB]
Get:12 http://deb.debian.org/debian/ jessie/main wget amd64 1.16-1+deb8u2 [496 kB]
Get:13 http://deb.debian.org/debian/ jessie/main openssl amd64 1.0.1t-1+deb8u6 [665 kB]
Get:14 http://deb.debian.org/debian/ jessie/main ca-certificates all 20141019+deb8u3 [207 kB]
Fetched 10.8 MB in 2s (3677 kB/s)        
debconf: delaying package configuration, since apt-utils is not installed
dpkg: error processing archive /var/cache/apt/archives/libssl1.0.0_1.0.1t-1+deb8u6_amd64.deb (--unpack):
 cannot get security labeling handle: No such file or directory
Selecting previously unselected package libgmp10:amd64.
(Reading database ... 7563 files and directories currently installed.)
Preparing to unpack .../libgmp10_2%3a6.0.0+dfsg-6_amd64.deb ...
Unpacking libgmp10:amd64 (2:6.0.0+dfsg-6) ...
Selecting previously unselected package libnettle4:amd64.
Preparing to unpack .../libnettle4_2.7.1-5+deb8u2_amd64.deb ...
Unpacking libnettle4:amd64 (2.7.1-5+deb8u2) ...
Selecting previously unselected package libhogweed2:amd64.
Preparing to unpack .../libhogweed2_2.7.1-5+deb8u2_amd64.deb ...
Unpacking libhogweed2:amd64 (2.7.1-5+deb8u2) ...
Selecting previously unselected package libffi6:amd64.
Preparing to unpack .../libffi6_3.1-2+deb8u1_amd64.deb ...
Unpacking libffi6:amd64 (3.1-2+deb8u1) ...
Selecting previously unselected package libp11-kit0:amd64.
Preparing to unpack .../libp11-kit0_0.20.7-1_amd64.deb ...
Unpacking libp11-kit0:amd64 (0.20.7-1) ...
Selecting previously unselected package libtasn1-6:amd64.
Preparing to unpack .../libtasn1-6_4.2-3+deb8u3_amd64.deb ...
Unpacking libtasn1-6:amd64 (4.2-3+deb8u3) ...
Selecting previously unselected package libgnutls-deb0-28:amd64.
Preparing to unpack .../libgnutls-deb0-28_3.3.8-6+deb8u7_amd64.deb ...
Unpacking libgnutls-deb0-28:amd64 (3.3.8-6+deb8u7) ...
Selecting previously unselected package libidn11:amd64.
Preparing to unpack .../libidn11_1.29-1+deb8u2_amd64.deb ...
Unpacking libidn11:amd64 (1.29-1+deb8u2) ...
Selecting previously unselected package libicu52:amd64.
Preparing to unpack .../libicu52_52.1-8+deb8u5_amd64.deb ...
Unpacking libicu52:amd64 (52.1-8+deb8u5) ...
Selecting previously unselected package libpsl0:amd64.
Preparing to unpack .../libpsl0_0.5.1-1_amd64.deb ...
Unpacking libpsl0:amd64 (0.5.1-1) ...
Selecting previously unselected package wget.
Preparing to unpack .../wget_1.16-1+deb8u2_amd64.deb ...
Unpacking wget (1.16-1+deb8u2) ...
Selecting previously unselected package openssl.
Preparing to unpack .../openssl_1.0.1t-1+deb8u6_amd64.deb ...
Unpacking openssl (1.0.1t-1+deb8u6) ...
Selecting previously unselected package ca-certificates.
Preparing to unpack .../ca-certificates_20141019+deb8u3_all.deb ...
Unpacking ca-certificates (20141019+deb8u3) ...
Errors were encountered while processing:
 /var/cache/apt/archives/libssl1.0.0_1.0.1t-1+deb8u6_amd64.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)

# apt-get -f install
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Correcting dependencies... Done
The following extra packages will be installed:
  libssl1.0.0
The following NEW packages will be installed:
  libssl1.0.0
0 upgraded, 1 newly installed, 0 to remove and 8 not upgraded.
13 not fully installed or removed.
Need to get 1047 kB of archives.
After this operation, 3149 kB of additional disk space will be used.
Do you want to continue? [Y/n] 
Get:1 http://deb.debian.org/debian/ jessie/main libssl1.0.0 amd64 1.0.1t-1+deb8u6 [1047 kB]
Fetched 1047 kB in 1s (981 kB/s)     
debconf: delaying package configuration, since apt-utils is not installed
dpkg: error processing archive /var/cache/apt/archives/libssl1.0.0_1.0.1t-1+deb8u6_amd64.deb (--unpack):
 cannot get security labeling handle: No such file or directory
Errors were encountered while processing:
 /var/cache/apt/archives/libssl1.0.0_1.0.1t-1+deb8u6_amd64.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)

Works on debian:latest.

Consider replacing 'inetutils-ping' with 'iputils-ping'

I recently spent some time tracking down surprising failures in CI scripts relying on ping -f, where these scripts would always time out when run inside a debian:stretch container, but succeed on a Debian stretch host (and, in this case, other host OSes such as *BSD).

A minimal test case to reproduce the issue is to compare the behaviour of time ping -fq -c 1000 127.0.0.1 inside a container with that directly on the host. In the container case, the command takes 10 seconds to complete, whereas on the host it completes almost instantly.

The root cause of the issue are the different versions of ping installed by default on a Debian system (iputils-ping) vs. that installed in the official Docker image (inetutils-ping), and their differing interpretations of how "flood ping" is supposed to behave.

Please consider replacing inetutils-ping in the official Docker image with iputils-ping for consistency with how a normal Debian system would behave. Also, in my experience, the "well-known" behaviour of flood ping (e.g. on the BSDs) is consistent with that of iputils-ping, which I believe is derived from the BSD code.

Where is dpkg-architecture?

I couldn't compile Pillow because the link libz.so -> libz.so.1 is missing in /lib/x86_64-linux-gnu. The Debian Policy Manual says that .so link should be installed along with the development packages. The zlib1g-dev package was installed but libz.so is missing.

root@eba34fc4c7ff:/# dpkg-query -l | grep zlib
ii  zlib1g:amd64            1:1.2.8.dfsg-5        amd64        compression library - runtime
ii  zlib1g-dev:amd64        1:1.2.8.dfsg-5        amd64        compression library - development
root@eba34fc4c7ff:/# ls /lib/x86_64-linux-gnu/libz*
/lib/x86_64-linux-gnu/libz.so.1  /lib/x86_64-linux-gnu/libz.so.1.2.8

For details see docker-library/python#305.

debian:jessie perl is broken

This is affecting downstream containers, including postgres:9

Imports of basic Perl built-in packages (such as use strict and use warnings) throws an error and exits the interpreter in the current debian:jessie container

$ docker run -it debian:jessie /bin/bash
root@6e14fefd58d6:/# ls
bin  boot  dev	etc  home  lib	lib64  media  mnt  opt	proc  root  run  sbin  srv  sys  tmp  usr  var
root@6e14fefd58d6:/# perl
use strict;
strict.pm did not return a true value at - line 1.
BEGIN failed--compilation aborted at - line 1.
root@6e14fefd58d6:/#

why images hardlink /bin/* tools under /usr/bin?

$> docker run -it --rm debian:sid      
root@f6dda2181c64:/# for f in /bin/*; do uf=/usr$f; [ -e $uf ] || echo "$f is not under /usr"; done
root@f6dda2181c64:/# ls -il {,/usr}/bin/which
524749 -rwxr-xr-x 1 root root 946 Apr  2  2017 /bin/which
524749 -rwxr-xr-x 1 root root 946 Apr  2  2017 /usr/bin/which
root@f6dda2181c64:/# exit

$> docker history debian:sid
IMAGE               CREATED             CREATED BY                                      SIZE                COMMENT
628cfdcab876        7 months ago        /bin/sh -c #(nop)  CMD ["/bin/bash"]            0B                  
<missing>           7 months ago        /bin/sh -c #(nop) ADD file:485c5e010aec72a...   100MB  

Package build-essentials can not be installed for jessie if security updates are removed

Trying to setup a Docker container fails as build-essential cannot be installed because of the following error:

build-essential : Depends: gcc (>= 4:4.9.1) but it is not going to be installed
                   Depends: g++ (>= 4:4.9.1) but it is not going to be installed

The Dockerfile is defined as follows:

FROM 	library/debian:jessie
RUN cp /etc/apt/sources.list	/tmp/sources.list	&& \
	grep -v security /tmp/sources.list 	>/etc/apt/sources.list
RUN	apt-get	update
RUN	apt-get	install	-y build-essential

It seems that the base jessie image has changed recently and does not reflect the original version. The problem seems to be that libc has been updated to version 8u10 .

Removing security updates was an attempt to be able to install the PowerPC cross compiler from emdebian.org. As we are using the container for cross compilation, security updates are not a must have.

Missing folders in /usr/share/man for stable-slim

Starting the container with:
$> docker run -it debian:stable-slim

Installing software inside the container:
$> apt update && DEBIAN_FRONTEND=noninteractive apt-get --yes install openjdk-8-jre-headless

leads to the following error:

update-alternatives: error: error creating symbolic link '/usr/share/man/man1/rmid.1.gz.dpkg-tmp': No such file or directory
dpkg: error processing package openjdk-8-jre-headless:amd64 (--configure):
 subprocess installed post-installation script returned error exit status 2
Processing triggers for libc-bin (2.24-11+deb9u3) ...
Errors were encountered while processing:
 openjdk-8-jre-headless:amd64

Removing all files and folders in /usr/share/man seems to break at least some packages, maybe only delete the files and retain the folders?

Can't install postgresql in stretch-slim

Setting up postgresql-client-9.6 (9.6.3-3) ...
update-alternatives: using /usr/share/postgresql/9.6/man/man1/psql.1.gz to provide /usr/share/man/man1/psql.1.gz (psql.1.gz) in auto mode
update-alternatives: error: error creating symbolic link '/usr/share/man/man1/psql.1.gz.dpkg-tmp': No such file or directory

So, you can remove the files from the man folders, but don't remove the directories. I don't think u-a should create the missing intervening directories in this case.

Vulnerability fix for perl in jessie

See https://www.debian.org/security/2017/dsa-3982

For the oldstable distribution (jessie), these problems have been fixed in version 5.20.2-3+deb8u9.

The debian:jessie image should be rebuilt into Docker hub to make sure it uses perl-base 5.20.2-3+deb8u9.

$ docker pull debian:jessie
jessie: Pulling from library/debian
Digest: sha256:90f44b88dd8d80bd0fca08c728591fbc43fe36feed3d38428ae1d6d375d96689
Status: Image is up to date for debian:jessie

$ docker run --rm -it debian:jessie bash -c 'dpkg -l | grep perl-base'
ii  perl-base   5.20.2-3+deb8u8   amd64   minimal Perl system

Thanks.

Bash 4.4.18-1 fails to install on multiple foreign platforms

Setting up bash (4.4.18-1) ...
bash: xmalloc: .././locale.c:81: cannot allocate 2 bytes (0 bytes allocated)
dpkg: error processing package bash (--configure):
 installed bash package post-installation script subprocess returned error exit status 2
Errors were encountered while processing:
 bash
E: Sub-process /usr/bin/dpkg returned an error code (1)

Affected arichitectures are:

  • buster-mips
  • buster-mips64el
  • buster-mipsel
  • buster-ppc64el
  • sid-mips
  • sid-mips64el
  • sid-mipsel
  • sid-powerpc
  • sid-ppc64el

See Debian bug 889869. Version 4.4.18-1.1 has been released on Feb 13. CI build error for my fork.

Cannot install python3 on stretch due to Python locale encoding error

Build using ansible-container: (files attached)
python3-debian.zip

~$ ansible-container build
Building Docker Engine context...
Starting Docker build of Ansible Container Conductor image (please be patient)...
Parsing conductor CLI args.
Dockerโ„ข daemon integration engine loaded. Build starting.       project=python3-debian
Building service...     project=python3-debian service=someservice

PLAY [someservice] *************************************************************

TASK [Gathering Facts] *********************************************************
ok: [someservice]

TASK [python3-test-role : Install python3] *************************************
fatal: [someservice]: FAILED! => {"cache_update_time": 1501451506, "cache_updated": true, "changed": false, "failed": true, "msg": "'/usr/bin/apt-get -y -o \"Dpkg::Options::=--force-confdef\" -o \"Dpkg::Options::=--force-confold\"     install 'python3'' failed: debconf: delaying package configuration, since apt-utils is not installed\nE: Sub-process /usr/bin/dpkg returned an error code (1)\n", "rc": 100, "stderr": "debconf: delaying package configuration, since apt-utils is not installed\nE: Sub-process /usr/bin/dpkg returned an error code (1)\n", "stderr_lines": ["debconf: delaying package configuration, since apt-utils is not installed", "E: Sub-process /usr/bin/dpkg returned an error code (1)"], "stdout": "Reading package lists...\nBuilding dependency tree...\nReading state information...\nThe following additional packages will be installed:\n  bzip2 dh-python file libexpat1 libmagic-mgc libmagic1 libmpdec2\n  libpython3-stdlib libpython3.5-minimal libpython3.5-stdlib libreadline7\n  libsqlite3-0 libssl1.1 mime-support python3-minimal python3.5\n  python3.5-minimal readline-common xz-utils\nSuggested packages:\n  bzip2-doc libdpkg-perl python3-doc python3-tk python3-venv python3.5-venv\n  python3.5-doc binutils binfmt-support readline-doc\nThe following NEW packages will be installed:\n  bzip2 dh-python file libexpat1 libmagic-mgc libmagic1 libmpdec2\n  libpython3-stdlib libpython3.5-minimal libpython3.5-stdlib libreadline7\n  libsqlite3-0 libssl1.1 mime-support python3 python3-minimal python3.5\n  python3.5-minimal readline-common xz-utils\n0 upgraded, 20 newly installed, 0 to remove and 0 not upgraded.\nNeed to get 7869 kB of archives.\nAfter this operation, 36.6 MB of additional disk space will be used.\nGet:1 http://deb.debian.org/debian stretch/main amd64 libssl1.1 amd64 1.1.0f-3 [1342 kB]\nGet:2 http://deb.debian.org/debian stretch/main amd64 libpython3.5-minimal amd64 3.5.3-1 [573 kB]\nGet:3 http://deb.debian.org/debian stretch/main amd64 python3.5-minimal amd64 3.5.3-1 [1688 kB]\nGet:4 http://deb.debian.org/debian stretch/main amd64 python3-minimal amd64 3.5.3-1 [35.3 kB]\nGet:5 http://deb.debian.org/debian stretch/main amd64 mime-support all 3.60 [36.7 kB]\nGet:6 http://deb.debian.org/debian stretch/main amd64 libmpdec2 amd64 2.4.2-1 [85.2 kB]\nGet:7 http://deb.debian.org/debian stretch/main amd64 readline-common all 7.0-3 [70.4 kB]\nGet:8 http://deb.debian.org/debian stretch/main amd64 libreadline7 amd64 7.0-3 [151 kB]\nGet:9 http://deb.debian.org/debian stretch/main amd64 libsqlite3-0 amd64 3.16.2-5 [572 kB]\nGet:10 http://deb.debian.org/debian stretch/main amd64 libpython3.5-stdlib amd64 3.5.3-1 [2166 kB]\nGet:11 http://deb.debian.org/debian stretch/main amd64 python3.5 amd64 3.5.3-1 [229 kB]\nGet:12 http://deb.debian.org/debian stretch/main amd64 libpython3-stdlib amd64 3.5.3-1 [18.6 kB]\nGet:13 http://deb.debian.org/debian stretch/main amd64 dh-python all 2.20170125 [86.8 kB]\nGet:14 http://deb.debian.org/debian stretch/main amd64 python3 amd64 3.5.3-1 [21.6 kB]\nGet:15 http://deb.debian.org/debian stretch/main amd64 bzip2 amd64 1.0.6-8.1 [47.5 kB]\nGet:16 http://deb.debian.org/debian stretch/main amd64 libmagic-mgc amd64 1:5.30-1 [222 kB]\nGet:17 http://deb.debian.org/debian stretch/main amd64 libmagic1 amd64 1:5.30-1 [111 kB]\nGet:18 http://deb.debian.org/debian stretch/main amd64 file amd64 1:5.30-1 [63.9 kB]\nGet:19 http://deb.debian.org/debian stretch/main amd64 xz-utils amd64 5.2.2-1.2+b1 [266 kB]\nGet:20 http://security.debian.org stretch/updates/main amd64 libexpat1 amd64 2.2.0-2+deb9u1 [83.4 kB]\nFetched 7869 kB in 40s (196 kB/s)\nSelecting previously unselected package libssl1.1:amd64.\r\n(Reading database ... \r(Reading database ... 5%\r(Reading database ... 10%\r(Reading database ... 15%\r(Reading database ... 20%\r(Reading database ... 25%\r(Reading database ... 30%\r(Reading database ... 35%\r(Reading database ... 40%\r(Reading database ... 45%\r(Reading database ... 50%\r(Reading database ... 55%\r(Reading database ... 60%\r(Reading database ... 65%\r(Reading database ... 70%\r(Reading database ... 75%\r(Reading database ... 80%\r(Reading database ... 85%\r(Reading database ... 90%\r(Reading database ... 95%\r(Reading database ... 100%\r(Reading database ... 6491 files and directories currently installed.)\r\nPreparing to unpack .../00-libssl1.1_1.1.0f-3_amd64.deb ...\r\nUnpacking libssl1.1:amd64 (1.1.0f-3) ...\r\nSelecting previously unselected package libpython3.5-minimal:amd64.\r\nPreparing to unpack .../01-libpython3.5-minimal_3.5.3-1_amd64.deb ...\r\nUnpacking libpython3.5-minimal:amd64 (3.5.3-1) ...\r\nSelecting previously unselected package libexpat1:amd64.\r\nPreparing to unpack .../02-libexpat1_2.2.0-2+deb9u1_amd64.deb ...\r\nUnpacking libexpat1:amd64 (2.2.0-2+deb9u1) ...\r\nSelecting previously unselected package python3.5-minimal.\r\nPreparing to unpack .../03-python3.5-minimal_3.5.3-1_amd64.deb ...\r\nUnpacking python3.5-minimal (3.5.3-1) ...\r\nSelecting previously unselected package python3-minimal.\r\nPreparing to unpack .../04-python3-minimal_3.5.3-1_amd64.deb ...\r\nUnpacking python3-minimal (3.5.3-1) ...\r\nSelecting previously unselected package mime-support.\r\nPreparing to unpack .../05-mime-support_3.60_all.deb ...\r\nUnpacking mime-support (3.60) ...\r\nSelecting previously unselected package libmpdec2:amd64.\r\nPreparing to unpack .../06-libmpdec2_2.4.2-1_amd64.deb ...\r\nUnpacking libmpdec2:amd64 (2.4.2-1) ...\r\nSelecting previously unselected package readline-common.\r\nPreparing to unpack .../07-readline-common_7.0-3_all.deb ...\r\nUnpacking readline-common (7.0-3) ...\r\nSelecting previously unselected package libreadline7:amd64.\r\nPreparing to unpack .../08-libreadline7_7.0-3_amd64.deb ...\r\nUnpacking libreadline7:amd64 (7.0-3) ...\r\nSelecting previously unselected package libsqlite3-0:amd64.\r\nPreparing to unpack .../09-libsqlite3-0_3.16.2-5_amd64.deb ...\r\nUnpacking libsqlite3-0:amd64 (3.16.2-5) ...\r\nSelecting previously unselected package libpython3.5-stdlib:amd64.\r\nPreparing to unpack .../10-libpython3.5-stdlib_3.5.3-1_amd64.deb ...\r\nUnpacking libpython3.5-stdlib:amd64 (3.5.3-1) ...\r\nSelecting previously unselected package python3.5.\r\nPreparing to unpack .../11-python3.5_3.5.3-1_amd64.deb ...\r\nUnpacking python3.5 (3.5.3-1) ...\r\nSelecting previously unselected package libpython3-stdlib:amd64.\r\nPreparing to unpack .../12-libpython3-stdlib_3.5.3-1_amd64.deb ...\r\nUnpacking libpython3-stdlib:amd64 (3.5.3-1) ...\r\nSelecting previously unselected package dh-python.\r\nPreparing to unpack .../13-dh-python_2.20170125_all.deb ...\r\nUnpacking dh-python (2.20170125) ...\r\nSetting up libssl1.1:amd64 (1.1.0f-3) ...\r\nSetting up libpython3.5-minimal:amd64 (3.5.3-1) ...\r\nSetting up libexpat1:amd64 (2.2.0-2+deb9u1) ...\r\nSetting up python3.5-minimal (3.5.3-1) ...\r\nSetting up python3-minimal (3.5.3-1) ...\r\nFatal Python error: Py_Initialize: Unable to get the locale encoding\r\n  File \"/_usr/lib/python2.7/encodings/__init__.py\", line 123\r\n    raise CodecRegistryError,\\\r\n                            ^\r\nSyntaxError: invalid syntax\r\n\r\nCurrent thread 0x00007fddf78e0b40 (most recent call first):\r\nAborted (core dumped)\r\ndpkg: error processing package python3-minimal (--configure):\r\n subprocess installed post-installation script returned error exit status 134\r\nErrors were encountered while processing:\r\n python3-minimal\r\n", "stdout_lines": ["Reading package lists...", "Building dependency tree...", "Reading state information...", "The following additional packages will be installed:", "  bzip2 dh-python file libexpat1 libmagic-mgc libmagic1 libmpdec2", "  libpython3-stdlib libpython3.5-minimal libpython3.5-stdlib libreadline7", "  libsqlite3-0 libssl1.1 mime-support python3-minimal python3.5", "  python3.5-minimal readline-common xz-utils", "Suggested packages:", "  bzip2-doc libdpkg-perl python3-doc python3-tk python3-venv python3.5-venv", "  python3.5-doc binutils binfmt-support readline-doc", "The following NEW packages will be installed:", "  bzip2 dh-python file libexpat1 libmagic-mgc libmagic1 libmpdec2", "  libpython3-stdlib libpython3.5-minimal libpython3.5-stdlib libreadline7", "  libsqlite3-0 libssl1.1 mime-support python3 python3-minimal python3.5", "  python3.5-minimal readline-common xz-utils", "0 upgraded, 20 newly installed, 0 to remove and 0 not upgraded.", "Need to get 7869 kB of archives.", "After this operation, 36.6 MB of additional disk space will be used.", "Get:1 http://deb.debian.org/debian stretch/main amd64 libssl1.1 amd64 1.1.0f-3 [1342 kB]", "Get:2 http://deb.debian.org/debian stretch/main amd64 libpython3.5-minimal amd64 3.5.3-1 [573 kB]", "Get:3 http://deb.debian.org/debian stretch/main amd64 python3.5-minimal amd64 3.5.3-1 [1688 kB]", "Get:4 http://deb.debian.org/debian stretch/main amd64 python3-minimal amd64 3.5.3-1 [35.3 kB]", "Get:5 http://deb.debian.org/debian stretch/main amd64 mime-support all 3.60 [36.7 kB]", "Get:6 http://deb.debian.org/debian stretch/main amd64 libmpdec2 amd64 2.4.2-1 [85.2 kB]", "Get:7 http://deb.debian.org/debian stretch/main amd64 readline-common all 7.0-3 [70.4 kB]", "Get:8 http://deb.debian.org/debian stretch/main amd64 libreadline7 amd64 7.0-3 [151 kB]", "Get:9 http://deb.debian.org/debian stretch/main amd64 libsqlite3-0 amd64 3.16.2-5 [572 kB]", "Get:10 http://deb.debian.org/debian stretch/main amd64 libpython3.5-stdlib amd64 3.5.3-1 [2166 kB]", "Get:11 http://deb.debian.org/debian stretch/main amd64 python3.5 amd64 3.5.3-1 [229 kB]", "Get:12 http://deb.debian.org/debian stretch/main amd64 libpython3-stdlib amd64 3.5.3-1 [18.6 kB]", "Get:13 http://deb.debian.org/debian stretch/main amd64 dh-python all 2.20170125 [86.8 kB]", "Get:14 http://deb.debian.org/debian stretch/main amd64 python3 amd64 3.5.3-1 [21.6 kB]", "Get:15 http://deb.debian.org/debian stretch/main amd64 bzip2 amd64 1.0.6-8.1 [47.5 kB]", "Get:16 http://deb.debian.org/debian stretch/main amd64 libmagic-mgc amd64 1:5.30-1 [222 kB]", "Get:17 http://deb.debian.org/debian stretch/main amd64 libmagic1 amd64 1:5.30-1 [111 kB]", "Get:18 http://deb.debian.org/debian stretch/main amd64 file amd64 1:5.30-1 [63.9 kB]", "Get:19 http://deb.debian.org/debian stretch/main amd64 xz-utils amd64 5.2.2-1.2+b1 [266 kB]", "Get:20 http://security.debian.org stretch/updates/main amd64 libexpat1 amd64 2.2.0-2+deb9u1 [83.4 kB]", "Fetched 7869 kB in 40s (196 kB/s)", "Selecting previously unselected package libssl1.1:amd64.", "(Reading database ... ", "(Reading database ... 5%", "(Reading database ... 10%", "(Reading database ... 15%", "(Reading database ... 20%", "(Reading database ... 25%", "(Reading database ... 30%", "(Reading database ... 35%", "(Reading database ... 40%", "(Reading database ... 45%", "(Reading database ... 50%", "(Reading database ... 55%", "(Reading database ... 60%", "(Reading database ... 65%", "(Reading database ... 70%", "(Reading database ... 75%", "(Reading database ... 80%", "(Reading database ... 85%", "(Reading database ... 90%", "(Reading database ... 95%", "(Reading database ... 100%", "(Reading database ... 6491 files and directories currently installed.)", "Preparing to unpack .../00-libssl1.1_1.1.0f-3_amd64.deb ...", "Unpacking libssl1.1:amd64 (1.1.0f-3) ...", "Selecting previously unselected package libpython3.5-minimal:amd64.", "Preparing to unpack .../01-libpython3.5-minimal_3.5.3-1_amd64.deb ...", "Unpacking libpython3.5-minimal:amd64 (3.5.3-1) ...", "Selecting previously unselected package libexpat1:amd64.", "Preparing to unpack .../02-libexpat1_2.2.0-2+deb9u1_amd64.deb ...", "Unpacking libexpat1:amd64 (2.2.0-2+deb9u1) ...", "Selecting previously unselected package python3.5-minimal.", "Preparing to unpack .../03-python3.5-minimal_3.5.3-1_amd64.deb ...", "Unpacking python3.5-minimal (3.5.3-1) ...", "Selecting previously unselected package python3-minimal.", "Preparing to unpack .../04-python3-minimal_3.5.3-1_amd64.deb ...", "Unpacking python3-minimal (3.5.3-1) ...", "Selecting previously unselected package mime-support.", "Preparing to unpack .../05-mime-support_3.60_all.deb ...", "Unpacking mime-support (3.60) ...", "Selecting previously unselected package libmpdec2:amd64.", "Preparing to unpack .../06-libmpdec2_2.4.2-1_amd64.deb ...", "Unpacking libmpdec2:amd64 (2.4.2-1) ...", "Selecting previously unselected package readline-common.", "Preparing to unpack .../07-readline-common_7.0-3_all.deb ...", "Unpacking readline-common (7.0-3) ...", "Selecting previously unselected package libreadline7:amd64.", "Preparing to unpack .../08-libreadline7_7.0-3_amd64.deb ...", "Unpacking libreadline7:amd64 (7.0-3) ...", "Selecting previously unselected package libsqlite3-0:amd64.", "Preparing to unpack .../09-libsqlite3-0_3.16.2-5_amd64.deb ...", "Unpacking libsqlite3-0:amd64 (3.16.2-5) ...", "Selecting previously unselected package libpython3.5-stdlib:amd64.", "Preparing to unpack .../10-libpython3.5-stdlib_3.5.3-1_amd64.deb ...", "Unpacking libpython3.5-stdlib:amd64 (3.5.3-1) ...", "Selecting previously unselected package python3.5.", "Preparing to unpack .../11-python3.5_3.5.3-1_amd64.deb ...", "Unpacking python3.5 (3.5.3-1) ...", "Selecting previously unselected package libpython3-stdlib:amd64.", "Preparing to unpack .../12-libpython3-stdlib_3.5.3-1_amd64.deb ...", "Unpacking libpython3-stdlib:amd64 (3.5.3-1) ...", "Selecting previously unselected package dh-python.", "Preparing to unpack .../13-dh-python_2.20170125_all.deb ...", "Unpacking dh-python (2.20170125) ...", "Setting up libssl1.1:amd64 (1.1.0f-3) ...", "Setting up libpython3.5-minimal:amd64 (3.5.3-1) ...", "Setting up libexpat1:amd64 (2.2.0-2+deb9u1) ...", "Setting up python3.5-minimal (3.5.3-1) ...", "Setting up python3-minimal (3.5.3-1) ...", "Fatal Python error: Py_Initialize: Unable to get the locale encoding", "  File \"/_usr/lib/python2.7/encodings/__init__.py\", line 123", "    raise CodecRegistryError,\\", "                            ^", "SyntaxError: invalid syntax", "", "Current thread 0x00007fddf78e0b40 (most recent call first):", "Aborted (core dumped)", "dpkg: error processing package python3-minimal (--configure):", " subprocess installed post-installation script returned error exit status 134", "Errors were encountered while processing:", " python3-minimal"]}
        to retry, use: --limit @/tmp/tmplMpR2d/playbook.retry

PLAY RECAP *********************************************************************
someservice                : ok=1    changed=0    unreachable=0    failed=1

ERROR   Error applying role!    engine=<container.docker.engine.Engine object at 0x7fbcfffe1950> exit_code=2 playbook=[{'hosts': u'someservice', 'roles': [ordereddict([('role', 'python3-test-role')])], 'vars': {}}]
Traceback (most recent call last):
  File "/usr/local/bin/conductor", line 11, in <module>
    load_entry_point('ansible-container', 'console_scripts', 'conductor')()
  File "/_ansible/container/__init__.py", line 19, in __wrapped__
    return fn(*args, **kwargs)
  File "/_ansible/container/cli.py", line 360, in conductor_commandline
    **params)
  File "/_ansible/container/__init__.py", line 19, in __wrapped__
    return fn(*args, **kwargs)
  File "/_ansible/container/core.py", line 724, in conductorcmd_build
    raise RuntimeError('Build failed.')
RuntimeError: Build failed.
Conductor terminated. Cleaning up.      command_rc=1 conductor_id=fb5f2c993660af3fe9325bcfaebd926702f1161999d96b32d5376b7daa54ea7b save_container=False
ERROR   Conductor exited with status 1

Error when I run exec kill

Using the image debian:8 I can run docker exec container kill 1 and it works fine.

But with the new image: debian:9 I get this error:

rpc error: code = 2 desc = oci runtime error: exec failed: container_linux.go:247: starting container process caused "exec: \"kill\": executable file not found in $PATH"

Am I doing something wrong? Is this a bug or just a desired BC?

My workaround right now is: docker exec container bash -c "kill 1".

Debian containers now private ??

This is the same for other releases...

curl -s https://registry-1.docker.io/v2/library/debian/manifests/stretch-slim |jq .
{
  "errors": [
    {
      "code": "UNAUTHORIZED",
      "message": "authentication required",
      "detail": [
        {
          "Type": "repository",
          "Class": "",
          "Name": "library/debian",
          "Action": "pull"
        }
      ]
    }
  ]
}

error installing default-jdk on stretch-slim

Despite path-exclude /usr/share/man/* in "/etc/dpkg/dpk.cfg.d/docker", I'm hitting an error with an installation trying to link into "/usr/share/man/man1/".

In my Dockerfile, I have

FROM debian:stretch-slim
...
RUN apt-get install -yq --no-install-recommends default-jdk

The build output shows

Setting up openjdk-8-jre-headless:amd64 (8u151-b12-1~deb9u1) ...
update-alternatives: using /usr/lib/jvm/java-8-openjdk-amd64/jre/bin/rmid to provide /usr/bin/rmid (rmid) in auto mode
update-alternatives: error: error creating symbolic link '/usr/share/man/man1/rmid.1.gz.dpkg-tmp': No such file or directory

Does the path-exclude option not affect symbolic links? Is there another way you could exclude those for slim?

Question about Archive_Tar package

Is the Archive_Tar package built in on debian:jessie?

Sorry if this is out of context here, but I'm new on this and I'm facing an issue due to Archive_Tar version being 1.4.0:

INSTALLED PACKAGES, CHANNEL PEAR.PHP.NET:
=========================================
PACKAGE          VERSION STATE
Archive_Tar      1.4.0   stable
Console_Getopt   1.4.1   stable
PEAR             1.10.1  stable
PEAR_Manpages    1.10.0  stable
Structures_Graph 1.1.1   stable
XML_Util         1.3.0   stable

The issue is:

PHP Fatal error:  Cannot use result of built-in function in write context in /usr/share/php/Archive/Tar.php on line 639

That was fixed on 1.4.3, but I don't understand from where that package is coming from.

Even trying to update it by running a pear upgrade, it's failing:

Step 16/47 : RUN pear upgrade Archive_Tar
 ---> Running in 6c67943236ce
downloading Archive_Tar-1.4.3.tgz ...
Starting to download Archive_Tar-1.4.3.tgz (20,682 bytes)
........done: 20,682 bytes
PHP Fatal error:  Cannot use result of built-in function in write context in /usr/share/php/Archive/Tar.php on line 639
PHP Stack trace:
PHP   1. {main}() /usr/share/php/pearcmd.php:0
PHP   2. PEAR_Command_Install->run() /usr/share/php/pearcmd.php:316
PHP   3. PEAR_Command_Install->doInstall() /usr/share/php/PEAR/Command/Common.php:270
PHP   4. PEAR_Downloader->download() /usr/share/php/PEAR/Command/Install.php:666
PHP   5. PEAR_Downloader_Package->download() /usr/share/php/PEAR/Downloader.php:473
PHP   6. PEAR_Downloader_Package->_fromUrl() /usr/share/php/PEAR/Downloader/Package.php:262
PHP   7. PEAR_PackageFile->fromAnyFile() /usr/share/php/PEAR/Downloader/Package.php:1599
PHP   8. PEAR_PackageFile->fromTgzFile() /usr/share/php/PEAR/PackageFile.php:473
ERROR: Service 'core' failed to build: The command '/bin/sh -c pear upgrade Archive_Tar' returned a non-zero code: 255

Any thoughts?

security updates dropped on some jessie arches, apt-get update fails

https://lists.debian.org/debian-security-announce/2018/msg00132.html
Currently only amd64/i386/armhf/armel still receive security updates, but prebuilt artifacts still have debian-security entry for all the architectures. Need a simple rebuild on them.

$ for arch in aarch64 amd64 arm32v5 arm32v7 arm64v8 i386 ppc64le s390x; do \
  echo "##### $arch #####"; \
  docker run -it --rm $arch/debian:jessie cat /etc/apt/sources.list; \
done
##### aarch64 #####
deb http://deb.debian.org/debian jessie main
deb http://deb.debian.org/debian jessie-updates main
deb http://security.debian.org jessie/updates main
##### amd64 #####
deb http://deb.debian.org/debian jessie main
deb http://security.debian.org/debian-security jessie/updates main
deb http://deb.debian.org/debian jessie-updates main
##### arm32v5 #####
deb http://deb.debian.org/debian jessie main
deb http://security.debian.org/debian-security jessie/updates main
deb http://deb.debian.org/debian jessie-updates main
##### arm32v7 #####
deb http://deb.debian.org/debian jessie main
deb http://security.debian.org/debian-security jessie/updates main
deb http://deb.debian.org/debian jessie-updates main
##### arm64v8 #####
deb http://deb.debian.org/debian jessie main
deb http://deb.debian.org/debian jessie-updates main
deb http://security.debian.org/debian-security jessie/updates main
##### i386 #####
deb http://deb.debian.org/debian jessie main
deb http://security.debian.org/debian-security jessie/updates main
deb http://deb.debian.org/debian jessie-updates main
##### ppc64le #####
deb http://deb.debian.org/debian jessie main
deb http://security.debian.org/debian-security jessie/updates main
deb http://deb.debian.org/debian jessie-updates main
##### s390x #####
deb http://deb.debian.org/debian jessie main
deb http://security.debian.org/debian-security jessie/updates main
deb http://deb.debian.org/debian jessie-updates main

please add minimal editor

Currently, default Image has no any editor.
It would be great to have one minimal POSIX compatible like vi or vim-tiny.

CentOs and Alpine have vi installed by default.
Ubuntu haven't
But now even vipw command doesn't work.

debian:*sid images have broken openssl implementation?

Even with ca-certificates installed (to contrast with #15), the ssl behavior of sid has strange problems. Case in point:

FROM debian:sid-slim
RUN apt-get -qqy update && apt-get -qqy install curl
RUN curl -v https://packagecloud.io

does

Step 1/3 : FROM debian:sid-slim
 ---> 15a24e403848
Step 2/3 : RUN apt-get -qqy update && apt-get -qqy install curl
 ---> Running in 23ed5635d96e
<SNIP>
Setting up curl (7.61.0-1) ...
Processing triggers for libc-bin (2.27-6) ...
Processing triggers for ca-certificates (20180409) ...
Updating certificates in /etc/ssl/certs...
0 added, 0 removed; done.
Running hooks in /etc/ca-certificates/update.d...
done.
Removing intermediate container 23ed5635d96e
 ---> 9c6ffae6de03
Step 3/3 : RUN curl -v https://packagecloud.io
 ---> Running in c61b3301774b
* Rebuilt URL to: https://packagecloud.io/
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0*   Trying 50.97.198.58...
* TCP_NODELAY set
* Connected to packagecloud.io (50.97.198.58) port 443 (#0)
* ALPN, offering h2
* ALPN, offering http/1.1
* successfully set certificate verify locations:
*   CAfile: none
  CApath: /etc/ssl/certs
} [5 bytes data]
* (304) (OUT), TLS handshake, Client hello (1):
} [512 bytes data]
* (304) (IN), TLS handshake, Server hello (2):
{ [93 bytes data]
* TLSv1.2 (IN), TLS handshake, Certificate (11):
{ [5416 bytes data]
* TLSv1.2 (IN), TLS handshake, Server key exchange (12):
{ [333 bytes data]
* TLSv1.2 (OUT), TLS alert, Server hello (2):
} [2 bytes data]
* error:1414D172:SSL routines:tls12_check_peer_sigalg:wrong signature type
* stopped the pause stream!
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
* Closing connection 0
curl: (35) error:1414D172:SSL routines:tls12_check_peer_sigalg:wrong signature type
The command '/bin/sh -c curl -v https://packagecloud.io' returned a non-zero code: 35

This site has a perfectly valid TLS 1.2 cert from most systems. I ran a qualys ssl labs report on it and it came back clean. The ssl behavior appears correct on images built on base images other than debian:*slim

apt-get install fails on debian:* containers

I have a Dockerfile that looks like this:

FROM debian:stretch

RUN apt-get update  \
    && apt-get install -y gnupg2 wget

And when running docker build the following error appears:


RUN apt-get updateย  ย  ย  && apt-get install -y gnupg2 wget
--
 ---> Running in 12ad95e32ff4
Get:1 http://security-cdn.debian.org/debian-security stretch/updates InRelease [94.3 kB]
Ign:1 http://security-cdn.debian.org/debian-security stretch/updates InRelease
Get:2 http://security-cdn.debian.org/debian-security stretch/updates/main amd64 Packages [454 kB]
Ign:3 http://cdn-fastly.deb.debian.org/debian stretch InRelease
07-Nov-2018 06:13:06 | Get:4 http://cdn-fastly.deb.debian.org/debian stretch-updates InRelease [91.0 kB]
Ign:4 http://cdn-fastly.deb.debian.org/debian stretch-updates InRelease
Get:6 http://cdn-fastly.deb.debian.org/debian stretch-updates/main amd64 Packages [5152 B]
Get:5 http://cdn-fastly.deb.debian.org/debian stretch Release [118 kB]
 Get:7 http://cdn-fastly.deb.debian.org/debian stretch Release.gpg [2434 B]
 Ign:7 http://cdn-fastly.deb.debian.org/debian stretch Release.gpg
Get:8 http://cdn-fastly.deb.debian.org/debian stretch/main amd64 Packages [7099 kB]
Fetched 7864 kB in 2s (3078 kB/s)
Reading package lists...
W: GPG error: http://security-cdn.debian.org/debian-security stretch/updates InRelease: Couldn't create temporary file /tmp/apt.conf.LKovxC for passing config to apt-key
W: The repository 'http://security.debian.org/debian-security stretch/updates InRelease' is not signed.
W: GPG error: http://cdn-fastly.deb.debian.org/debian stretch-updates InRelease: Couldn't create temporary file /tmp/apt.conf.VMeCu8 for passing config to apt-key
W: The repository 'http://deb.debian.org/debian stretch-updates InRelease' is not signed.
W: GPG error: http://cdn-fastly.deb.debian.org/debian stretch Release: Couldn't create temporary file /tmp/apt.conf.yvoP5E for passing config to apt-key
W: The repository 'http://deb.debian.org/debian stretch Release' is not signed.

Is there any workaround/fix for this issue? I dont seem to see this if I use a Ubuntu base image.

Inconsistency between _/debian and armhf/debian

arm32v7/debian:stretch-slim has symlinks for /bin and /lib to /usr/bin and /usr/lib respectively. _/debian:stretch-slim still has separate /bin and /usr/bin.

This inconsistency is odd. It is possible that arm32v7/debian is just out of date, since it was last updated 2 months ago, and _/debian was last updated 1 month ago.

Debian sid-slim fails to apt upgrade

It seems that dash package within sid-slim prevents upgrading packages.

FROM debian:sid-slim
...
RUN apt-get -qq update && apt-get -qq -y upgrade

debconf: delaying package configuration, since apt-utils is not installed
(Reading database ... 6335 files and directories currently installed.)
Preparing to unpack .../dash_0.5.10.2-1_amd64.deb ...
Removing 'diversion of /bin/sh to /bin/sh.distrib by dash'
Adding 'diversion of /bin/sh to /bin/sh.distrib by bash'
Removing 'diversion of /usr/share/man/man1/sh.1.gz to /usr/share/man/man1/sh.distrib.1.gz by dash'
Adding 'diversion of /usr/share/man/man1/sh.1.gz to /usr/share/man/man1/sh.distrib.1.gz by bash'
dash.preinst: cannot remove /usr/share/man/man1/sh.distrib.1.gz: No such file or directory
dpkg: error processing archive /var/cache/apt/archives/dash_0.5.10.2-1_amd64.deb (--unpack):
 new dash package pre-installation script subprocess returned error exit status 1
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.26.2 /usr/local/share/perl/5.26.2 /usr/lib/x86_64-linux-gnu/perl5/5.26 /usr/share/perl5 /usr/lib/x86_64-linux-gnu/perl/5.26 /usr/share/perl/5.26 /usr/local/lib/site_perl /usr/lib/x86_64-linux-gnu/perl-base) at /usr/share/perl5/Debconf/FrontEnd/Readline.pm line 7.)
debconf: falling back to frontend: Teletype
Removing 'diversion of /bin/sh to /bin/sh.distrib by bash'
Adding '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 bash'
Adding 'diversion of /usr/share/man/man1/sh.1.gz to /usr/share/man/man1/sh.distrib.1.gz by dash'
ln: failed to create symbolic link '/usr/share/man/man1/sh.1.gz.tmp': No such file or directory
dpkg: error while cleaning up:
 installed dash package post-installation script subprocess returned error exit status 1
Errors were encountered while processing:
 /var/cache/apt/archives/dash_0.5.10.2-1_amd64.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)
The command '/bin/sh -c apt-get -qq update && apt-get -qq -y upgrade' returned a non-zero code: 100

temporary fix was to add RUN mkdir -p /usr/share/man/man1/ && touch /usr/share/man/man1/sh.distrib.1.gz before update

getting error "Unix syslog delivery error" in debian:jessie while running mongosqld

Hi,

I am getting error "Unix syslog delivery error" when i run my docker image through kubernetes.
My dockerfile looks like this.

FROM debian:jessie
EXPOSE 3307
COPY maven /abc/
WORKDIR /abc
RUN apt-get update && apt-get install -y openssl libssl-dev libgssapi-krb5-2 syslog-ng-core && adduser user1 && chown -R user1 /abc
ENTRYPOINT ["/bin/sh","/abc/run.sh"]
USER abc

and my run.sh is below

#!/bin/bash
chmod 755 /abc/mongosqld
/abc/mongosqld --schema /abc/rmg.drdl --mongo-uri mongodb://10.15.x.y:4232 --auth --mongo-username admin --mongo-password admin --sslPEMKeyFile=/abc/mongosqld-server.pem --sslMode allowSSL --quiet

Please let me know how to resolve this.

perl-base needs a security update

At least in debian:jessie and debian:stretch.

DSA: https://www.debian.org/security/2018/dsa-4172

For the oldstable distribution (jessie), these problems have been fixed in version 5.20.2-3+deb8u10. The oldstable distribution (jessie) update contains only a fix for CVE-2018-6913.

For the stable distribution (stretch), these problems have been fixed in version 5.24.1-3+deb9u3.

Version check:

$ docker run --rm -it debian:jessie bash -c 'dpkg -l | grep perl-base'
ii   perl-base   5.20.2-3+deb8u9   amd64   minimal Perl system
$ docker run --rm -it debian:stretch bash -c 'dpkg -l | grep perl-base'
ii   perl-base   5.24.1-3+deb9u2   amd64   minimal Perl system

Thanks ๐Ÿ™‚

AppImage creation fails only on debian:stretch-slim

I use debian:stretch-slim to build an AppImage. That worked fine at 2018-10-21T21:52+0000 but began to fail shortly thereafter.

I'm getting the error messages:

terminate called after throwing an instance of 'linuxdeploy::core::elf::ElfFileParseError'
what(): No such file or directory: /usr/lib/x86_64-linux-gnu/libicud

,

terminate called after throwing an instance of 'linuxdeploy::core::elf::ElfFileParseError'
what(): No such file or directory: /usr/lib/x86_64-linux-

and

terminate called after throwing an instance of 'linuxdeploy::core::elf::ElfFileParseError'
what(): No such file or directory: /lib/x86_64-linux-gnu/libpcre.so.

Part of the file paths are cut off.

Logfiles

Successful build: https://drone.tzend.de/tastytea/whyblocked/103/3
Same commit, now unsuccessful: https://drone.tzend.de/tastytea/whyblocked/108/3

Reproducibility

I first thought that it was a problem with linuxdeploy, but after some testing I was not able to reproduce this behavior on:

  • Docker-image debian:buster-slim
  • Docker-image ubuntu:18.04
  • Debian stretch in a VM
  • Gentoo

Further information

Here is the original issue: linuxdeploy/linuxdeploy#35

This is my sourcecode, at the commit that previously worked and now doesn't: https://schlomp.space/tastytea/whyblocked/src/commit/f6ed2c8d89b438db4acad2f6656b28033f83f546

This is the buildscript I use: https://schlomp.space/tastytea/whyblocked/src/commit/f6ed2c8d89b438db4acad2f6656b28033f83f546/.drone.yml

suggestion: please install ca-certificates by default

Currently, the ca-certificates package is not included in the debian docker image. Nowadays, this essentially equals not being able to make outbound connections to the internet by default. Given TLSโ€™s pervasiveness, could we install ca-certificates by default?

debian:jessie image cannnot run apt-get

I'm using Docker for Mac on High Sierra.
In this environment, apt-get that run on current debian:jessie image exits immediately with segmentation fault.

debian:jessie image on Linux works fine.
Further both debian:jessie-slim and debian:buster images on macOS works too.

Docker version:

$ docker version
Client:
 Version:	17.12.0-ce
 API version:	1.35
 Go version:	go1.9.2
 Git commit:	c97c6d6
 Built:	Wed Dec 27 20:03:51 2017
 OS/Arch:	darwin/amd64

Server:
 Engine:
  Version:	17.12.0-ce
  API version:	1.35 (minimum version 1.12)
  Go version:	go1.9.2
  Git commit:	c97c6d6
  Built:	Wed Dec 27 20:12:29 2017
  OS/Arch:	linux/amd64
  Experimental:	true

macOS version:

$ sw_vers 
ProductName:	Mac OS X
ProductVersion:	10.13.2
BuildVersion:	17C205

Steps to reproduce

$ docker run -ti --rm debian:jessie
Unable to find image 'debian:jessie' locally
jessie: Pulling from library/debian
f49cf87b52c1: Already exists 
Digest: sha256:e4662a38a8504fae8324e089cd95e1b33cc45ab876ca699969e1e92ced74bd13
Status: Downloaded newer image for debian:jessie
root@9f251edfd4bd:/# apt-get --help
Segmentation fault

coreutils copied to wrong locations

chmod and chown plus some more utilities are copied from /bin/ to /usr/bin/ - which makes cmake choose a wrong path for these binaries. The packaging system clearly shows that the /usr/bin/ version wasn't installed via a debian package:

# dpkg -S /usr/bin/chmod
dpkg-query: no path found matching pattern /usr/bin/chmod
# dpkg -S /bin/chmod
coreutils: /bin/chmod

The container should resemble native environments as closely as possible, and either not ship them at all or only in their appropriate location.

If somebody needs them in the wrong location desperately he still can derive the debian:stretch container and do that copy.

However the original container shouldn't be tainted by unmanaged files that may originate anywhere.

404 on "http://deb.debian.org/debian stretch/main"

Probably unrelated to the Docker image, but I don't know where else to report that:

$ docker run -ti debian:9.3 apt-get update
Unable to find image 'debian:9.3' locally
9.3: Pulling from library/debian
Digest: sha256:0a5fcee6f52d5170f557ee2447d7a10a5bdcf715dd7f0250be0b678c556a501b
Status: Downloaded newer image for debian:9.3
Ign:1 http://deb.debian.org/debian stretch InRelease
Ign:2 http://deb.debian.org/debian stretch-updates InRelease
Ign:3 http://deb.debian.org/debian stretch Release  
Ign:4 http://deb.debian.org/debian stretch-updates Release
Ign:5 http://deb.debian.org/debian stretch/main all Packages
Ign:6 http://deb.debian.org/debian stretch/main amd64 Packages
Ign:7 http://deb.debian.org/debian stretch-updates/main amd64 Packages
Ign:8 http://deb.debian.org/debian stretch-updates/main all Packages
Ign:5 http://deb.debian.org/debian stretch/main all Packages
Ign:6 http://deb.debian.org/debian stretch/main amd64 Packages
Get:7 http://deb.debian.org/debian stretch-updates/main amd64 Packages [5976 B]
Ign:8 http://deb.debian.org/debian stretch-updates/main all Packages
Ign:5 http://deb.debian.org/debian stretch/main all Packages         
Ign:6 http://deb.debian.org/debian stretch/main amd64 Packages
Ign:8 http://deb.debian.org/debian stretch-updates/main all Packages
Ign:5 http://deb.debian.org/debian stretch/main all Packages
Ign:6 http://deb.debian.org/debian stretch/main amd64 Packages
Ign:8 http://deb.debian.org/debian stretch-updates/main all Packages
Ign:5 http://deb.debian.org/debian stretch/main all Packages
Ign:6 http://deb.debian.org/debian stretch/main amd64 Packages
Ign:8 http://deb.debian.org/debian stretch-updates/main all Packages
Ign:5 http://deb.debian.org/debian stretch/main all Packages
Get:9 http://security.debian.org stretch/updates InRelease [63.0 kB]
Err:6 http://deb.debian.org/debian stretch/main amd64 Packages
  404  Not Found [IP: 151.101.64.204 80]
Ign:8 http://deb.debian.org/debian stretch-updates/main all Packages
Get:10 http://security.debian.org stretch/updates/main amd64 Packages [318 kB]
Fetched 387 kB in 0s (462 kB/s)   
Reading package lists... Done
W: The repository 'http://deb.debian.org/debian stretch Release' does not have a Release file.
N: Data from such a repository can't be authenticated and is therefore potentially dangerous to use.
N: See apt-secure(8) manpage for repository creation and user configuration details.
W: The repository 'http://deb.debian.org/debian stretch-updates Release' does not have a Release file.
N: Data from such a repository can't be authenticated and is therefore potentially dangerous to use.
N: See apt-secure(8) manpage for repository creation and user configuration details.
E: Failed to fetch http://deb.debian.org/debian/dists/stretch/main/binary-amd64/Packages  404  Not Found [IP: 151.101.64.204 80]
E: Some index files failed to download. They have been ignored, or old ones used instead.

debian:jessie: /bin/ping has no suid or cap_net_raw capability

/bin/ping is included in the Debian Jessie image, but is neither SUID nor has the cap_net_raw capability (so non-root users in the container cannot ping). This has changed in the last month, since ce40fb3adcc6 had the SUID bit set on /bin/ping.

Removing and re-installing the inetutils-ping package adds the capability, so the package is supposed to have set it.

Steps to reproduce:

  1. docker pull debian:jessie
  2. docker run -it --rm debian:jessie ls -l /bin/ping shows the SUID bit is not set
  3. docker run -it --rm debian:jessie getcap /bin/ping shows no capabilities

Add curl and xz-utils into ppc64le/debian:jessie

I tried to use ppc64le/debian:jessie as base to build image for nodejs. The Dockerfile here uses curl and tar.xz to retrieve the nodejs binary. Can you add curl and xz-utils into the jessie for ppc64le. Thanks!

/etc/passwd contains entries for list, irc, gnats

Hi.

Unless mandated by Debian policy, I fail to see the need for entries in /etc/passwd for users like lists, irc or gnats on any Docker container based on debian or debian-slim (tested for stable). Check with :
$ docker run --rm -it debian:stable-slim cat /etc/passwd

May not do much harm, but confusing at least

ppc64le/debian image cannot install/run Java on Docker for Mac

Hi, I met a issue that the ppc64le/debian cannot install or run Java on Docker for Mac.

Docker version:

Client:
Version: 17.06.0-ce
API version: 1.30
Go version: go1.8.3
Git commit: 02c1d87
Built: Fri Jun 23 21:31:53 2017
OS/Arch: darwin/amd64

Server:
Version: 17.06.0-ce
API version: 1.30 (minimum version 1.12)
Go version: go1.8.3
Git commit: 02c1d87
Built: Fri Jun 23 21:51:55 2017
OS/Arch: linux/amd64
Experimental: true

Failure for Java installation:

root@dd3289325084:/# apt-get install -f -y default-jdk
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following additional packages will be installed:
adwaita-icon-theme at-spi2-core ca-certificates ca-certificates-java dbus dconf-gsettings-backend dconf-service default-java-plugin default-jdk-headless default-jre default-jre-headless
fontconfig fontconfig-config fonts-dejavu-core fonts-dejavu-extra glib-networking glib-networking-common glib-networking-services gnome-icon-theme gsettings-desktop-schemas gtk-update-icon-cache
hicolor-icon-theme icedtea-8-plugin icedtea-netx icedtea-netx-common java-common krb5-locales libapparmor1 libasound2 libasound2-data libasyncns0 libatk-bridge2.0-0 libatk-wrapper-java
libatk-wrapper-java-jni libatk1.0-0 libatk1.0-data libatspi2.0-0 libavahi-client3 libavahi-common-data libavahi-common3 libbsd0 libcairo-gobject2 libcairo2 libcap2 libcolord2 libcroco3 libcups2
libdatrie1 libdbus-1-3 libdconf1 libdrm-amdgpu1 libdrm-nouveau2 libdrm-radeon1 libdrm2 libedit2 libegl1-mesa libepoxy0 libexpat1 libffi6 libflac8 libfontconfig1 libfontenc1 libfreetype6
libgail-common libgail18 libgbm1 libgdk-pixbuf2.0-0 libgdk-pixbuf2.0-common libgif7 libgl1-mesa-dri libgl1-mesa-glx libglapi-mesa libglib2.0-0 libglib2.0-data libgmp10 libgnutls30 libgpm2
libgraphite2-3 libgssapi-krb5-2 libgtk-3-0 libgtk-3-bin libgtk-3-common libgtk2.0-0 libgtk2.0-bin libgtk2.0-common libharfbuzz0b libhogweed4 libice-dev libice6 libicu57 libidn11 libjbig0
libjpeg62-turbo libjson-glib-1.0-0 libjson-glib-1.0-common libk5crypto3 libkeyutils1 libkrb5-3 libkrb5support0 liblcms2-2 libllvm3.9 libncurses5 libnettle6 libnspr4 libnss3 libogg0 libp11-kit0
libpango-1.0-0 libpangocairo-1.0-0 libpangoft2-1.0-0 libpcsclite1 libpixman-1-0 libpng16-16 libproxy1v5 libpthread-stubs0-dev libpulse0 librest-0.7-0 librsvg2-2 librsvg2-common libsensors4
libsm-dev libsm6 libsndfile1 libsoup-gnome2.4-1 libsoup2.4-1 libsqlite3-0 libssl1.1 libtasn1-6 libthai-data libthai0 libtiff5 libtxc-dxtn-s2tc libvorbis0a libvorbisenc2 libwayland-client0
libwayland-cursor0 libwayland-egl1-mesa libwayland-server0 libwrap0 libx11-6 libx11-data libx11-dev libx11-doc libx11-xcb1 libxau-dev libxau6 libxaw7 libxcb-dri2-0 libxcb-dri3-0 libxcb-glx0
libxcb-present0 libxcb-render0 libxcb-shape0 libxcb-shm0 libxcb-sync1 libxcb-xfixes0 libxcb1 libxcb1-dev libxcomposite1 libxcursor1 libxdamage1 libxdmcp-dev libxdmcp6 libxext6 libxfixes3 libxft2
libxi6 libxinerama1 libxkbcommon0 libxml2 libxmu6 libxmuu1 libxpm4 libxrandr2 libxrender1 libxshmfence1 libxt-dev libxt6 libxtst6 libxv1 libxxf86dga1 libxxf86vm1 openjdk-8-jdk
openjdk-8-jdk-headless openjdk-8-jre openjdk-8-jre-headless openssl sgml-base shared-mime-info tcpd ucf x11-common x11-utils x11proto-core-dev x11proto-input-dev x11proto-kb-dev xdg-user-dirs
xkb-data xml-core xorg-sgml-doctools xtrans-dev
Suggested packages:
default-dbus-session-bus | dbus-session-bus libasound2-plugins alsa-utils colord cups-common gnutls-bin gpm krb5-doc krb5-user gvfs libice-doc liblcms2-utils pcscd pulseaudio librsvg2-bin
lm-sensors libsm-doc libxcb-doc libxt-doc openjdk-8-demo openjdk-8-source visualvm libnss-mdns fonts-ipafont-gothic fonts-ipafont-mincho fonts-wqy-microhei fonts-wqy-zenhei fonts-indic
sgml-base-doc mesa-utils debhelper
The following NEW packages will be installed:
adwaita-icon-theme at-spi2-core ca-certificates ca-certificates-java dbus dconf-gsettings-backend dconf-service default-java-plugin default-jdk default-jdk-headless default-jre
default-jre-headless fontconfig fontconfig-config fonts-dejavu-core fonts-dejavu-extra glib-networking glib-networking-common glib-networking-services gnome-icon-theme gsettings-desktop-schemas
gtk-update-icon-cache hicolor-icon-theme icedtea-8-plugin icedtea-netx icedtea-netx-common java-common krb5-locales libapparmor1 libasound2 libasound2-data libasyncns0 libatk-bridge2.0-0
libatk-wrapper-java libatk-wrapper-java-jni libatk1.0-0 libatk1.0-data libatspi2.0-0 libavahi-client3 libavahi-common-data libavahi-common3 libbsd0 libcairo-gobject2 libcairo2 libcap2 libcolord2
libcroco3 libcups2 libdatrie1 libdbus-1-3 libdconf1 libdrm-amdgpu1 libdrm-nouveau2 libdrm-radeon1 libdrm2 libedit2 libegl1-mesa libepoxy0 libexpat1 libffi6 libflac8 libfontconfig1 libfontenc1
libfreetype6 libgail-common libgail18 libgbm1 libgdk-pixbuf2.0-0 libgdk-pixbuf2.0-common libgif7 libgl1-mesa-dri libgl1-mesa-glx libglapi-mesa libglib2.0-0 libglib2.0-data libgmp10 libgnutls30
libgpm2 libgraphite2-3 libgssapi-krb5-2 libgtk-3-0 libgtk-3-bin libgtk-3-common libgtk2.0-0 libgtk2.0-bin libgtk2.0-common libharfbuzz0b libhogweed4 libice-dev libice6 libicu57 libidn11 libjbig0
libjpeg62-turbo libjson-glib-1.0-0 libjson-glib-1.0-common libk5crypto3 libkeyutils1 libkrb5-3 libkrb5support0 liblcms2-2 libllvm3.9 libncurses5 libnettle6 libnspr4 libnss3 libogg0 libp11-kit0
libpango-1.0-0 libpangocairo-1.0-0 libpangoft2-1.0-0 libpcsclite1 libpixman-1-0 libpng16-16 libproxy1v5 libpthread-stubs0-dev libpulse0 librest-0.7-0 librsvg2-2 librsvg2-common libsensors4
libsm-dev libsm6 libsndfile1 libsoup-gnome2.4-1 libsoup2.4-1 libsqlite3-0 libssl1.1 libtasn1-6 libthai-data libthai0 libtiff5 libtxc-dxtn-s2tc libvorbis0a libvorbisenc2 libwayland-client0
libwayland-cursor0 libwayland-egl1-mesa libwayland-server0 libwrap0 libx11-6 libx11-data libx11-dev libx11-doc libx11-xcb1 libxau-dev libxau6 libxaw7 libxcb-dri2-0 libxcb-dri3-0 libxcb-glx0
libxcb-present0 libxcb-render0 libxcb-shape0 libxcb-shm0 libxcb-sync1 libxcb-xfixes0 libxcb1 libxcb1-dev libxcomposite1 libxcursor1 libxdamage1 libxdmcp-dev libxdmcp6 libxext6 libxfixes3 libxft2
libxi6 libxinerama1 libxkbcommon0 libxml2 libxmu6 libxmuu1 libxpm4 libxrandr2 libxrender1 libxshmfence1 libxt-dev libxt6 libxtst6 libxv1 libxxf86dga1 libxxf86vm1 openjdk-8-jdk
openjdk-8-jdk-headless openjdk-8-jre openjdk-8-jre-headless openssl sgml-base shared-mime-info tcpd ucf x11-common x11-utils x11proto-core-dev x11proto-input-dev x11proto-kb-dev xdg-user-dirs
xkb-data xml-core xorg-sgml-doctools xtrans-dev
0 upgraded, 202 newly installed, 0 to remove and 0 not upgraded.
Need to get 126 MB of archives.
After this operation, 568 MB of additional disk space will be used.
Get:1 http://security.debian.org stretch/updates/main ppc64el libexpat1 ppc64el 2.2.0-2+deb9u1 [76.7 kB]
Get:2 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libpng16-16 ppc64el 1.6.28-1 [274 kB]
Get:22 http://security.debian.org stretch/updates/main ppc64el openjdk-8-jre-headless ppc64el 8u141-b15-1deb9u1 [26.6 MB]
Get:3 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libfreetype6 ppc64el 2.6.3-3.2 [411 kB]
Get:4 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el ucf all 3.0036 [70.2 kB]
Get:5 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el fonts-dejavu-core all 2.37-1 [1068 kB]
Get:6 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el fontconfig-config all 2.11.0-6.7 [271 kB]
Get:7 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libfontconfig1 ppc64el 2.11.0-6.7+b1 [323 kB]
Get:8 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el fontconfig ppc64el 2.11.0-6.7+b1 [404 kB]
Get:9 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libogg0 ppc64el 1.3.2-1 [20.0 kB]
Get:10 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libxau6 ppc64el 1:1.0.8-1 [19.6 kB]
Get:11 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libssl1.1 ppc64el 1.1.0f-3 [1015 kB]
Get:12 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el openssl ppc64el 1.1.0f-3 [705 kB]
Get:13 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el ca-certificates all 20161130+nmu1 [196 kB]
Get:14 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el java-common all 0.58 [13.5 kB]
Get:15 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el default-jre-headless ppc64el 2:1.8-58 [10.0 kB]
Get:16 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libnspr4 ppc64el 2:4.12-6 [106 kB]
Get:17 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libsqlite3-0 ppc64el 3.16.2-5 [525 kB]
Get:18 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libnss3 ppc64el 2:3.26.2-1.1 [1029 kB]
Get:19 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el ca-certificates-java all 20170531+nmu1 [14.7 kB]
Get:20 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libavahi-common-data ppc64el 0.6.32-2 [118 kB]
Get:21 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libavahi-common3 ppc64el 0.6.32-2 [49.6 kB]
Get:23 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libdbus-1-3 ppc64el 1.10.18-1 [178 kB]
Get:24 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libavahi-client3 ppc64el 0.6.32-2 [52.3 kB]
Get:25 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libgmp10 ppc64el 2:6.1.2+dfsg-1 [238 kB]
Get:26 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libnettle6 ppc64el 3.3-1+b1 [206 kB]
Get:27 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libhogweed4 ppc64el 3.3-1+b1 [132 kB]
Get:28 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libidn11 ppc64el 1.33-1 [114 kB]
Get:29 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libffi6 ppc64el 3.2.1-6 [20.5 kB]
Get:30 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libp11-kit0 ppc64el 0.23.3-2 [96.0 kB]
Get:31 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libtasn1-6 ppc64el 4.10-1.1 [48.8 kB]
Get:32 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libgnutls30 ppc64el 3.5.8-5+deb9u2 [784 kB]
Get:33 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libkeyutils1 ppc64el 1.5.9-9 [12.4 kB]
Get:34 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libkrb5support0 ppc64el 1.15-1 [60.1 kB]
Get:35 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libk5crypto3 ppc64el 1.15-1 [121 kB]
Get:36 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libkrb5-3 ppc64el 1.15-1 [285 kB]
Get:37 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libgssapi-krb5-2 ppc64el 1.15-1 [141 kB]
Get:38 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libcups2 ppc64el 2.2.1-8 [286 kB]
Get:39 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el liblcms2-2 ppc64el 2.8-4 [132 kB]
Get:40 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libjpeg62-turbo ppc64el 1:1.5.1-2 [129 kB]
Get:41 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libpcsclite1 ppc64el 1.8.20-1 [55.8 kB]
Get:42 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libbsd0 ppc64el 0.8.3-1 [82.7 kB]
Get:43 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libxdmcp6 ppc64el 1:1.1.2-3 [26.2 kB]
Get:44 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libxcb1 ppc64el 1.12-1 [128 kB]
Get:45 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libx11-data all 2:1.6.4-3 [290 kB]
Get:46 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libx11-6 ppc64el 2:1.6.4-3 [709 kB]
Get:47 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libxext6 ppc64el 2:1.3.3-1+b2 [49.9 kB]
Get:48 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libxi6 ppc64el 2:1.7.9-1 [81.2 kB]
Get:49 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libxrender1 ppc64el 1:0.9.10-1 [31.6 kB]
Get:50 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el x11-common all 1:7.7+19 [251 kB]
Get:51 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libxtst6 ppc64el 2:1.2.3-1 [27.6 kB]
Get:52 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el sgml-base all 1.29 [14.8 kB]
Get:53 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libapparmor1 ppc64el 2.11.0-3 [76.9 kB]
Get:54 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el dbus ppc64el 1.10.18-1 [198 kB]
Get:55 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el krb5-locales all 1.15-1 [93.5 kB]
Get:56 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libcap2 ppc64el 1:2.25-1 [17.1 kB]
Get:57 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libncurses5 ppc64el 6.0+20161126-1 [85.3 kB]
Get:58 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libedit2 ppc64el 3.1-20160903-3 [76.4 kB]
Get:59 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libgpm2 ppc64el 1.20.4-6.2+b1 [33.9 kB]
Get:60 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libwrap0 ppc64el 7.6.q-26 [57.4 kB]
Get:61 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libicu57 ppc64el 57.1-6 [7668 kB]
Get:62 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libxml2 ppc64el 2.9.4+dfsg1-2.2 [830 kB]
Get:63 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el hicolor-icon-theme all 0.15-1 [9550 B]
Get:64 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libglib2.0-0 ppc64el 2.50.3-2 [2545 kB]
Get:65 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libjbig0 ppc64el 2.1-3.1+b2 [30.4 kB]
Get:66 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libtiff5 ppc64el 4.0.8-2+deb9u1 [224 kB]
Get:67 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el shared-mime-info ppc64el 1.8-1 [729 kB]
Get:68 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libgdk-pixbuf2.0-common all 2.36.5-2 [310 kB]
Get:69 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libgdk-pixbuf2.0-0 ppc64el 2.36.5-2 [158 kB]
Get:70 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el gtk-update-icon-cache ppc64el 3.22.11-1 [76.1 kB]
Get:71 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libpixman-1-0 ppc64el 0.34.0-1 [453 kB]
Get:72 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libxcb-render0 ppc64el 1.12-1 [104 kB]
Get:73 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libxcb-shm0 ppc64el 1.12-1 [95.9 kB]
Get:74 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libcairo2 ppc64el 1.14.8-1 [722 kB]
Get:75 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libcroco3 ppc64el 0.6.11-3 [133 kB]
Get:76 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libthai-data all 0.1.26-1 [166 kB]
Get:77 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libdatrie1 ppc64el 0.2.10-4+b1 [35.5 kB]
Get:78 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libthai0 ppc64el 0.1.26-1 [51.3 kB]
Get:79 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libpango-1.0-0 ppc64el 1.40.5-1 [313 kB]
Get:80 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libgraphite2-3 ppc64el 1.3.10-1 [77.7 kB]
Get:81 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libharfbuzz0b ppc64el 1.4.2-1 [657 kB]
Get:82 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libpangoft2-1.0-0 ppc64el 1.40.5-1 [204 kB]
Get:83 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libpangocairo-1.0-0 ppc64el 1.40.5-1 [192 kB]
Get:84 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el librsvg2-2 ppc64el 2.40.16-1+b1 [274 kB]
Get:85 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el librsvg2-common ppc64el 2.40.16-1+b1 [194 kB]
Get:86 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el adwaita-icon-theme all 3.22.0-1+deb9u1 [11.5 MB]
Get:200 http://security.debian.org stretch/updates/main ppc64el openjdk-8-jre ppc64el 8u141-b15-1
deb9u1 [63.8 kB]
Get:201 http://security.debian.org stretch/updates/main ppc64el openjdk-8-jdk-headless ppc64el 8u141-b15-1deb9u1 [6209 kB]
Get:87 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libatspi2.0-0 ppc64el 2.22.0-6 [54.9 kB]
Get:88 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el at-spi2-core ppc64el 2.22.0-6 [65.4 kB]
Get:89 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libdconf1 ppc64el 0.26.0-2+b1 [35.3 kB]
Get:90 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el dconf-service ppc64el 0.26.0-2+b1 [33.1 kB]
Get:91 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el dconf-gsettings-backend ppc64el 0.26.0-2+b1 [24.6 kB]
Get:92 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libgtk2.0-common all 2.24.31-2 [2693 kB]
Get:202 http://security.debian.org stretch/updates/main ppc64el openjdk-8-jdk ppc64el 8u141-b15-1
deb9u1 [471 kB]
Get:93 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libatk1.0-data all 2.22.0-1 [172 kB]
Get:94 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libatk1.0-0 ppc64el 2.22.0-1 [73.9 kB]
Get:95 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libxcomposite1 ppc64el 1:0.4.4-2 [16.4 kB]
Get:96 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libxfixes3 ppc64el 1:5.0.3-1 [21.4 kB]
Get:97 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libxcursor1 ppc64el 1:1.1.14-1+b4 [34.0 kB]
Get:98 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libxdamage1 ppc64el 1:1.1.4-2+b3 [14.5 kB]
Get:99 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libxinerama1 ppc64el 2:1.1.3-1+b3 [16.6 kB]
Get:100 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libxrandr2 ppc64el 2:1.5.1-1 [36.3 kB]
Get:101 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el gnome-icon-theme all 3.12.0-2 [9890 kB]
Get:102 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libgtk2.0-0 ppc64el 2.24.31-2 [1568 kB]
Get:103 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libdrm2 ppc64el 2.4.74-1 [34.8 kB]
Get:104 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libglapi-mesa ppc64el 13.0.6-1+b2 [64.7 kB]
Get:105 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libx11-xcb1 ppc64el 2:1.6.4-3 [183 kB]
Get:106 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libxcb-dri2-0 ppc64el 1.12-1 [97.0 kB]
Get:107 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libxcb-dri3-0 ppc64el 1.12-1 [95.6 kB]
Get:108 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libxcb-glx0 ppc64el 1.12-1 [110 kB]
Get:109 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libxcb-present0 ppc64el 1.12-1 [95.8 kB]
Get:110 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libxcb-sync1 ppc64el 1.12-1 [98.7 kB]
Get:111 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libxshmfence1 ppc64el 1.2-1+b2 [8086 B]
Get:112 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libxxf86vm1 ppc64el 1:1.1.4-1+b2 [20.6 kB]
Get:113 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libgl1-mesa-glx ppc64el 13.0.6-1+b2 [154 kB]
Get:114 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libatk-bridge2.0-0 ppc64el 2.22.0-2 [49.9 kB]
Get:115 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libcairo-gobject2 ppc64el 1.14.8-1 [336 kB]
Get:116 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libgtk-3-common all 3.22.11-1 [3416 kB]
Get:117 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libcolord2 ppc64el 1.3.3-2 [242 kB]
Get:118 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libepoxy0 ppc64el 1.3.1-2 [153 kB]
Get:119 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libjson-glib-1.0-common all 1.2.6-1 [166 kB]
Get:120 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libjson-glib-1.0-0 ppc64el 1.2.6-1 [170 kB]
Get:121 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libproxy1v5 ppc64el 0.4.14-2 [56.4 kB]
Get:122 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el glib-networking-common all 2.50.0-1 [49.1 kB]
Get:123 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el glib-networking-services ppc64el 2.50.0-1+b1 [12.2 kB]
Get:124 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el gsettings-desktop-schemas all 3.22.0-1 [473 kB]
Get:125 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el glib-networking ppc64el 2.50.0-1+b1 [51.8 kB]
Get:126 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libsoup2.4-1 ppc64el 2.56.0-2 [267 kB]
Get:127 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libsoup-gnome2.4-1 ppc64el 2.56.0-2 [16.3 kB]
Get:128 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el librest-0.7-0 ppc64el 0.8.0-2 [29.6 kB]
Get:129 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libwayland-client0 ppc64el 1.12.0-1 [22.9 kB]
Get:130 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libwayland-cursor0 ppc64el 1.12.0-1 [13.2 kB]
Get:131 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libwayland-server0 ppc64el 1.12.0-1 [27.8 kB]
Get:132 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libgbm1 ppc64el 13.0.6-1+b2 [58.2 kB]
Get:133 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libxcb-xfixes0 ppc64el 1.12-1 [99.0 kB]
Get:134 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libegl1-mesa ppc64el 13.0.6-1+b2 [104 kB]
Get:135 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libwayland-egl1-mesa ppc64el 13.0.6-1+b2 [43.2 kB]
Get:136 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el xkb-data all 2.19-1 [648 kB]
Get:137 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libxkbcommon0 ppc64el 0.7.1-1 [116 kB]
Get:138 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libgtk-3-0 ppc64el 3.22.11-1 [2177 kB]
Get:139 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libfontenc1 ppc64el 1:1.1.3-1+b2 [23.8 kB]
Get:140 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libice6 ppc64el 2:1.0.9-2 [54.6 kB]
Get:141 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libsm6 ppc64el 2:1.2.2-1+b3 [32.2 kB]
Get:142 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libxt6 ppc64el 1:1.1.5-1 [167 kB]
Get:143 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libxmu6 ppc64el 2:1.1.2-2 [56.2 kB]
Get:144 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libxpm4 ppc64el 1:3.5.12-1 [46.9 kB]
Get:145 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libxaw7 ppc64el 2:1.0.13-1+b2 [180 kB]
Get:146 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libxcb-shape0 ppc64el 1.12-1 [96.1 kB]
Get:147 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libxft2 ppc64el 2.3.2-1+b2 [53.8 kB]
Get:148 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libxmuu1 ppc64el 2:1.1.2-2 [23.4 kB]
Get:149 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libxv1 ppc64el 2:1.0.11-1 [24.1 kB]
Get:150 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libxxf86dga1 ppc64el 2:1.1.4-1+b3 [21.5 kB]
Get:151 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el x11-utils ppc64el 7.7+3+b1 [190 kB]
Get:152 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libatk-wrapper-java all 0.33.3-13 [44.0 kB]
Get:153 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libatk-wrapper-java-jni ppc64el 0.33.3-13 [34.1 kB]
Get:154 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libasound2-data all 1.1.3-5 [173 kB]
Get:155 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libasound2 ppc64el 1.1.3-5 [452 kB]
Get:156 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libgif7 ppc64el 5.1.4-0.4 [42.8 kB]
Get:157 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libasyncns0 ppc64el 0.8-6 [12.2 kB]
Get:158 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libflac8 ppc64el 1.3.2-1 [197 kB]
Get:159 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libvorbis0a ppc64el 1.3.5-4 [90.0 kB]
Get:160 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libvorbisenc2 ppc64el 1.3.5-4 [79.2 kB]
Get:161 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libsndfile1 ppc64el 1.0.27-3 [239 kB]
Get:162 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libpulse0 ppc64el 10.0-1+deb9u1 [237 kB]
Get:163 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el default-jre ppc64el 2:1.8-58 [934 B]
Get:164 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el icedtea-netx-common all 1.6.2-3.1 [1381 kB]
Get:165 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el icedtea-netx ppc64el 1.6.2-3.1 [34.8 kB]
Get:166 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el icedtea-8-plugin ppc64el 1.6.2-3.1 [147 kB]
Get:167 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el default-java-plugin ppc64el 2:1.8-58 [974 B]
Get:168 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el default-jdk-headless ppc64el 2:1.8-58 [992 B]
Get:169 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el default-jdk ppc64el 2:1.8-58 [932 B]
Get:170 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el fonts-dejavu-extra all 2.37-1 [1982 kB]
Get:171 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libdrm-amdgpu1 ppc64el 2.4.74-1 [25.5 kB]
Get:172 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libdrm-nouveau2 ppc64el 2.4.74-1 [24.5 kB]
Get:173 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libdrm-radeon1 ppc64el 2.4.74-1 [29.4 kB]
Get:174 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libgail18 ppc64el 2.24.31-2 [53.4 kB]
Get:175 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libgail-common ppc64el 2.24.31-2 [138 kB]
Get:176 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libllvm3.9 ppc64el 1:3.9.1-9 [10.2 MB]
Get:177 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libsensors4 ppc64el 1:3.4.0-4 [51.4 kB]
Get:178 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libgl1-mesa-dri ppc64el 13.0.6-1+b2 [3940 kB]
Get:179 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libglib2.0-data all 2.50.3-2 [2517 kB]
Get:180 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libgtk-3-bin ppc64el 3.22.11-1 [108 kB]
Get:181 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libgtk2.0-bin ppc64el 2.24.31-2 [47.1 kB]
Get:182 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el xorg-sgml-doctools all 1:1.11-1 [21.9 kB]
Get:183 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el x11proto-core-dev all 7.0.31-1 [728 kB]
Get:184 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libice-dev ppc64el 2:1.0.9-2 [64.2 kB]
Get:185 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libpthread-stubs0-dev ppc64el 0.3-4 [3914 B]
Get:186 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libsm-dev ppc64el 2:1.2.2-1+b3 [35.6 kB]
Get:187 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libxau-dev ppc64el 1:1.0.8-1 [22.9 kB]
Get:188 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libxdmcp-dev ppc64el 1:1.1.2-3 [42.1 kB]
Get:189 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el x11proto-input-dev all 2.3.2-1 [158 kB]
Get:190 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el x11proto-kb-dev all 1.0.7-1 [233 kB]
Get:191 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el xtrans-dev all 1.3.5-1 [100 kB]
Get:192 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libxcb1-dev ppc64el 1.12-1 [167 kB]
Get:193 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libx11-dev ppc64el 2:1.6.4-3 [787 kB]
Get:194 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libx11-doc all 2:1.6.4-3 [2201 kB]
Get:195 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libxt-dev ppc64el 1:1.1.5-1 [415 kB]
Get:196 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el tcpd ppc64el 7.6.q-26 [22.9 kB]
Get:197 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el xdg-user-dirs ppc64el 0.15-2+b1 [51.8 kB]
Get:198 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el xml-core all 0.17 [23.2 kB]
Get:199 http://cdn-fastly.deb.debian.org/debian stretch/main ppc64el libtxc-dxtn-s2tc ppc64el 1.0+git20151227-2 [53.9 kB]
Fetched 126 MB in 1min 23s (1516 kB/s)
debconf: delaying package configuration, since apt-utils is not installed
Selecting previously unselected package libexpat1:ppc64el.
(Reading database ... 6491 files and directories currently installed.)
Preparing to unpack .../000-libexpat1_2.2.0-2+deb9u1_ppc64el.deb ...
Unpacking libexpat1:ppc64el (2.2.0-2+deb9u1) ...
Selecting previously unselected package libpng16-16:ppc64el.
Preparing to unpack .../001-libpng16-16_1.6.28-1_ppc64el.deb ...
Unpacking libpng16-16:ppc64el (1.6.28-1) ...
Selecting previously unselected package libfreetype6:ppc64el.
Preparing to unpack .../002-libfreetype6_2.6.3-3.2_ppc64el.deb ...
Unpacking libfreetype6:ppc64el (2.6.3-3.2) ...
Selecting previously unselected package ucf.
Preparing to unpack .../003-ucf_3.0036_all.deb ...
Moving old data out of the way
Unpacking ucf (3.0036) ...
Selecting previously unselected package fonts-dejavu-core.
Preparing to unpack .../004-fonts-dejavu-core_2.37-1_all.deb ...
Unpacking fonts-dejavu-core (2.37-1) ...
Selecting previously unselected package fontconfig-config.
Preparing to unpack .../005-fontconfig-config_2.11.0-6.7_all.deb ...
Unpacking fontconfig-config (2.11.0-6.7) ...
Selecting previously unselected package libfontconfig1:ppc64el.
Preparing to unpack .../006-libfontconfig1_2.11.0-6.7+b1_ppc64el.deb ...
Unpacking libfontconfig1:ppc64el (2.11.0-6.7+b1) ...
Selecting previously unselected package fontconfig.
Preparing to unpack .../007-fontconfig_2.11.0-6.7+b1_ppc64el.deb ...
Unpacking fontconfig (2.11.0-6.7+b1) ...
Selecting previously unselected package libogg0:ppc64el.
Preparing to unpack .../008-libogg0_1.3.2-1_ppc64el.deb ...
Unpacking libogg0:ppc64el (1.3.2-1) ...
Selecting previously unselected package libxau6:ppc64el.
Preparing to unpack .../009-libxau6_1%3a1.0.8-1_ppc64el.deb ...
Unpacking libxau6:ppc64el (1:1.0.8-1) ...
Selecting previously unselected package libssl1.1:ppc64el.
Preparing to unpack .../010-libssl1.1_1.1.0f-3_ppc64el.deb ...
Unpacking libssl1.1:ppc64el (1.1.0f-3) ...
Selecting previously unselected package openssl.
Preparing to unpack .../011-openssl_1.1.0f-3_ppc64el.deb ...
Unpacking openssl (1.1.0f-3) ...
Selecting previously unselected package ca-certificates.
Preparing to unpack .../012-ca-certificates_20161130+nmu1_all.deb ...
Unpacking ca-certificates (20161130+nmu1) ...
Selecting previously unselected package java-common.
Preparing to unpack .../013-java-common_0.58_all.deb ...
Unpacking java-common (0.58) ...
Selecting previously unselected package default-jre-headless.
Preparing to unpack .../014-default-jre-headless_2%3a1.8-58_ppc64el.deb ...
Unpacking default-jre-headless (2:1.8-58) ...
Selecting previously unselected package libnspr4:ppc64el.
Preparing to unpack .../015-libnspr4_2%3a4.12-6_ppc64el.deb ...
Unpacking libnspr4:ppc64el (2:4.12-6) ...
Selecting previously unselected package libsqlite3-0:ppc64el.
Preparing to unpack .../016-libsqlite3-0_3.16.2-5_ppc64el.deb ...
Unpacking libsqlite3-0:ppc64el (3.16.2-5) ...
Selecting previously unselected package libnss3:ppc64el.
Preparing to unpack .../017-libnss3_2%3a3.26.2-1.1_ppc64el.deb ...
Unpacking libnss3:ppc64el (2:3.26.2-1.1) ...
Selecting previously unselected package ca-certificates-java.
Preparing to unpack .../018-ca-certificates-java_20170531+nmu1_all.deb ...
Unpacking ca-certificates-java (20170531+nmu1) ...
Selecting previously unselected package libavahi-common-data:ppc64el.
Preparing to unpack .../019-libavahi-common-data_0.6.32-2_ppc64el.deb ...
Unpacking libavahi-common-data:ppc64el (0.6.32-2) ...
Selecting previously unselected package libavahi-common3:ppc64el.
Preparing to unpack .../020-libavahi-common3_0.6.32-2_ppc64el.deb ...
Unpacking libavahi-common3:ppc64el (0.6.32-2) ...
Selecting previously unselected package libdbus-1-3:ppc64el.
Preparing to unpack .../021-libdbus-1-3_1.10.18-1_ppc64el.deb ...
Unpacking libdbus-1-3:ppc64el (1.10.18-1) ...
Selecting previously unselected package libavahi-client3:ppc64el.
Preparing to unpack .../022-libavahi-client3_0.6.32-2_ppc64el.deb ...
Unpacking libavahi-client3:ppc64el (0.6.32-2) ...
Selecting previously unselected package libgmp10:ppc64el.
Preparing to unpack .../023-libgmp10_2%3a6.1.2+dfsg-1_ppc64el.deb ...
Unpacking libgmp10:ppc64el (2:6.1.2+dfsg-1) ...
Selecting previously unselected package libnettle6:ppc64el.
Preparing to unpack .../024-libnettle6_3.3-1+b1_ppc64el.deb ...
Unpacking libnettle6:ppc64el (3.3-1+b1) ...
Selecting previously unselected package libhogweed4:ppc64el.
Preparing to unpack .../025-libhogweed4_3.3-1+b1_ppc64el.deb ...
Unpacking libhogweed4:ppc64el (3.3-1+b1) ...
Selecting previously unselected package libidn11:ppc64el.
Preparing to unpack .../026-libidn11_1.33-1_ppc64el.deb ...
Unpacking libidn11:ppc64el (1.33-1) ...
Selecting previously unselected package libffi6:ppc64el.
Preparing to unpack .../027-libffi6_3.2.1-6_ppc64el.deb ...
Unpacking libffi6:ppc64el (3.2.1-6) ...
Selecting previously unselected package libp11-kit0:ppc64el.
Preparing to unpack .../028-libp11-kit0_0.23.3-2_ppc64el.deb ...
Unpacking libp11-kit0:ppc64el (0.23.3-2) ...
Selecting previously unselected package libtasn1-6:ppc64el.
Preparing to unpack .../029-libtasn1-6_4.10-1.1_ppc64el.deb ...
Unpacking libtasn1-6:ppc64el (4.10-1.1) ...
Selecting previously unselected package libgnutls30:ppc64el.
Preparing to unpack .../030-libgnutls30_3.5.8-5+deb9u2_ppc64el.deb ...
Unpacking libgnutls30:ppc64el (3.5.8-5+deb9u2) ...
Selecting previously unselected package libkeyutils1:ppc64el.
Preparing to unpack .../031-libkeyutils1_1.5.9-9_ppc64el.deb ...
Unpacking libkeyutils1:ppc64el (1.5.9-9) ...
Selecting previously unselected package libkrb5support0:ppc64el.
Preparing to unpack .../032-libkrb5support0_1.15-1_ppc64el.deb ...
Unpacking libkrb5support0:ppc64el (1.15-1) ...
Selecting previously unselected package libk5crypto3:ppc64el.
Preparing to unpack .../033-libk5crypto3_1.15-1_ppc64el.deb ...
Unpacking libk5crypto3:ppc64el (1.15-1) ...
Selecting previously unselected package libkrb5-3:ppc64el.
Preparing to unpack .../034-libkrb5-3_1.15-1_ppc64el.deb ...
Unpacking libkrb5-3:ppc64el (1.15-1) ...
Selecting previously unselected package libgssapi-krb5-2:ppc64el.
Preparing to unpack .../035-libgssapi-krb5-2_1.15-1_ppc64el.deb ...
Unpacking libgssapi-krb5-2:ppc64el (1.15-1) ...
Selecting previously unselected package libcups2:ppc64el.
Preparing to unpack .../036-libcups2_2.2.1-8_ppc64el.deb ...
Unpacking libcups2:ppc64el (2.2.1-8) ...
Selecting previously unselected package liblcms2-2:ppc64el.
Preparing to unpack .../037-liblcms2-2_2.8-4_ppc64el.deb ...
Unpacking liblcms2-2:ppc64el (2.8-4) ...
Selecting previously unselected package libjpeg62-turbo:ppc64el.
Preparing to unpack .../038-libjpeg62-turbo_1%3a1.5.1-2_ppc64el.deb ...
Unpacking libjpeg62-turbo:ppc64el (1:1.5.1-2) ...
Selecting previously unselected package libpcsclite1:ppc64el.
Preparing to unpack .../039-libpcsclite1_1.8.20-1_ppc64el.deb ...
Unpacking libpcsclite1:ppc64el (1.8.20-1) ...
Selecting previously unselected package libbsd0:ppc64el.
Preparing to unpack .../040-libbsd0_0.8.3-1_ppc64el.deb ...
Unpacking libbsd0:ppc64el (0.8.3-1) ...
Selecting previously unselected package libxdmcp6:ppc64el.
Preparing to unpack .../041-libxdmcp6_1%3a1.1.2-3_ppc64el.deb ...
Unpacking libxdmcp6:ppc64el (1:1.1.2-3) ...
Selecting previously unselected package libxcb1:ppc64el.
Preparing to unpack .../042-libxcb1_1.12-1_ppc64el.deb ...
Unpacking libxcb1:ppc64el (1.12-1) ...
Selecting previously unselected package libx11-data.
Preparing to unpack .../043-libx11-data_2%3a1.6.4-3_all.deb ...
Unpacking libx11-data (2:1.6.4-3) ...
Selecting previously unselected package libx11-6:ppc64el.
Preparing to unpack .../044-libx11-6_2%3a1.6.4-3_ppc64el.deb ...
Unpacking libx11-6:ppc64el (2:1.6.4-3) ...
Selecting previously unselected package libxext6:ppc64el.
Preparing to unpack .../045-libxext6_2%3a1.3.3-1+b2_ppc64el.deb ...
Unpacking libxext6:ppc64el (2:1.3.3-1+b2) ...
Selecting previously unselected package libxi6:ppc64el.
Preparing to unpack .../046-libxi6_2%3a1.7.9-1_ppc64el.deb ...
Unpacking libxi6:ppc64el (2:1.7.9-1) ...
Selecting previously unselected package libxrender1:ppc64el.
Preparing to unpack .../047-libxrender1_1%3a0.9.10-1_ppc64el.deb ...
Unpacking libxrender1:ppc64el (1:0.9.10-1) ...
Selecting previously unselected package x11-common.
Preparing to unpack .../048-x11-common_1%3a7.7+19_all.deb ...
Unpacking x11-common (1:7.7+19) ...
Selecting previously unselected package libxtst6:ppc64el.
Preparing to unpack .../049-libxtst6_2%3a1.2.3-1_ppc64el.deb ...
Unpacking libxtst6:ppc64el (2:1.2.3-1) ...
Selecting previously unselected package openjdk-8-jre-headless:ppc64el.
Preparing to unpack .../050-openjdk-8-jre-headless_8u141-b15-1deb9u1_ppc64el.deb ...
Unpacking openjdk-8-jre-headless:ppc64el (8u141-b15-1
deb9u1) ...
Selecting previously unselected package sgml-base.
Preparing to unpack .../051-sgml-base_1.29_all.deb ...
Unpacking sgml-base (1.29) ...
Selecting previously unselected package libapparmor1:ppc64el.
Preparing to unpack .../052-libapparmor1_2.11.0-3_ppc64el.deb ...
Unpacking libapparmor1:ppc64el (2.11.0-3) ...
Selecting previously unselected package dbus.
Preparing to unpack .../053-dbus_1.10.18-1_ppc64el.deb ...
Unpacking dbus (1.10.18-1) ...
Selecting previously unselected package krb5-locales.
Preparing to unpack .../054-krb5-locales_1.15-1_all.deb ...
Unpacking krb5-locales (1.15-1) ...
Selecting previously unselected package libcap2:ppc64el.
Preparing to unpack .../055-libcap2_1%3a2.25-1_ppc64el.deb ...
Unpacking libcap2:ppc64el (1:2.25-1) ...
Selecting previously unselected package libncurses5:ppc64el.
Preparing to unpack .../056-libncurses5_6.0+20161126-1_ppc64el.deb ...
Unpacking libncurses5:ppc64el (6.0+20161126-1) ...
Selecting previously unselected package libedit2:ppc64el.
Preparing to unpack .../057-libedit2_3.1-20160903-3_ppc64el.deb ...
Unpacking libedit2:ppc64el (3.1-20160903-3) ...
Selecting previously unselected package libgpm2:ppc64el.
Preparing to unpack .../058-libgpm2_1.20.4-6.2+b1_ppc64el.deb ...
Unpacking libgpm2:ppc64el (1.20.4-6.2+b1) ...
Selecting previously unselected package libwrap0:ppc64el.
Preparing to unpack .../059-libwrap0_7.6.q-26_ppc64el.deb ...
Unpacking libwrap0:ppc64el (7.6.q-26) ...
Selecting previously unselected package libicu57:ppc64el.
Preparing to unpack .../060-libicu57_57.1-6_ppc64el.deb ...
Unpacking libicu57:ppc64el (57.1-6) ...
Selecting previously unselected package libxml2:ppc64el.
Preparing to unpack .../061-libxml2_2.9.4+dfsg1-2.2_ppc64el.deb ...
Unpacking libxml2:ppc64el (2.9.4+dfsg1-2.2) ...
Selecting previously unselected package hicolor-icon-theme.
Preparing to unpack .../062-hicolor-icon-theme_0.15-1_all.deb ...
Unpacking hicolor-icon-theme (0.15-1) ...
Selecting previously unselected package libglib2.0-0:ppc64el.
Preparing to unpack .../063-libglib2.0-0_2.50.3-2_ppc64el.deb ...
Unpacking libglib2.0-0:ppc64el (2.50.3-2) ...
Selecting previously unselected package libjbig0:ppc64el.
Preparing to unpack .../064-libjbig0_2.1-3.1+b2_ppc64el.deb ...
Unpacking libjbig0:ppc64el (2.1-3.1+b2) ...
Selecting previously unselected package libtiff5:ppc64el.
Preparing to unpack .../065-libtiff5_4.0.8-2+deb9u1_ppc64el.deb ...
Unpacking libtiff5:ppc64el (4.0.8-2+deb9u1) ...
Selecting previously unselected package shared-mime-info.
Preparing to unpack .../066-shared-mime-info_1.8-1_ppc64el.deb ...
Unpacking shared-mime-info (1.8-1) ...
Selecting previously unselected package libgdk-pixbuf2.0-common.
Preparing to unpack .../067-libgdk-pixbuf2.0-common_2.36.5-2_all.deb ...
Unpacking libgdk-pixbuf2.0-common (2.36.5-2) ...
Selecting previously unselected package libgdk-pixbuf2.0-0:ppc64el.
Preparing to unpack .../068-libgdk-pixbuf2.0-0_2.36.5-2_ppc64el.deb ...
Unpacking libgdk-pixbuf2.0-0:ppc64el (2.36.5-2) ...
Selecting previously unselected package gtk-update-icon-cache.
Preparing to unpack .../069-gtk-update-icon-cache_3.22.11-1_ppc64el.deb ...
No diversion 'diversion of /usr/sbin/update-icon-caches to /usr/sbin/update-icon-caches.gtk2 by libgtk-3-bin', none removed.
No diversion 'diversion of /usr/share/man/man8/update-icon-caches.8.gz to /usr/share/man/man8/update-icon-caches.gtk2.8.gz by libgtk-3-bin', none removed.
Unpacking gtk-update-icon-cache (3.22.11-1) ...
Selecting previously unselected package libpixman-1-0:ppc64el.
Preparing to unpack .../070-libpixman-1-0_0.34.0-1_ppc64el.deb ...
Unpacking libpixman-1-0:ppc64el (0.34.0-1) ...
Selecting previously unselected package libxcb-render0:ppc64el.
Preparing to unpack .../071-libxcb-render0_1.12-1_ppc64el.deb ...
Unpacking libxcb-render0:ppc64el (1.12-1) ...
Selecting previously unselected package libxcb-shm0:ppc64el.
Preparing to unpack .../072-libxcb-shm0_1.12-1_ppc64el.deb ...
Unpacking libxcb-shm0:ppc64el (1.12-1) ...
Selecting previously unselected package libcairo2:ppc64el.
Preparing to unpack .../073-libcairo2_1.14.8-1_ppc64el.deb ...
Unpacking libcairo2:ppc64el (1.14.8-1) ...
Selecting previously unselected package libcroco3:ppc64el.
Preparing to unpack .../074-libcroco3_0.6.11-3_ppc64el.deb ...
Unpacking libcroco3:ppc64el (0.6.11-3) ...
Selecting previously unselected package libthai-data.
Preparing to unpack .../075-libthai-data_0.1.26-1_all.deb ...
Unpacking libthai-data (0.1.26-1) ...
Selecting previously unselected package libdatrie1:ppc64el.
Preparing to unpack .../076-libdatrie1_0.2.10-4+b1_ppc64el.deb ...
Unpacking libdatrie1:ppc64el (0.2.10-4+b1) ...
Selecting previously unselected package libthai0:ppc64el.
Preparing to unpack .../077-libthai0_0.1.26-1_ppc64el.deb ...
Unpacking libthai0:ppc64el (0.1.26-1) ...
Selecting previously unselected package libpango-1.0-0:ppc64el.
Preparing to unpack .../078-libpango-1.0-0_1.40.5-1_ppc64el.deb ...
Unpacking libpango-1.0-0:ppc64el (1.40.5-1) ...
Selecting previously unselected package libgraphite2-3:ppc64el.
Preparing to unpack .../079-libgraphite2-3_1.3.10-1_ppc64el.deb ...
Unpacking libgraphite2-3:ppc64el (1.3.10-1) ...
Selecting previously unselected package libharfbuzz0b:ppc64el.
Preparing to unpack .../080-libharfbuzz0b_1.4.2-1_ppc64el.deb ...
Unpacking libharfbuzz0b:ppc64el (1.4.2-1) ...
Selecting previously unselected package libpangoft2-1.0-0:ppc64el.
Preparing to unpack .../081-libpangoft2-1.0-0_1.40.5-1_ppc64el.deb ...
Unpacking libpangoft2-1.0-0:ppc64el (1.40.5-1) ...
Selecting previously unselected package libpangocairo-1.0-0:ppc64el.
Preparing to unpack .../082-libpangocairo-1.0-0_1.40.5-1_ppc64el.deb ...
Unpacking libpangocairo-1.0-0:ppc64el (1.40.5-1) ...
Selecting previously unselected package librsvg2-2:ppc64el.
Preparing to unpack .../083-librsvg2-2_2.40.16-1+b1_ppc64el.deb ...
Unpacking librsvg2-2:ppc64el (2.40.16-1+b1) ...
Selecting previously unselected package librsvg2-common:ppc64el.
Preparing to unpack .../084-librsvg2-common_2.40.16-1+b1_ppc64el.deb ...
Unpacking librsvg2-common:ppc64el (2.40.16-1+b1) ...
Selecting previously unselected package adwaita-icon-theme.
Preparing to unpack .../085-adwaita-icon-theme_3.22.0-1+deb9u1_all.deb ...
Unpacking adwaita-icon-theme (3.22.0-1+deb9u1) ...
Selecting previously unselected package libatspi2.0-0:ppc64el.
Preparing to unpack .../086-libatspi2.0-0_2.22.0-6_ppc64el.deb ...
Unpacking libatspi2.0-0:ppc64el (2.22.0-6) ...
Selecting previously unselected package at-spi2-core.
Preparing to unpack .../087-at-spi2-core_2.22.0-6_ppc64el.deb ...
Unpacking at-spi2-core (2.22.0-6) ...
Selecting previously unselected package libdconf1:ppc64el.
Preparing to unpack .../088-libdconf1_0.26.0-2+b1_ppc64el.deb ...
Unpacking libdconf1:ppc64el (0.26.0-2+b1) ...
Selecting previously unselected package dconf-service.
Preparing to unpack .../089-dconf-service_0.26.0-2+b1_ppc64el.deb ...
Unpacking dconf-service (0.26.0-2+b1) ...
Selecting previously unselected package dconf-gsettings-backend:ppc64el.
Preparing to unpack .../090-dconf-gsettings-backend_0.26.0-2+b1_ppc64el.deb ...
Unpacking dconf-gsettings-backend:ppc64el (0.26.0-2+b1) ...
Selecting previously unselected package libgtk2.0-common.
Preparing to unpack .../091-libgtk2.0-common_2.24.31-2_all.deb ...
Unpacking libgtk2.0-common (2.24.31-2) ...
Selecting previously unselected package libatk1.0-data.
Preparing to unpack .../092-libatk1.0-data_2.22.0-1_all.deb ...
Unpacking libatk1.0-data (2.22.0-1) ...
Selecting previously unselected package libatk1.0-0:ppc64el.
Preparing to unpack .../093-libatk1.0-0_2.22.0-1_ppc64el.deb ...
Unpacking libatk1.0-0:ppc64el (2.22.0-1) ...
Selecting previously unselected package libxcomposite1:ppc64el.
Preparing to unpack .../094-libxcomposite1_1%3a0.4.4-2_ppc64el.deb ...
Unpacking libxcomposite1:ppc64el (1:0.4.4-2) ...
Selecting previously unselected package libxfixes3:ppc64el.
Preparing to unpack .../095-libxfixes3_1%3a5.0.3-1_ppc64el.deb ...
Unpacking libxfixes3:ppc64el (1:5.0.3-1) ...
Selecting previously unselected package libxcursor1:ppc64el.
Preparing to unpack .../096-libxcursor1_1%3a1.1.14-1+b4_ppc64el.deb ...
Unpacking libxcursor1:ppc64el (1:1.1.14-1+b4) ...
Selecting previously unselected package libxdamage1:ppc64el.
Preparing to unpack .../097-libxdamage1_1%3a1.1.4-2+b3_ppc64el.deb ...
Unpacking libxdamage1:ppc64el (1:1.1.4-2+b3) ...
Selecting previously unselected package libxinerama1:ppc64el.
Preparing to unpack .../098-libxinerama1_2%3a1.1.3-1+b3_ppc64el.deb ...
Unpacking libxinerama1:ppc64el (2:1.1.3-1+b3) ...
Selecting previously unselected package libxrandr2:ppc64el.
Preparing to unpack .../099-libxrandr2_2%3a1.5.1-1_ppc64el.deb ...
Unpacking libxrandr2:ppc64el (2:1.5.1-1) ...
Selecting previously unselected package gnome-icon-theme.
Preparing to unpack .../100-gnome-icon-theme_3.12.0-2_all.deb ...
Unpacking gnome-icon-theme (3.12.0-2) ...
Selecting previously unselected package libgtk2.0-0:ppc64el.
Preparing to unpack .../101-libgtk2.0-0_2.24.31-2_ppc64el.deb ...
Unpacking libgtk2.0-0:ppc64el (2.24.31-2) ...
Selecting previously unselected package libdrm2:ppc64el.
Preparing to unpack .../102-libdrm2_2.4.74-1_ppc64el.deb ...
Unpacking libdrm2:ppc64el (2.4.74-1) ...
Selecting previously unselected package libglapi-mesa:ppc64el.
Preparing to unpack .../103-libglapi-mesa_13.0.6-1+b2_ppc64el.deb ...
Unpacking libglapi-mesa:ppc64el (13.0.6-1+b2) ...
Selecting previously unselected package libx11-xcb1:ppc64el.
Preparing to unpack .../104-libx11-xcb1_2%3a1.6.4-3_ppc64el.deb ...
Unpacking libx11-xcb1:ppc64el (2:1.6.4-3) ...
Selecting previously unselected package libxcb-dri2-0:ppc64el.
Preparing to unpack .../105-libxcb-dri2-0_1.12-1_ppc64el.deb ...
Unpacking libxcb-dri2-0:ppc64el (1.12-1) ...
Selecting previously unselected package libxcb-dri3-0:ppc64el.
Preparing to unpack .../106-libxcb-dri3-0_1.12-1_ppc64el.deb ...
Unpacking libxcb-dri3-0:ppc64el (1.12-1) ...
Selecting previously unselected package libxcb-glx0:ppc64el.
Preparing to unpack .../107-libxcb-glx0_1.12-1_ppc64el.deb ...
Unpacking libxcb-glx0:ppc64el (1.12-1) ...
Selecting previously unselected package libxcb-present0:ppc64el.
Preparing to unpack .../108-libxcb-present0_1.12-1_ppc64el.deb ...
Unpacking libxcb-present0:ppc64el (1.12-1) ...
Selecting previously unselected package libxcb-sync1:ppc64el.
Preparing to unpack .../109-libxcb-sync1_1.12-1_ppc64el.deb ...
Unpacking libxcb-sync1:ppc64el (1.12-1) ...
Selecting previously unselected package libxshmfence1:ppc64el.
Preparing to unpack .../110-libxshmfence1_1.2-1+b2_ppc64el.deb ...
Unpacking libxshmfence1:ppc64el (1.2-1+b2) ...
Selecting previously unselected package libxxf86vm1:ppc64el.
Preparing to unpack .../111-libxxf86vm1_1%3a1.1.4-1+b2_ppc64el.deb ...
Unpacking libxxf86vm1:ppc64el (1:1.1.4-1+b2) ...
Selecting previously unselected package libgl1-mesa-glx:ppc64el.
Preparing to unpack .../112-libgl1-mesa-glx_13.0.6-1+b2_ppc64el.deb ...
Unpacking libgl1-mesa-glx:ppc64el (13.0.6-1+b2) ...
Selecting previously unselected package libatk-bridge2.0-0:ppc64el.
Preparing to unpack .../113-libatk-bridge2.0-0_2.22.0-2_ppc64el.deb ...
Unpacking libatk-bridge2.0-0:ppc64el (2.22.0-2) ...
Selecting previously unselected package libcairo-gobject2:ppc64el.
Preparing to unpack .../114-libcairo-gobject2_1.14.8-1_ppc64el.deb ...
Unpacking libcairo-gobject2:ppc64el (1.14.8-1) ...
Selecting previously unselected package libgtk-3-common.
Preparing to unpack .../115-libgtk-3-common_3.22.11-1_all.deb ...
Unpacking libgtk-3-common (3.22.11-1) ...
Selecting previously unselected package libcolord2:ppc64el.
Preparing to unpack .../116-libcolord2_1.3.3-2_ppc64el.deb ...
Unpacking libcolord2:ppc64el (1.3.3-2) ...
Selecting previously unselected package libepoxy0:ppc64el.
Preparing to unpack .../117-libepoxy0_1.3.1-2_ppc64el.deb ...
Unpacking libepoxy0:ppc64el (1.3.1-2) ...
Selecting previously unselected package libjson-glib-1.0-common.
Preparing to unpack .../118-libjson-glib-1.0-common_1.2.6-1_all.deb ...
Unpacking libjson-glib-1.0-common (1.2.6-1) ...
Selecting previously unselected package libjson-glib-1.0-0:ppc64el.
Preparing to unpack .../119-libjson-glib-1.0-0_1.2.6-1_ppc64el.deb ...
Unpacking libjson-glib-1.0-0:ppc64el (1.2.6-1) ...
Selecting previously unselected package libproxy1v5:ppc64el.
Preparing to unpack .../120-libproxy1v5_0.4.14-2_ppc64el.deb ...
Unpacking libproxy1v5:ppc64el (0.4.14-2) ...
Selecting previously unselected package glib-networking-common.
Preparing to unpack .../121-glib-networking-common_2.50.0-1_all.deb ...
Unpacking glib-networking-common (2.50.0-1) ...
Selecting previously unselected package glib-networking-services.
Preparing to unpack .../122-glib-networking-services_2.50.0-1+b1_ppc64el.deb ...
Unpacking glib-networking-services (2.50.0-1+b1) ...
Selecting previously unselected package gsettings-desktop-schemas.
Preparing to unpack .../123-gsettings-desktop-schemas_3.22.0-1_all.deb ...
Unpacking gsettings-desktop-schemas (3.22.0-1) ...
Selecting previously unselected package glib-networking:ppc64el.
Preparing to unpack .../124-glib-networking_2.50.0-1+b1_ppc64el.deb ...
Unpacking glib-networking:ppc64el (2.50.0-1+b1) ...
Selecting previously unselected package libsoup2.4-1:ppc64el.
Preparing to unpack .../125-libsoup2.4-1_2.56.0-2_ppc64el.deb ...
Unpacking libsoup2.4-1:ppc64el (2.56.0-2) ...
Selecting previously unselected package libsoup-gnome2.4-1:ppc64el.
Preparing to unpack .../126-libsoup-gnome2.4-1_2.56.0-2_ppc64el.deb ...
Unpacking libsoup-gnome2.4-1:ppc64el (2.56.0-2) ...
Selecting previously unselected package librest-0.7-0:ppc64el.
Preparing to unpack .../127-librest-0.7-0_0.8.0-2_ppc64el.deb ...
Unpacking librest-0.7-0:ppc64el (0.8.0-2) ...
Selecting previously unselected package libwayland-client0:ppc64el.
Preparing to unpack .../128-libwayland-client0_1.12.0-1_ppc64el.deb ...
Unpacking libwayland-client0:ppc64el (1.12.0-1) ...
Selecting previously unselected package libwayland-cursor0:ppc64el.
Preparing to unpack .../129-libwayland-cursor0_1.12.0-1_ppc64el.deb ...
Unpacking libwayland-cursor0:ppc64el (1.12.0-1) ...
Selecting previously unselected package libwayland-server0:ppc64el.
Preparing to unpack .../130-libwayland-server0_1.12.0-1_ppc64el.deb ...
Unpacking libwayland-server0:ppc64el (1.12.0-1) ...
Selecting previously unselected package libgbm1:ppc64el.
Preparing to unpack .../131-libgbm1_13.0.6-1+b2_ppc64el.deb ...
Unpacking libgbm1:ppc64el (13.0.6-1+b2) ...
Selecting previously unselected package libxcb-xfixes0:ppc64el.
Preparing to unpack .../132-libxcb-xfixes0_1.12-1_ppc64el.deb ...
Unpacking libxcb-xfixes0:ppc64el (1.12-1) ...
Selecting previously unselected package libegl1-mesa:ppc64el.
Preparing to unpack .../133-libegl1-mesa_13.0.6-1+b2_ppc64el.deb ...
Unpacking libegl1-mesa:ppc64el (13.0.6-1+b2) ...
Selecting previously unselected package libwayland-egl1-mesa:ppc64el.
Preparing to unpack .../134-libwayland-egl1-mesa_13.0.6-1+b2_ppc64el.deb ...
Unpacking libwayland-egl1-mesa:ppc64el (13.0.6-1+b2) ...
Selecting previously unselected package xkb-data.
Preparing to unpack .../135-xkb-data_2.19-1_all.deb ...
Unpacking xkb-data (2.19-1) ...
Selecting previously unselected package libxkbcommon0:ppc64el.
Preparing to unpack .../136-libxkbcommon0_0.7.1-1_ppc64el.deb ...
Unpacking libxkbcommon0:ppc64el (0.7.1-1) ...
Selecting previously unselected package libgtk-3-0:ppc64el.
Preparing to unpack .../137-libgtk-3-0_3.22.11-1_ppc64el.deb ...
Unpacking libgtk-3-0:ppc64el (3.22.11-1) ...
Selecting previously unselected package libfontenc1:ppc64el.
Preparing to unpack .../138-libfontenc1_1%3a1.1.3-1+b2_ppc64el.deb ...
Unpacking libfontenc1:ppc64el (1:1.1.3-1+b2) ...
Selecting previously unselected package libice6:ppc64el.
Preparing to unpack .../139-libice6_2%3a1.0.9-2_ppc64el.deb ...
Unpacking libice6:ppc64el (2:1.0.9-2) ...
Selecting previously unselected package libsm6:ppc64el.
Preparing to unpack .../140-libsm6_2%3a1.2.2-1+b3_ppc64el.deb ...
Unpacking libsm6:ppc64el (2:1.2.2-1+b3) ...
Selecting previously unselected package libxt6:ppc64el.
Preparing to unpack .../141-libxt6_1%3a1.1.5-1_ppc64el.deb ...
Unpacking libxt6:ppc64el (1:1.1.5-1) ...
Selecting previously unselected package libxmu6:ppc64el.
Preparing to unpack .../142-libxmu6_2%3a1.1.2-2_ppc64el.deb ...
Unpacking libxmu6:ppc64el (2:1.1.2-2) ...
Selecting previously unselected package libxpm4:ppc64el.
Preparing to unpack .../143-libxpm4_1%3a3.5.12-1_ppc64el.deb ...
Unpacking libxpm4:ppc64el (1:3.5.12-1) ...
Selecting previously unselected package libxaw7:ppc64el.
Preparing to unpack .../144-libxaw7_2%3a1.0.13-1+b2_ppc64el.deb ...
Unpacking libxaw7:ppc64el (2:1.0.13-1+b2) ...
Selecting previously unselected package libxcb-shape0:ppc64el.
Preparing to unpack .../145-libxcb-shape0_1.12-1_ppc64el.deb ...
Unpacking libxcb-shape0:ppc64el (1.12-1) ...
Selecting previously unselected package libxft2:ppc64el.
Preparing to unpack .../146-libxft2_2.3.2-1+b2_ppc64el.deb ...
Unpacking libxft2:ppc64el (2.3.2-1+b2) ...
Selecting previously unselected package libxmuu1:ppc64el.
Preparing to unpack .../147-libxmuu1_2%3a1.1.2-2_ppc64el.deb ...
Unpacking libxmuu1:ppc64el (2:1.1.2-2) ...
Selecting previously unselected package libxv1:ppc64el.
Preparing to unpack .../148-libxv1_2%3a1.0.11-1_ppc64el.deb ...
Unpacking libxv1:ppc64el (2:1.0.11-1) ...
Selecting previously unselected package libxxf86dga1:ppc64el.
Preparing to unpack .../149-libxxf86dga1_2%3a1.1.4-1+b3_ppc64el.deb ...
Unpacking libxxf86dga1:ppc64el (2:1.1.4-1+b3) ...
Selecting previously unselected package x11-utils.
Preparing to unpack .../150-x11-utils_7.7+3+b1_ppc64el.deb ...
Unpacking x11-utils (7.7+3+b1) ...
Selecting previously unselected package libatk-wrapper-java.
Preparing to unpack .../151-libatk-wrapper-java_0.33.3-13_all.deb ...
Unpacking libatk-wrapper-java (0.33.3-13) ...
Selecting previously unselected package libatk-wrapper-java-jni:ppc64el.
Preparing to unpack .../152-libatk-wrapper-java-jni_0.33.3-13_ppc64el.deb ...
Unpacking libatk-wrapper-java-jni:ppc64el (0.33.3-13) ...
Selecting previously unselected package libasound2-data.
Preparing to unpack .../153-libasound2-data_1.1.3-5_all.deb ...
Unpacking libasound2-data (1.1.3-5) ...
Selecting previously unselected package libasound2:ppc64el.
Preparing to unpack .../154-libasound2_1.1.3-5_ppc64el.deb ...
Unpacking libasound2:ppc64el (1.1.3-5) ...
Selecting previously unselected package libgif7:ppc64el.
Preparing to unpack .../155-libgif7_5.1.4-0.4_ppc64el.deb ...
Unpacking libgif7:ppc64el (5.1.4-0.4) ...
Selecting previously unselected package libasyncns0:ppc64el.
Preparing to unpack .../156-libasyncns0_0.8-6_ppc64el.deb ...
Unpacking libasyncns0:ppc64el (0.8-6) ...
Selecting previously unselected package libflac8:ppc64el.
Preparing to unpack .../157-libflac8_1.3.2-1_ppc64el.deb ...
Unpacking libflac8:ppc64el (1.3.2-1) ...
Selecting previously unselected package libvorbis0a:ppc64el.
Preparing to unpack .../158-libvorbis0a_1.3.5-4_ppc64el.deb ...
Unpacking libvorbis0a:ppc64el (1.3.5-4) ...
Selecting previously unselected package libvorbisenc2:ppc64el.
Preparing to unpack .../159-libvorbisenc2_1.3.5-4_ppc64el.deb ...
Unpacking libvorbisenc2:ppc64el (1.3.5-4) ...
Selecting previously unselected package libsndfile1:ppc64el.
Preparing to unpack .../160-libsndfile1_1.0.27-3_ppc64el.deb ...
Unpacking libsndfile1:ppc64el (1.0.27-3) ...
Selecting previously unselected package libpulse0:ppc64el.
Preparing to unpack .../161-libpulse0_10.0-1+deb9u1_ppc64el.deb ...
Unpacking libpulse0:ppc64el (10.0-1+deb9u1) ...
Selecting previously unselected package openjdk-8-jre:ppc64el.
Preparing to unpack .../162-openjdk-8-jre_8u141-b15-1deb9u1_ppc64el.deb ...
Unpacking openjdk-8-jre:ppc64el (8u141-b15-1
deb9u1) ...
Selecting previously unselected package default-jre.
Preparing to unpack .../163-default-jre_2%3a1.8-58_ppc64el.deb ...
Unpacking default-jre (2:1.8-58) ...
Selecting previously unselected package icedtea-netx-common.
Preparing to unpack .../164-icedtea-netx-common_1.6.2-3.1_all.deb ...
Unpacking icedtea-netx-common (1.6.2-3.1) ...
Selecting previously unselected package icedtea-netx:ppc64el.
Preparing to unpack .../165-icedtea-netx_1.6.2-3.1_ppc64el.deb ...
Unpacking icedtea-netx:ppc64el (1.6.2-3.1) ...
Selecting previously unselected package icedtea-8-plugin:ppc64el.
Preparing to unpack .../166-icedtea-8-plugin_1.6.2-3.1_ppc64el.deb ...
Unpacking icedtea-8-plugin:ppc64el (1.6.2-3.1) ...
Selecting previously unselected package default-java-plugin.
Preparing to unpack .../167-default-java-plugin_2%3a1.8-58_ppc64el.deb ...
Unpacking default-java-plugin (2:1.8-58) ...
Selecting previously unselected package openjdk-8-jdk-headless:ppc64el.
Preparing to unpack .../168-openjdk-8-jdk-headless_8u141-b15-1deb9u1_ppc64el.deb ...
Unpacking openjdk-8-jdk-headless:ppc64el (8u141-b15-1
deb9u1) ...
Selecting previously unselected package default-jdk-headless.
Preparing to unpack .../169-default-jdk-headless_2%3a1.8-58_ppc64el.deb ...
Unpacking default-jdk-headless (2:1.8-58) ...
Selecting previously unselected package openjdk-8-jdk:ppc64el.
Preparing to unpack .../170-openjdk-8-jdk_8u141-b15-1deb9u1_ppc64el.deb ...
Unpacking openjdk-8-jdk:ppc64el (8u141-b15-1
deb9u1) ...
Selecting previously unselected package default-jdk.
Preparing to unpack .../171-default-jdk_2%3a1.8-58_ppc64el.deb ...
Unpacking default-jdk (2:1.8-58) ...
Selecting previously unselected package fonts-dejavu-extra.
Preparing to unpack .../172-fonts-dejavu-extra_2.37-1_all.deb ...
Unpacking fonts-dejavu-extra (2.37-1) ...
Selecting previously unselected package libdrm-amdgpu1:ppc64el.
Preparing to unpack .../173-libdrm-amdgpu1_2.4.74-1_ppc64el.deb ...
Unpacking libdrm-amdgpu1:ppc64el (2.4.74-1) ...
Selecting previously unselected package libdrm-nouveau2:ppc64el.
Preparing to unpack .../174-libdrm-nouveau2_2.4.74-1_ppc64el.deb ...
Unpacking libdrm-nouveau2:ppc64el (2.4.74-1) ...
Selecting previously unselected package libdrm-radeon1:ppc64el.
Preparing to unpack .../175-libdrm-radeon1_2.4.74-1_ppc64el.deb ...
Unpacking libdrm-radeon1:ppc64el (2.4.74-1) ...
Selecting previously unselected package libgail18:ppc64el.
Preparing to unpack .../176-libgail18_2.24.31-2_ppc64el.deb ...
Unpacking libgail18:ppc64el (2.24.31-2) ...
Selecting previously unselected package libgail-common:ppc64el.
Preparing to unpack .../177-libgail-common_2.24.31-2_ppc64el.deb ...
Unpacking libgail-common:ppc64el (2.24.31-2) ...
Selecting previously unselected package libllvm3.9:ppc64el.
Preparing to unpack .../178-libllvm3.9_1%3a3.9.1-9_ppc64el.deb ...
Unpacking libllvm3.9:ppc64el (1:3.9.1-9) ...
Selecting previously unselected package libsensors4:ppc64el.
Preparing to unpack .../179-libsensors4_1%3a3.4.0-4_ppc64el.deb ...
Unpacking libsensors4:ppc64el (1:3.4.0-4) ...
Selecting previously unselected package libgl1-mesa-dri:ppc64el.
Preparing to unpack .../180-libgl1-mesa-dri_13.0.6-1+b2_ppc64el.deb ...
Unpacking libgl1-mesa-dri:ppc64el (13.0.6-1+b2) ...
Selecting previously unselected package libglib2.0-data.
Preparing to unpack .../181-libglib2.0-data_2.50.3-2_all.deb ...
Unpacking libglib2.0-data (2.50.3-2) ...
Selecting previously unselected package libgtk-3-bin.
Preparing to unpack .../182-libgtk-3-bin_3.22.11-1_ppc64el.deb ...
Unpacking libgtk-3-bin (3.22.11-1) ...
Selecting previously unselected package libgtk2.0-bin.
Preparing to unpack .../183-libgtk2.0-bin_2.24.31-2_ppc64el.deb ...
Unpacking libgtk2.0-bin (2.24.31-2) ...
Selecting previously unselected package xorg-sgml-doctools.
Preparing to unpack .../184-xorg-sgml-doctools_1%3a1.11-1_all.deb ...
Unpacking xorg-sgml-doctools (1:1.11-1) ...
Selecting previously unselected package x11proto-core-dev.
Preparing to unpack .../185-x11proto-core-dev_7.0.31-1_all.deb ...
Unpacking x11proto-core-dev (7.0.31-1) ...
Selecting previously unselected package libice-dev:ppc64el.
Preparing to unpack .../186-libice-dev_2%3a1.0.9-2_ppc64el.deb ...
Unpacking libice-dev:ppc64el (2:1.0.9-2) ...
Selecting previously unselected package libpthread-stubs0-dev:ppc64el.
Preparing to unpack .../187-libpthread-stubs0-dev_0.3-4_ppc64el.deb ...
Unpacking libpthread-stubs0-dev:ppc64el (0.3-4) ...
Selecting previously unselected package libsm-dev:ppc64el.
Preparing to unpack .../188-libsm-dev_2%3a1.2.2-1+b3_ppc64el.deb ...
Unpacking libsm-dev:ppc64el (2:1.2.2-1+b3) ...
Selecting previously unselected package libxau-dev:ppc64el.
Preparing to unpack .../189-libxau-dev_1%3a1.0.8-1_ppc64el.deb ...
Unpacking libxau-dev:ppc64el (1:1.0.8-1) ...
Selecting previously unselected package libxdmcp-dev:ppc64el.
Preparing to unpack .../190-libxdmcp-dev_1%3a1.1.2-3_ppc64el.deb ...
Unpacking libxdmcp-dev:ppc64el (1:1.1.2-3) ...
Selecting previously unselected package x11proto-input-dev.
Preparing to unpack .../191-x11proto-input-dev_2.3.2-1_all.deb ...
Unpacking x11proto-input-dev (2.3.2-1) ...
Selecting previously unselected package x11proto-kb-dev.
Preparing to unpack .../192-x11proto-kb-dev_1.0.7-1_all.deb ...
Unpacking x11proto-kb-dev (1.0.7-1) ...
Selecting previously unselected package xtrans-dev.
Preparing to unpack .../193-xtrans-dev_1.3.5-1_all.deb ...
Unpacking xtrans-dev (1.3.5-1) ...
Selecting previously unselected package libxcb1-dev:ppc64el.
Preparing to unpack .../194-libxcb1-dev_1.12-1_ppc64el.deb ...
Unpacking libxcb1-dev:ppc64el (1.12-1) ...
Selecting previously unselected package libx11-dev:ppc64el.
Preparing to unpack .../195-libx11-dev_2%3a1.6.4-3_ppc64el.deb ...
Unpacking libx11-dev:ppc64el (2:1.6.4-3) ...
Selecting previously unselected package libx11-doc.
Preparing to unpack .../196-libx11-doc_2%3a1.6.4-3_all.deb ...
Unpacking libx11-doc (2:1.6.4-3) ...
Selecting previously unselected package libxt-dev:ppc64el.
Preparing to unpack .../197-libxt-dev_1%3a1.1.5-1_ppc64el.deb ...
Unpacking libxt-dev:ppc64el (1:1.1.5-1) ...
Selecting previously unselected package tcpd.
Preparing to unpack .../198-tcpd_7.6.q-26_ppc64el.deb ...
Unpacking tcpd (7.6.q-26) ...
Selecting previously unselected package xdg-user-dirs.
Preparing to unpack .../199-xdg-user-dirs_0.15-2+b1_ppc64el.deb ...
Unpacking xdg-user-dirs (0.15-2+b1) ...
Selecting previously unselected package xml-core.
Preparing to unpack .../200-xml-core_0.17_all.deb ...
Unpacking xml-core (0.17) ...
Selecting previously unselected package libtxc-dxtn-s2tc:ppc64el.
Preparing to unpack .../201-libtxc-dxtn-s2tc_1.0+git20151227-2_ppc64el.deb ...
Unpacking libtxc-dxtn-s2tc:ppc64el (1.0+git20151227-2) ...
Setting up libncurses5:ppc64el (6.0+20161126-1) ...
Setting up libnettle6:ppc64el (3.3-1+b1) ...
Setting up libexpat1:ppc64el (2.2.0-2+deb9u1) ...
Setting up libjson-glib-1.0-common (1.2.6-1) ...
Setting up libgtk2.0-common (2.24.31-2) ...
Setting up libasyncns0:ppc64el (0.8-6) ...
Setting up glib-networking-common (2.50.0-1) ...
Setting up libjpeg62-turbo:ppc64el (1:1.5.1-2) ...
Setting up libpng16-16:ppc64el (1.6.28-1) ...
Setting up liblcms2-2:ppc64el (2.8-4) ...
Setting up libjbig0:ppc64el (2.1-3.1+b2) ...
Setting up libpcsclite1:ppc64el (1.8.20-1) ...
Setting up libgpm2:ppc64el (1.20.4-6.2+b1) ...
Setting up libpthread-stubs0-dev:ppc64el (0.3-4) ...
Setting up fonts-dejavu-core (2.37-1) ...
Setting up libasound2-data (1.1.3-5) ...
Setting up libxshmfence1:ppc64el (1.2-1+b2) ...
Setting up xorg-sgml-doctools (1:1.11-1) ...
Setting up libcap2:ppc64el (1:2.25-1) ...
Setting up xkb-data (2.19-1) ...
Setting up libproxy1v5:ppc64el (0.4.14-2) ...
Setting up java-common (0.58) ...
Setting up libgdk-pixbuf2.0-common (2.36.5-2) ...
Setting up libdatrie1:ppc64el (0.2.10-4+b1) ...
Setting up libtiff5:ppc64el (4.0.8-2+deb9u1) ...
Setting up libtxc-dxtn-s2tc:ppc64el (1.0+git20151227-2) ...
update-alternatives: using /usr/lib/powerpc64le-linux-gnu/s2tc/libtxc_dxtn.so to provide /usr/lib/powerpc64le-linux-gnu/libtxc_dxtn.so (libtxc-dxtn-powerpc64le-linux-gnu) in auto mode
Setting up libgif7:ppc64el (5.1.4-0.4) ...
Setting up x11proto-kb-dev (1.0.7-1) ...
Setting up libglapi-mesa:ppc64el (13.0.6-1+b2) ...
Setting up sgml-base (1.29) ...
Setting up libicu57:ppc64el (57.1-6) ...
Setting up libbsd0:ppc64el (0.8.3-1) ...
Setting up libnspr4:ppc64el (2:4.12-6) ...
Setting up ucf (3.0036) ...
debconf: unable to initialize frontend: Dialog
debconf: (No usable dialog-like program is installed, so the dialog based frontend cannot be used. at /usr/share/perl5/Debconf/FrontEnd/Dialog.pm line 76.)
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/powerpc64le-linux-gnu/perl/5.24.1 /usr/local/share/perl/5.24.1 /usr/lib/powerpc64le-linux-gnu/perl5/5.24 /usr/share/perl5 /usr/lib/powerpc64le-linux-gnu/perl/5.24 /usr/share/perl/5.24 /usr/local/lib/site_perl /usr/lib/powerpc64le-linux-gnu/perl-base .) at /usr/share/perl5/Debconf/FrontEnd/Readline.pm line 7.)
debconf: falling back to frontend: Teletype
Setting up libxml2:ppc64el (2.9.4+dfsg1-2.2) ...
Setting up libfreetype6:ppc64el (2.6.3-3.2) ...
Setting up libtasn1-6:ppc64el (4.10-1.1) ...
Setting up libasound2:ppc64el (1.1.3-5) ...
Setting up libdrm2:ppc64el (2.4.74-1) ...
Setting up libgraphite2-3:ppc64el (1.3.10-1) ...
Setting up libogg0:ppc64el (1.3.2-1) ...
/var/lib/dpkg/info/libogg0:ppc64el.postinst: 5: /var/lib/dpkg/info/libogg0:ppc64el.postinst: ldconfig: Exec format error
dpkg: error processing package libogg0:ppc64el (--configure):
subprocess installed post-installation script returned error exit status 2
dpkg: dependency problems prevent configuration of libsndfile1:ppc64el:
libsndfile1:ppc64el depends on libogg0 (>= 1.0rc3); however:
Package libogg0:ppc64el is not configured yet.

dpkg: error processing package libsndfile1:ppc64el (--configure):
dependency problems - leaving unconfigured
Setting up libatk1.0-data (2.22.0-1) ...
Setting up libx11-xcb1:ppc64el (2:1.6.4-3) ...
Setting up libgmp10:ppc64el (2:6.1.2+dfsg-1) ...
Setting up libpixman-1-0:ppc64el (0.34.0-1) ...
Setting up xtrans-dev (1.3.5-1) ...
Setting up libglib2.0-data (2.50.3-2) ...
Setting up krb5-locales (1.15-1) ...
Processing triggers for libc-bin (2.24-11+deb9u1) ...
/var/lib/dpkg/info/libc-bin.postinst: 49: /var/lib/dpkg/info/libc-bin.postinst: ldconfig: Exec format error
/var/lib/dpkg/info/libc-bin.postinst: 49: /var/lib/dpkg/info/libc-bin.postinst: ldconfig: Exec format error
dpkg: error processing package libc-bin (--configure):
subprocess installed post-installation script returned error exit status 2
Setting up libepoxy0:ppc64el (1.3.1-2) ...
Setting up libapparmor1:ppc64el (2.11.0-3) ...
Setting up libssl1.1:ppc64el (1.1.0f-3) ...
debconf: unable to initialize frontend: Dialog
debconf: (No usable dialog-like program is installed, so the dialog based frontend cannot be used. at /usr/share/perl5/Debconf/FrontEnd/Dialog.pm line 76.)
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/powerpc64le-linux-gnu/perl/5.24.1 /usr/local/share/perl/5.24.1 /usr/lib/powerpc64le-linux-gnu/perl5/5.24 /usr/share/perl5 /usr/lib/powerpc64le-linux-gnu/perl/5.24 /usr/share/perl/5.24 /usr/local/lib/site_perl /usr/lib/powerpc64le-linux-gnu/perl-base .) at /usr/share/perl5/Debconf/FrontEnd/Readline.pm line 7.)
debconf: falling back to frontend: Teletype
Setting up openssl (1.1.0f-3) ...
Setting up libsqlite3-0:ppc64el (3.16.2-5) ...
Setting up libfontenc1:ppc64el (1:1.1.3-1+b2) ...
Setting up libx11-doc (2:1.6.4-3) ...
Setting up icedtea-netx-common (1.6.2-3.1) ...
Setting up libsensors4:ppc64el (1:3.4.0-4) ...
Setting up libxkbcommon0:ppc64el (0.7.1-1) ...
Setting up libffi6:ppc64el (3.2.1-6) ...
Setting up libdrm-radeon1:ppc64el (2.4.74-1) ...
Setting up libthai-data (0.1.26-1) ...
Setting up libxdmcp6:ppc64el (1:1.1.2-3) ...
Setting up xml-core (0.17) ...
dpkg: dependency problems prevent configuration of libvorbisenc2:ppc64el:
libvorbisenc2:ppc64el depends on libogg0 (>= 1.0rc3); however:
Package libogg0:ppc64el is not configured yet.

dpkg: error processing package libvorbisenc2:ppc64el (--configure):
dependency problems - leaving unconfigured
Setting up libkeyutils1:ppc64el (1.5.9-9) ...
Setting up libdrm-nouveau2:ppc64el (2.4.74-1) ...
Setting up fonts-dejavu-extra (2.37-1) ...
dpkg: dependency problems prevent configuration of libvorbis0a:ppc64el:
libvorbis0a:ppc64el depends on libogg0 (>= 1.1.0); however:
Package libogg0:ppc64el is not configured yet.

dpkg: error processing package libvorbis0a:ppc64el (--configure):
dependency problems - leaving unconfigured
Setting up x11-common (1:7.7+19) ...
debconf: unable to initialize frontend: Dialog
debconf: (No usable dialog-like program is installed, so the dialog based frontend cannot be used. at /usr/share/perl5/Debconf/FrontEnd/Dialog.pm line 76.)
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/powerpc64le-linux-gnu/perl/5.24.1 /usr/local/share/perl/5.24.1 /usr/lib/powerpc64le-linux-gnu/perl5/5.24 /usr/share/perl5 /usr/lib/powerpc64le-linux-gnu/perl/5.24 /usr/share/perl/5.24 /usr/local/lib/site_perl /usr/lib/powerpc64le-linux-gnu/perl-base .) at /usr/share/perl5/Debconf/FrontEnd/Readline.pm line 7.)
debconf: falling back to frontend: Teletype
update-rc.d: warning: start and stop actions are no longer supported; falling back to defaults
invoke-rc.d: could not determine current runlevel
invoke-rc.d: policy-rc.d denied execution of start.
Setting up ca-certificates (20161130+nmu1) ...
debconf: unable to initialize frontend: Dialog
debconf: (No usable dialog-like program is installed, so the dialog based frontend cannot be used. at /usr/share/perl5/Debconf/FrontEnd/Dialog.pm line 76.)
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/powerpc64le-linux-gnu/perl/5.24.1 /usr/local/share/perl/5.24.1 /usr/lib/powerpc64le-linux-gnu/perl5/5.24 /usr/share/perl5 /usr/lib/powerpc64le-linux-gnu/perl/5.24 /usr/share/perl/5.24 /usr/local/lib/site_perl /usr/lib/powerpc64le-linux-gnu/perl-base .) at /usr/share/perl5/Debconf/FrontEnd/Readline.pm line 7.)
debconf: falling back to frontend: Teletype
Updating certificates in /etc/ssl/certs...
166 added, 0 removed; done.
Setting up hicolor-icon-theme (0.15-1) ...
Setting up xdg-user-dirs (0.15-2+b1) ...
Setting up libx11-data (2:1.6.4-3) ...
Setting up libxau6:ppc64el (1:1.0.8-1) ...
/var/lib/dpkg/info/libxau6:ppc64el.postinst: 5: /var/lib/dpkg/info/libxau6:ppc64el.postinst: ldconfig: Exec format error
dpkg: error processing package libxau6:ppc64el (--configure):
subprocess installed post-installation script returned error exit status 2
Setting up libidn11:ppc64el (1.33-1) ...
Setting up libdbus-1-3:ppc64el (1.10.18-1) ...
Setting up libwrap0:ppc64el (7.6.q-26) ...
Setting up libavahi-common-data:ppc64el (0.6.32-2) ...
Setting up libwayland-server0:ppc64el (1.12.0-1) ...
Setting up libedit2:ppc64el (3.1-20160903-3) ...
Setting up fontconfig-config (2.11.0-6.7) ...
debconf: unable to initialize frontend: Dialog
debconf: (No usable dialog-like program is installed, so the dialog based frontend cannot be used. at /usr/share/perl5/Debconf/FrontEnd/Dialog.pm line 76.)
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/powerpc64le-linux-gnu/perl/5.24.1 /usr/local/share/perl/5.24.1 /usr/lib/powerpc64le-linux-gnu/perl5/5.24 /usr/share/perl5 /usr/lib/powerpc64le-linux-gnu/perl/5.24 /usr/share/perl/5.24 /usr/local/lib/site_perl /usr/lib/powerpc64le-linux-gnu/perl-base .) at /usr/share/perl5/Debconf/FrontEnd/Readline.pm line 7.)
debconf: falling back to frontend: Teletype
Setting up x11proto-core-dev (7.0.31-1) ...
Setting up libdrm-amdgpu1:ppc64el (2.4.74-1) ...
Setting up libglib2.0-0:ppc64el (2.50.3-2) ...
Setting up libllvm3.9:ppc64el (1:3.9.1-9) ...
Setting up libwayland-client0:ppc64el (1.12.0-1) ...
Setting up libgbm1:ppc64el (13.0.6-1+b2) ...
dpkg: dependency problems prevent configuration of libflac8:ppc64el:
libflac8:ppc64el depends on libogg0 (>= 1.0rc3); however:
Package libogg0:ppc64el is not configured yet.

dpkg: error processing package libflac8:ppc64el (--configure):
dependency problems - leaving unconfigured
Setting up libgl1-mesa-dri:ppc64el (13.0.6-1+b2) ...
Setting up libnss3:ppc64el (2:3.26.2-1.1) ...
Setting up libharfbuzz0b:ppc64el (1.4.2-1) ...
Setting up glib-networking-services (2.50.0-1+b1) ...
dpkg: dependency problems prevent configuration of libxau-dev:ppc64el:
libxau-dev:ppc64el depends on libxau6 (= 1:1.0.8-1); however:
Package libxau6:ppc64el is not configured yet.

dpkg: error processing package libxau-dev:ppc64el (--configure):
dependency problems - leaving unconfigured
Setting up libthai0:ppc64el (0.1.26-1) ...
Setting up tcpd (7.6.q-26) ...
Setting up libkrb5support0:ppc64el (1.15-1) ...
dpkg: dependency problems prevent configuration of libpulse0:ppc64el:
libpulse0:ppc64el depends on libsndfile1 (>= 1.0.20); however:
Package libsndfile1:ppc64el is not configured yet.

dpkg: error processing package libpulse0:ppc64el (--configure):
dependency problems - leaving unconfigured
Setting up libjson-glib-1.0-0:ppc64el (1.2.6-1) ...
Setting up libhogweed4:ppc64el (3.3-1+b1) ...
Setting up libcroco3:ppc64el (0.6.11-3) ...
dpkg: dependency problems prevent configuration of openjdk-8-jre:ppc64el:
openjdk-8-jre:ppc64el depends on libpulse0 (>= 0.99.1); however:
Package libpulse0:ppc64el is not configured yet.

dpkg: error processing package openjdk-8-jre:ppc64el (--configure):
dependency problems - leaving unconfigured
Setting up libxdmcp-dev:ppc64el (1:1.1.2-3) ...
Setting up libatk1.0-0:ppc64el (2.22.0-1) ...
Setting up libp11-kit0:ppc64el (0.23.3-2) ...
Setting up libice6:ppc64el (2:1.0.9-2) ...
Setting up libdconf1:ppc64el (0.26.0-2+b1) ...
dpkg: dependency problems prevent configuration of libxcb1-dev:ppc64el:
libxcb1-dev:ppc64el depends on libxau-dev (>= 1:1.0.0-1); however:
Package libxau-dev:ppc64el is not configured yet.

dpkg: error processing package libxcb1-dev:ppc64el (--configure):
dependency problems - leaving unconfigured
Setting up shared-mime-info (1.8-1) ...
Setting up libavahi-common3:ppc64el (0.6.32-2) ...
dpkg: dependency problems prevent configuration of libx11-dev:ppc64el:
libx11-dev:ppc64el depends on libxau-dev (>= 1:1.0.0-1); however:
Package libxau-dev:ppc64el is not configured yet.
libx11-dev:ppc64el depends on libxcb1-dev; however:
Package libxcb1-dev:ppc64el is not configured yet.

dpkg: error processing package libx11-dev:ppc64el (--configure):
dependency problems - leaving unconfigured
Setting up libcolord2:ppc64el (1.3.3-2) ...
Setting up dbus (1.10.18-1) ...
invoke-rc.d: could not determine current runlevel
invoke-rc.d: policy-rc.d denied execution of start.
dpkg: dependency problems prevent configuration of libxcb1:ppc64el:
libxcb1:ppc64el depends on libxau6; however:
Package libxau6:ppc64el is not configured yet.

dpkg: error processing package libxcb1:ppc64el (--configure):
dependency problems - leaving unconfigured
Setting up libwayland-cursor0:ppc64el (1.12.0-1) ...
Setting up x11proto-input-dev (2.3.2-1) ...
dpkg: dependency problems prevent configuration of libegl1-mesa:ppc64el:
libegl1-mesa:ppc64el depends on libxcb1 (>= 1.9.2); however:
Package libxcb1:ppc64el is not configured yet.

dpkg: error processing package libegl1-mesa:ppc64el (--configure):
dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of libxcb-present0:ppc64el:
libxcb-present0:ppc64el depends on libxcb1; however:
Package libxcb1:ppc64el is not configured yet.

dpkg: error processing package libxcb-present0:ppc64el (--configure):
dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of libcairo2:ppc64el:
libcairo2:ppc64el depends on libxcb1 (>= 1.6); however:
Package libxcb1:ppc64el is not configured yet.

dpkg: error processing package libcairo2:ppc64el (--configure):
dependency problems - leaving unconfigured
Setting up libfontconfig1:ppc64el (2.11.0-6.7+b1) ...
dpkg: dependency problems prevent configuration of libxcb-dri2-0:ppc64el:
libxcb-dri2-0:ppc64el depends on libxcb1; however:
Package libxcb1:ppc64el is not configured yet.

dpkg: error processing package libxcb-dri2-0:ppc64el (--configure):
dependency problems - leaving unconfigured
Setting up libsm6:ppc64el (2:1.2.2-1+b3) ...
dpkg: dependency problems prevent configuration of libxt-dev:ppc64el:
libxt-dev:ppc64el depends on libx11-dev; however:
Package libx11-dev:ppc64el is not configured yet.

dpkg: error processing package libxt-dev:ppc64el (--configure):
dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of libxcb-dri3-0:ppc64el:
libxcb-dri3-0:ppc64el depends on libxcb1 (>= 1.12); however:
Package libxcb1:ppc64el is not configured yet.

dpkg: error processing package libxcb-dri3-0:ppc64el (--configure):
dependency problems - leaving unconfigured
Setting up libk5crypto3:ppc64el (1.15-1) ...
dpkg: dependency problems prevent configuration of libxcb-glx0:ppc64el:
libxcb-glx0:ppc64el depends on libxcb1; however:
Package libxcb1:ppc64el is not configured yet.

dpkg: error processing package libxcb-glx0:ppc64el (--configure):
dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of libgtk2.0-0:ppc64el:
libgtk2.0-0:ppc64el depends on libcairo2 (>= 1.6.4-6.1); however:
Package libcairo2:ppc64el is not configured yet.

dpkg: error processing package libgtk2.0-0:ppc64el (--configure):
dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of libxcb-xfixes0:ppc64el:
libxcb-xfixes0:ppc64el depends on libxcb1; however:
Package libxcb1:ppc64el is not configured yet.

dpkg: error processing package libxcb-xfixes0:ppc64el (--configure):
dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of icedtea-netx:ppc64el:
icedtea-netx:ppc64el depends on openjdk-8-jre; however:
Package openjdk-8-jre:ppc64el is not configured yet.

dpkg: error processing package icedtea-netx:ppc64el (--configure):
dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of libxcb-render0:ppc64el:
libxcb-render0:ppc64el depends on libxcb1 (>= 1.8); however:
Package libxcb1:ppc64el is not configured yet.

dpkg: error processing package libxcb-render0:ppc64el (--configure):
dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of libgail18:ppc64el:
libgail18:ppc64el depends on libcairo2 (>= 1.6.4-6.1); however:
Package libcairo2:ppc64el is not configured yet.
libgail18:ppc64el depends on libgtk2.0-0 (= 2.24.31-2); however:
Package libgtk2.0-0:ppc64el is not configured yet.

dpkg: error processing package libgail18:ppc64el (--configure):
dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of librsvg2-2:ppc64el:
librsvg2-2:ppc64el depends on libcairo2 (>= 1.10.0); however:
Package libcairo2:ppc64el is not configured yet.

dpkg: error processing package librsvg2-2:ppc64el (--configure):
dependency problems - leaving unconfigured
Setting up dconf-service (0.26.0-2+b1) ...
dpkg: dependency problems prevent configuration of icedtea-8-plugin:ppc64el:
icedtea-8-plugin:ppc64el depends on openjdk-8-jre; however:
Package openjdk-8-jre:ppc64el is not configured yet.
icedtea-8-plugin:ppc64el depends on icedtea-netx (= 1.6.2-3.1); however:
Package icedtea-netx:ppc64el is not configured yet.

dpkg: error processing package icedtea-8-plugin:ppc64el (--configure):
dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of openjdk-8-jdk:ppc64el:
openjdk-8-jdk:ppc64el depends on openjdk-8-jre (= 8u141-b15-1~deb9u1); however:
Package openjdk-8-jre:ppc64el is not configured yet.

dpkg: error processing package openjdk-8-jdk:ppc64el (--configure):
dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of default-jre:
default-jre depends on openjdk-8-jre; however:
Package openjdk-8-jre:ppc64el is not configured yet.

dpkg: error processing package default-jre (--configure):
dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of libcairo-gobject2:ppc64el:
libcairo-gobject2:ppc64el depends on libcairo2 (>= 1.10.0); however:
Package libcairo2:ppc64el is not configured yet.

dpkg: error processing package libcairo-gobject2:ppc64el (--configure):
dependency problems - leaving unconfigured
Setting up libgnutls30:ppc64el (3.5.8-5+deb9u2) ...
dpkg: dependency problems prevent configuration of libx11-6:ppc64el:
libx11-6:ppc64el depends on libxcb1 (>= 1.11.1); however:
Package libxcb1:ppc64el is not configured yet.

dpkg: error processing package libx11-6:ppc64el (--configure):
dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of x11-utils:
x11-utils depends on libx11-6; however:
Package libx11-6:ppc64el is not configured yet.
x11-utils depends on libxcb1 (>= 1.6); however:
Package libxcb1:ppc64el is not configured yet.

dpkg: error processing package x11-utils (--configure):
dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of libgail-common:ppc64el:
libgail-common:ppc64el depends on libcairo2 (>= 1.6.4-6.1); however:
Package libcairo2:ppc64el is not configured yet.
libgail-common:ppc64el depends on libgail18 (= 2.24.31-2); however:
Package libgail18:ppc64el is not configured yet.
libgail-common:ppc64el depends on libgtk2.0-0 (>= 2.24.0); however:
Package libgtk2.0-0:ppc64el is not configured yet.
libgail-common:ppc64el depends on libx11-6; however:
Package libx11-6:ppc64el is not configured yet.

dpkg: error processing package libgail-common:ppc64el (--configure):
dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of libpangocairo-1.0-0:ppc64el:
libpangocairo-1.0-0:ppc64el depends on libcairo2 (>= 1.12.10); however:
Package libcairo2:ppc64el is not configured yet.

dpkg: error processing package libpangocairo-1.0-0:ppc64el (--configure):
dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of libgtk-3-0:ppc64el:
libgtk-3-0:ppc64el depends on libcairo-gobject2 (>= 1.10.0); however:
Package libcairo-gobject2:ppc64el is not configured yet.
libgtk-3-0:ppc64el depends on libcairo2 (>= 1.14.0); however:
Package libcairo2:ppc64el is not configured yet.
libgtk-3-0:ppc64el depends on libpangocairo-1.0-0 (>= 1.37.3); however:
Package libpangocairo-1.0-0:ppc64el is not configured yet.
libgtk-3-0:ppc64el depends on libx11-6 (>= 2:1.4.99.1); however:
Package libx11-6:ppc64el is not configured yet.

dpkg: error processing package libgtk-3-0:ppc64el (--configure):
dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of librsvg2-common:ppc64el:
librsvg2-common:ppc64el depends on librsvg2-2 (= 2.40.16-1+b1); however:
Package librsvg2-2:ppc64el is not configured yet.

dpkg: error processing package librsvg2-common:ppc64el (--configure):
dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of libxmuu1:ppc64el:
libxmuu1:ppc64el depends on libx11-6; however:
Package libx11-6:ppc64el is not configured yet.

dpkg: error processing package libxmuu1:ppc64el (--configure):
dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of libxtst6:ppc64el:
libxtst6:ppc64el depends on libx11-6 (>= 2:1.6.0); however:
Package libx11-6:ppc64el is not configured yet.

dpkg: error processing package libxtst6:ppc64el (--configure):
dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of libxmu6:ppc64el:
libxmu6:ppc64el depends on libx11-6; however:
Package libx11-6:ppc64el is not configured yet.

dpkg: error processing package libxmu6:ppc64el (--configure):
dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of libxcb-sync1:ppc64el:
libxcb-sync1:ppc64el depends on libxcb1; however:
Package libxcb1:ppc64el is not configured yet.

dpkg: error processing package libxcb-sync1:ppc64el (--configure):
dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of libgtk-3-bin:
libgtk-3-bin depends on libcairo-gobject2 (>= 1.10.0); however:
Package libcairo-gobject2:ppc64el is not configured yet.
libgtk-3-bin depends on libcairo2 (>= 1.14.0); however:
Package libcairo2:ppc64el is not configured yet.
libgtk-3-bin depends on libgtk-3-0 (>= 3.22.11-1); however:
Package libgtk-3-0:ppc64el is not configured yet.
libgtk-3-bin depends on libpangocairo-1.0-0 (>= 1.37.3); however:
Package libpangocairo-1.0-0:ppc64el is not configured yet.
libgtk-3-bin depends on libx11-6; however:
Package libx11-6:ppc64el is not configured yet.

dpkg: error processing package libgtk-3-bin (--configure):
dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of libxcursor1:ppc64el:
libxcursor1:ppc64el depends on libx11-6 (>= 2:1.4.99.1); however:
Package libx11-6:ppc64el is not configured yet.

dpkg: error processing package libxcursor1:ppc64el (--configure):
dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of libatk-wrapper-java-jni:ppc64el:
libatk-wrapper-java-jni:ppc64el depends on libcairo-gobject2 (>= 1.10.0); however:
Package libcairo-gobject2:ppc64el is not configured yet.
libatk-wrapper-java-jni:ppc64el depends on libcairo2 (>= 1.2.4); however:
Package libcairo2:ppc64el is not configured yet.
libatk-wrapper-java-jni:ppc64el depends on libgtk-3-0 (>= 3.0.0); however:
Package libgtk-3-0:ppc64el is not configured yet.
libatk-wrapper-java-jni:ppc64el depends on libgtk2.0-0 (>= 2.8.0); however:
Package libgtk2.0-0:ppc64el is not configured yet.
libatk-wrapper-java-jni:ppc64el depends on libpangocairo-1.0-0 (>= 1.14.0); however:
Package libpangocairo-1.0-0:ppc64el is not configured yet.

dpkg: error processing package libatk-wrapper-java-jni:ppc64el (--configure):
dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of libxxf86dga1:ppc64el:
libxxf86dga1:ppc64el depends on libx11-6 (>= 2:1.6.0); however:
Package libx11-6:ppc64el is not configured yet.

dpkg: error processing package libxxf86dga1:ppc64el (--configure):
dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of libgl1-mesa-glx:ppc64el:
libgl1-mesa-glx:ppc64el depends on libx11-6 (>= 2:1.4.99.1); however:
Package libx11-6:ppc64el is not configured yet.
libgl1-mesa-glx:ppc64el depends on libxcb-dri2-0 (>= 1.8); however:
Package libxcb-dri2-0:ppc64el is not configured yet.
libgl1-mesa-glx:ppc64el depends on libxcb-dri3-0; however:
Package libxcb-dri3-0:ppc64el is not configured yet.
libgl1-mesa-glx:ppc64el depends on libxcb-glx0 (>= 1.8); however:
Package libxcb-glx0:ppc64el is not configured yet.
libgl1-mesa-glx:ppc64el depends on libxcb-present0; however:
Package libxcb-present0:ppc64el is not configured yet.
libgl1-mesa-glx:ppc64el depends on libxcb-sync1; however:
Package libxcb-sync1:ppc64el is not configured yet.
libgl1-mesa-glx:ppc64el depends on libxcb1 (>= 1.9.2); however:
Package libxcb1:ppc64el is not configured yet.

dpkg: error processing package libgl1-mesa-glx:ppc64el (--configure):
dependency problems - leaving unconfigured
Setting up libice-dev:ppc64el (2:1.0.9-2) ...
dpkg: dependency problems prevent configuration of libwayland-egl1-mesa:ppc64el:
libwayland-egl1-mesa:ppc64el depends on libegl1-mesa (= 13.0.6-1+b2); however:
Package libegl1-mesa:ppc64el is not configured yet.

dpkg: error processing package libwayland-egl1-mesa:ppc64el (--configure):
dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of libxcomposite1:ppc64el:
libxcomposite1:ppc64el depends on libx11-6 (>= 2:1.4.99.1); however:
Package libx11-6:ppc64el is not configured yet.

dpkg: error processing package libxcomposite1:ppc64el (--configure):
dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of default-java-plugin:
default-java-plugin depends on default-jre (= 2:1.8-58); however:
Package default-jre is not configured yet.
default-java-plugin depends on icedtea-8-plugin; however:
Package icedtea-8-plugin:ppc64el is not configured yet.

dpkg: error processing package default-java-plugin (--configure):
dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of libxcb-shm0:ppc64el:
libxcb-shm0:ppc64el depends on libxcb1 (>= 1.12); however:
Package libxcb1:ppc64el is not configured yet.

dpkg: error processing package libxcb-shm0:ppc64el (--configure):
dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of libxpm4:ppc64el:
libxpm4:ppc64el depends on libx11-6; however:
Package libx11-6:ppc64el is not configured yet.

dpkg: error processing package libxpm4:ppc64el (--configure):
dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of libxt6:ppc64el:
libxt6:ppc64el depends on libx11-6; however:
Package libx11-6:ppc64el is not configured yet.

dpkg: error processing package libxt6:ppc64el (--configure):
dependency problems - leaving unconfigured
dpkg: too many errors, stopping
Processing triggers for sgml-base (1.29) ...
Processing triggers for ca-certificates (20161130+nmu1) ...
Updating certificates in /etc/ssl/certs...
0 added, 0 removed; done.
Running hooks in /etc/ca-certificates/update.d...
done.
Errors were encountered while processing:
libogg0:ppc64el
libsndfile1:ppc64el
libc-bin
libvorbisenc2:ppc64el
libvorbis0a:ppc64el
libxau6:ppc64el
libflac8:ppc64el
libxau-dev:ppc64el
libpulse0:ppc64el
openjdk-8-jre:ppc64el
libxcb1-dev:ppc64el
libx11-dev:ppc64el
libxcb1:ppc64el
libegl1-mesa:ppc64el
libxcb-present0:ppc64el
libcairo2:ppc64el
libxcb-dri2-0:ppc64el
libxt-dev:ppc64el
libxcb-dri3-0:ppc64el
libxcb-glx0:ppc64el
libgtk2.0-0:ppc64el
libxcb-xfixes0:ppc64el
icedtea-netx:ppc64el
libxcb-render0:ppc64el
libgail18:ppc64el
librsvg2-2:ppc64el
icedtea-8-plugin:ppc64el
openjdk-8-jdk:ppc64el
default-jre
libcairo-gobject2:ppc64el
libx11-6:ppc64el
x11-utils
libgail-common:ppc64el
libpangocairo-1.0-0:ppc64el
libgtk-3-0:ppc64el
librsvg2-common:ppc64el
libxmuu1:ppc64el
libxtst6:ppc64el
libxmu6:ppc64el
libxcb-sync1:ppc64el
libgtk-3-bin
libxcursor1:ppc64el
libatk-wrapper-java-jni:ppc64el
libxxf86dga1:ppc64el
libgl1-mesa-glx:ppc64el
libwayland-egl1-mesa:ppc64el
libxcomposite1:ppc64el
default-java-plugin
libxcb-shm0:ppc64el
libxpm4:ppc64el
libxt6:ppc64el
Processing was halted because there were too many errors.
E: Sub-process /usr/bin/dpkg returned an error code (1)
root@dd3289325084:/#

I have a working ppc64le java mounted to the image, then this java cannot be executed with failure:

$docker run -it --rm --name ppc64le -v /Users/terryzuo/Development/dockerImage/maketest/sdk/xl6490:/java -v /Users/terryzuo/Development/dockerImage/qemu_lib_static/qemu-ppc64le-static:/usr/bin/qemu-ppc64le-static ppc64le/debian
root@dd3289325084:/# /java/bin/java -version
qemu: uncaught target signal 11 (Segmentation fault) - core dumped
Segmentation fault

Did I miss some thing to make the Java runnable in the ppc64le/debian image?

Add 'Full os' versions

In contrast to the -slim images, I'd like to contribute some kind of "Debian full OS" images including an init system and other packages usually installed with Debian's minimal installer. After some testing, I think just a small Dockerfile is required to achieve this feature.

However, actually I'm not sure if these images should belong into this repository (afaik the ubuntu images can run systemd out of the box), or a separate repository in the docker library should be the right way.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.