web-dev-qa-db-ja.com

紙のアイコンテーマをインストールできない[E:サブプロセス/ usr / bin / dpkgがエラーコード(1)を返しました] 18.04.3 XFCE

紙のアイコンテーマをインストールして、r/unixpornの投稿の後にxfce DEの見栄えを良くしようとしましたが、 this link の指示に従ってこれを返すと、dpkgがどのように機能し、何が機能するのか本当にわかりません間違っている可能性があります、すでに再起動、Paperフォルダーの削除、またはいくつかのコマンドに従ってdpkgがエラーコードを返しました(1)しかし、何もうまくいかなかったようです

ubuntu@RPi4:~$ Sudo apt install paper-icon-theme Reading package lists... Done Building dependency tree Reading state information... Done The following NEW packages will be installed: paper-icon-theme 0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded. Need to get 0 B/41.4 MB of archives. After this operation, 78.9 MB of additional disk space will be used. (Reading database ... 198269 files and directories currently installed.) Preparing to unpack .../paper-icon-theme_1.5.723-201905252133~daily~ubuntu18.04.1_all.deb ... Unpacking paper-icon-theme (1.5.723-201905252133~daily~ubuntu18.04.1) ... dpkg: error processing archive /var/cache/apt/archives/paper-icon-theme_1.5.723-201905252133~daily~ubuntu18.04.1_all.deb (--unpack): trying to overwrite '/usr/share/icons/Paper/cursor.theme', which is also in package paper-cursor-theme 1.4+r696~daily~ubuntu18.04.1 dpkg-deb: error: paste subprocess was killed by signal (Broken pipe) Errors were encountered while processing: /var/cache/apt/archives/paper-icon-theme_1.5.723-201905252133~daily~ubuntu18.04.1_all.deb E: Sub-process /usr/bin/dpkg returned an error code (1)このテーマを機能させるにはどうすればよいですか?

コマンド

apt-cacheポリシーpaper-cursor-theme paper-icon-theme

    ubuntu@RPi4:~$ apt-cache policy paper-cursor-theme paper-icon-theme
    paper-cursor-theme:
      Installed: 1.4+r696~daily~ubuntu18.04.1
      Candidate: 1.4+r696~daily~ubuntu18.04.1
      Version table:
     *** 1.4+r696~daily~ubuntu18.04.1 100
        100 /var/lib/dpkg/status
paper-icon-theme:
  Installed: (none)
  Candidate: 1.5.723-201905252133~daily~ubuntu18.04.1
  Version table:
     1.5.723-201905252133~daily~ubuntu18.04.1 500
        500 http://ppa.launchpad.net/snwh/ppa/ubuntu bionic/main arm64 Packages
1
Angelo Tognon

paper-cursor-themeパッケージとpaper-icon-themeパッケージが競合しているようです。

ppa:snwh/ppa PPA description には、カーソルとアイコンが提供されているという情報が含まれています。

このPPAには、snwh.org(Sam Hewittによる)のプロジェクトのパッケージが含まれています。
...
-紙のアイコンとカーソルのテーマ
...

したがって、競合を解決するには、次のようにしてpaper-cursor-themeパッケージを削除する必要があります。

Sudo apt-get remove paper-cursor-theme

次にpaper-icon-themeを次のようにインストールします:

Sudo apt-get install paper-icon-theme
2
N0rbert