web-dev-qa-db-fra.com

ubuntu-touch: paquets non configurés dans des conteneurs libertins

Situation

J'ai installé un certain nombre de programmes dans un conteneur libertin - certains via la commande libertine, et certains par "apt get" après être entré dans le conteneur.

Il semble que beaucoup d'entre eux ne soient pas correctement configurés - ou que les dépendances ne soient pas configurées.

Symptômes

Voici ce que je vois si j'essaie d'installer quelque chose dans le conteneur avec apt-get:

After this operation, 0 B of additional disk space will be used.
Setting up x11-common (1:7.7+7ubuntu4) ...
open: No such file or directory
dpkg: error processing package x11-common (--configure):
 subprocess installed post-installation script returned error exit status 1
dpkg: dependency problems prevent configuration of libice6:armhf:
 libice6:armhf depends on x11-common; however:
  Package x11-common is not configured yet.

dpkg: error processing package libice6:armhf (--configure):
 dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of libsm6:armhf:
 libsm6:armhf depends on libice6 (>= 1:1.0.0); however:
  Package libice6:armhf is not configured yet.

dpkg: error processing package libsm6:armhf (--configure):
 dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of libxt6:armhf:
 libxt6:armhf depends on libice6 (>= 1:1.0.0); however:
  Package libice6:armhf is not configured yet.
 libxt6:armhf depends on libsm6; however:
  Package libsm6:armhf is not configured yet.

dpkg: error processing package libxt6:armhf (--configure):
 dependency problems - leaving unconfigured
Setting up isc-dhcp-client (4.3.1-5ubuntu2.3) ...
mktemp: failed to create file via template ‘/run/user/32011/confined/com.ubuntu.terminal/tmp.XXXXXXXXXX’: No such file or directory
dpkg: error processing package isc-dhcp-client (--configure):
 subprocess installed post-installation script returned error exit status 1
Setting up ca-certificates (20141019ubuntu0.15.04.1) ...
Setting up dictionaries-common (1.23.17) ...
dpkg: dependency problems prevent configuration of ghostscript-x:
 ghostscript-x depends on libxt6; however:
  Package libxt6:armhf is not configured yet.

dpkg: error processing package ghostscript-x (--configure):
 dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of transfig:
 transfig depends on x11-common; however:
  Package x11-common is not configured yet.

dpkg: error processing package transfig (--configure):
 dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of xournal:
 xournal depends on ghostscript-x; however:
  Package ghostscript-x is not configured yet.

dpkg: error processing package xournal (--configure):
 dependency problems - leaving unconfigured
Processing triggers for ca-certificates (20141019ubuntu0.15.04.1) ...
mktemp: failed to create file via template ‘/run/user/32011/confined/com.ubuntu.terminal/ca-certificates.crt.tmp.XXXXXX’: No such file or directory
dpkg: error processing package ca-certificates (--configure):
 subprocess installed post-installation script returned error exit status 1
Processing triggers for dictionaries-common (1.23.17) ...
mktemp: failed to create directory via template ‘/run/user/32011/confined/com.ubuntu.terminal/ispell-auto.XXXXXXXXXX’: No such file or directory
ispell-autobuildhash: Cannot make temporary directory under "/run/user/32011/confined/com.ubuntu.terminal". Aborting ...
update-default-ispell: Error running ispell-autobuildhash
dpkg: error processing package dictionaries-common (--configure):
 subprocess installed post-installation script returned error exit status 25
Errors were encountered while processing:
 x11-common
 libice6:armhf
 libsm6:armhf
 libxt6:armhf
 isc-dhcp-client
 ghostscript-x
 transfig
 xournal
 ca-certificates
 dictionaries-common

sortie complète ici: https://paste.ubuntu.com/17474260/

Je ne sais pas si la sortie est toujours importante. Xournal est signalé comme n'étant pas installé correctement mais cela fonctionne.

Question

Quelqu'un pourrait-il nous éclairer là-dessus? Est-ce quelque chose qui peut être corrigé?

2
Jack

Il s'agit d'un problème récurrent si vous essayez de configurer un conteneur Libertine à partir de l'application Terminal et causé par le confinement de l'application Terminal.

Veuillez réessayer en utilisant un ssh ou adb Shell session, qui n'est pas entièrement confinée.

Une meilleure solution à long terme pour ce problème est en cours d'élaboration, mais il est peu probable qu'elle soit fournie avant l'OTA-13.

2
Stephen M. Webb