Raspberry Piでパッケージをインストール/更新するときに権限拒否エラーが発生しました。

Raspberry Piでパッケージをインストール/更新するときに権限拒否エラーが発生しました。

パッケージに関するエラーメッセージを受け取り、管理者権限で推奨コマンドを実行しました。

$ sudo apt-get -f install
Preparing to unpack .../libgdk-pixbuf2.0-common_2.31.1-2+deb8u7_all.deb ...
Unpacking libgdk-pixbuf2.0-common (2.31.1-2+deb8u7) over (2.31.1-2+deb8u6) ...
dpkg: error processing archive /var/cache/apt/archives/libgdk-pixbuf2.0-common_2.31.1-2+deb8u7_all.deb (--unpack):
unable to create `/usr/share/locale/xh/LC_MESSAGES/gdk-pixbuf.mo.dpkg-new' (while processing `./usr/share/locale/xh/LC_MESSAGES/gdk-pixbuf.mo'): Operation not permitted
Errors were encountered while processing:
 /var/cache/apt/archives/libgdk-pixbuf2.0-common_2.31.1-2+deb8u7_all.deb

rootユーザーの権限が拒否されるのはなぜですか?この問題をどのように解決できますか?よろしくお願いします。

$ apt-cache policy libgdk-pixbuf2.0-common
libgdk-pixbuf2.0-common:
Installed: 2.31.1-2+deb8u6
Candidate: 2.31.1-2+deb8u7
Version table:
 2.31.1-2+deb8u7 0
500 http://mirrordirector.raspbian.org/raspbian/ jessie/main armhf Packages
 *** 2.31.1-2+deb8u6 0
100 /var/lib/dpkg/status

Raspberry Pi 2で試してみてください。

$ apt-get autoremove
Reading package lists... Done
Building dependency tree
Reading state information... Done
You might want to run 'apt-get -f install' to correct these.
The following packages have unmet dependencies:
libgdk-pixbuf2.0-0 : Depends: libgdk-pixbuf2.0-common (= 2.31.1-2+deb8u7) but 2.31.1-2+deb8u6 is installed
E: Unmet dependencies. Try using -f.

eファイルのプロパティを表示するときにプロパティを設定するとlsattr問題が発生しますか?

また、ファイルを手動で移動することはできません。

$ sudo mv gdk-pixbuf.mo gdk-pixbuf.mo.old
mv: cannot move ‘gdk-pixbuf.mo’ to ‘gdk-pixbuf.mo.old’: Operation not permitted`

$ ls -lh
-rw-r--r-- 1 root       root      17K Sep 15 17:07 gdk-pixbuf.mo

$ getfacl gdk-pixbuf.mo
# file: gdk-pixbuf.mo
# owner: root
# group: root
user::rw-
group::r--
other::r--

$ getfacl LC_MESSAGES
# file: LC_MESSAGES/
# owner: root
# group: root
user::rwx
group::r-x
other::r-x

答え1

パッケージをきれいにしてみてください。

sudo apt-get autoremove

その後、再実行してください。

sudo apt-get -f install

また、ディレクトリはパッケージの一部であるように見えるlanguage-pack-gnome-xh-baseので、apt-getとしてインストールすることもできます。

関連情報