web-dev-qa-db-ja.com

ubuntu-touch:libertineコンテナーで構成されていないパッケージ

状況

Libertineコンテナーにいくつかのプログラムをインストールしました。一部はlibertineコマンドを介して、一部はコンテナーに入った後の 'apt get'によってインストールしました。

それらの多くが適切に構成されていないか、依存関係が構成されていないようです。

症状

これは、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

ここに完全な出力: https://paste.ubuntu.com/17474260/

出力が常に重要かどうかはわかりません。 Xournalは正しくインストールされていないというフラグが立てられていますが、機能します。

質問

誰かこれに光を当てることができますか?修正できるものですか?

2
Jack

これは、ターミナルアプリからLibertineコンテナーをセットアップしようとすると繰り返し発生する問題であり、ターミナルアプリの制限が原因で発生します。

完全に制限されていないsshまたはadb Shellセッションを使用して再試行してください。

この問題のより長期的な解決策は開発中ですが、OTA-13より前に提供される可能性は低いです。

2
Stephen M. Webb