web-dev-qa-db-ja.com

ターミナルを使用してフラットリミックスgnomeテーマをインストールした後のエラー

私はUbuntuの初心者で、フラットリミックスgnomeテーマを試すことにしましたが、次のようなターミナルコマンドを使用しているときに非常に大きな問題に直面しました。

Sudo add-apt-repository ppa:daniruiz/flat-remix
Sudo apt-get update
Sudo apt-get install flat-remix-gnome

しかし、3番目のコマンドで問題なく最初の2つを適用した後、パッケージをインストールしようとするたびにこれらのコードに直面し始めます。

Unpacking Android-sdk-platform-tools-common (27.0.0+10~18.04.2) ...
Setting up Android-liblog (1:8.1.0+r23-5~18.04) ...
Setting up flat-remix-gnome (20191117) ...
/var/lib/dpkg/info/flat-remix-gnome.postinst: 4: /var/lib/dpkg/info/flat-remix-gnome.postinst: make: not found
dpkg: error processing package flat-remix-gnome (--configure):
 installed flat-remix-gnome package post-installation script subprocess returned error exit status 127
Setting up Android-libboringssl (8.1.0+r23-2~18.04) ...
Setting up Android-sdk-platform-tools-common (27.0.0+10~18.04.2) ...
Setting up Android-libcrypto-utils (1:8.1.0+r23-5~18.04) ...
Setting up Android-libbase (1:8.1.0+r23-5~18.04) ...
Setting up Android-libcutils (1:8.1.0+r23-5~18.04) ...
Setting up Android-libadb (1:8.1.0+r23-5~18.04) ...
Setting up adb (1:8.1.0+r23-5~18.04) ...
Processing triggers for man-db (2.8.3-2ubuntu0.1) ...
Processing triggers for libc-bin (2.27-3ubuntu1) ...
Errors were encountered while processing:
 flat-remix-gnome
E: Sub-process /usr/bin/dpkg returned an error code (1)

そして、パッケージを削除しようとしましたが、同じエラーが発生し、パッケージを再インストールしようとしましたが、これは表示されます>>>

moutasim@moutasim-Aspire-A515-51G:~$ Sudo apt-get install flat-remix-gnome
[Sudo] password for moutasim: 
Reading package lists... Done
Building dependency tree       
Reading state information... Done
flat-remix-gnome is already the newest version (20191117).
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
1 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 flat-remix-gnome (20191117) ...
/var/lib/dpkg/info/flat-remix-gnome.postinst: 4: /var/lib/dpkg/info/flat-remix-gnome.postinst: make: not found
dpkg: error processing package flat-remix-gnome (--configure):
 installed flat-remix-gnome package post-installation script subprocess returned error exit status 127
Errors were encountered while processing:
 flat-remix-gnome
E: Sub-process /usr/bin/dpkg returned an error code (1)

みんなが原因になるのを助けてくださいこれは2回目のUbuntuの再インストールです助けてください

1
moutasim omran

私はこの問題を解決しました

ファイル/var/lib/dpkg/info/flat-remix-gnome.postinstにはコマンドmakeがあり、パッケージがインストールされていません:make: not found

Ubuntuをリカバリモードで起動し、makeパッケージをインストールしました。再起動後、この問題は解決されました

1
Espadaro