Ubuntu 16.04をインストールした場合の仕様は次のとおりです。
OS: Ubuntu 16.04 LTS x86_64
Kernel: 4.4.0-21-generic
Uptime: up 17 hours, 39 minutes
Packages: 3268
Shell: /usr/bin/fish
Resolution: 1366x768
Desktop Environment: XFCE
Window Manager: Xfwm4
Theme: Numix Solarized [GTK2], Arc-Dark-Solid [GTK3]
Icons: Numix-Circle [GTK2], Numix-Circle-Light [GTK3]
CPU: E1-2100 APU (2) @ 1.0GHz
GPU: AMD KabiniRadeon HD 8210
Memory: 1326MB / 3418MB
更新を行った後、再起動したとき、Ubuntu Software Centerはまだそこにあり、開いたときにクラッシュしました。したがって、アンインストールして再起動しましたが、gnome software centerはまだ存在していませんでした。だから私はSudo apt install gnome-software
を使用してインストールしようとしましたが、私が得たのはこれです:
Reading package lists... Done
Building dependency tree
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:
The following packages have unmet dependencies:
gnome-software : Depends: appstream but it is not installable
Depends: libgnome-desktop-3-12 (>= 3.17.92) but it is not installable
Depends: libgtk-3-0 (>= 3.18) but 3.16.7-0ubuntu3 is to be installed
E: Unable to correct problems, you have held broken packages.
お知らせ下さい!
ソフトウェアソースが設定されていないため、インストールに問題が発生しています。さらに問題がある可能性があるため、システムを再度インストールします。公式の最新のXubuntuイメージを使用していることを確認してください。
システムを修復したい場合は、たとえば https://repogen.simplylinux.ch/ を使用して新しいsources.listを作成できます。
新しい/etc/apt/sources.list
を保存した後、実行します
Sudo apt-get update
Sudo apt-get dist-upgrade
apt-get
は、いくつかのパッケージのアップグレードを提供するはずです。それを実行してから実行する
Sudo apt-get install xubuntu-desktop
デフォルトでXubuntuにインストールされているすべてのソフトウェアを取得します。
16.04 LTSへのアップグレードでも同じエラーが発生します。私はいくつかの方法を試しました:
Sudo apt-get install -f
ただし、一部のパッケージはインストールされません。
すべてのパッケージを再インストールして、アップグレードを修復しました。依存エラーが発生するため、インストールプロセスからlibgtk-3-*
パッケージを除外する必要があります。
Sudo apt-get --reinstall install $(dpkg-query -f '${binary:Package}\n' -W | grep -v "libgtk-3")