web-dev-qa-db-ja.com

Kubuntu 18.04からUbuntu 18.04に切り替えるにはどうすればよいですか?

Kubuntuを使用していますが、Ubuntuデスクトップをインストールして使用したいのですが、どういうわけかインストールできません。誰も私を助けることができますか?

私はこのコマンドを試しました:

Sudo apt install ubuntu-desktop

出力は次のとおりです。

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:
 ubuntu-desktop : Depends: gdm3 but it is not going to be installed
                  Recommends: ibus
                  Recommends: ibus-table but it is not going to be installed
                  Recommends: shotwell but it is not going to be installed
E: Unable to correct problems, you have held broken packages.

apt update
All packages are up to date.

apt upgrade 
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.

apt-cache policy ubuntu-desktop gdm3 ibus ibus-table shotwell
ubuntu-desktop:
  Installed: (none)
  Candidate: 1.417
  Version table:
     1.417 500
        500 http://archive.ubuntu.com/ubuntu bionic/main AMD64 Packages
gdm3:
  Installed: (none)
  Candidate: 3.28.0-0ubuntu1
  Version table:
     3.28.0-0ubuntu1 500
        500 http://archive.ubuntu.com/ubuntu bionic/main AMD64 Packages
ibus:
  Installed: (none)
  Candidate: 1.5.17-3ubuntu4
  Version table:
     1.5.17-3ubuntu4 500
        500 http://archive.ubuntu.com/ubuntu bionic/main AMD64 Packages
ibus-table:
  Installed: (none)
  Candidate: 1.9.14-3
  Version table:
     1.9.14-3 500
        500 http://archive.ubuntu.com/ubuntu bionic/main AMD64 Packages
        500 http://archive.ubuntu.com/ubuntu bionic/main i386 Packages
shotwell:
  Installed: (none)
  Candidate: 0.28.2-0ubuntu1
  Version table:
     0.28.2-0ubuntu1 500
        500 http://archive.ubuntu.com/ubuntu bionic/main AMD64 Packages
2
Habib Aktaş

提供された情報に基づくと、aptは競合するパッケージを検出しているため、インストールの続行を拒否しているようです。

思い浮かぶ主な可能性は次のとおりです。

  • PPAまたは非標準のリポジトリがインストールされています。その場合、それらを削除します。

  • 手動でダウンロードおよびインストールされたdebファイルがあります。その場合、それらを削除します。

  • 推奨パッケージは依存関係として扱われています。その場合、設定をオフにします。 (最も簡単な方法は、synapticまたはおそらくsoftware-properties-kde内からです。)

さらなる推奨事項:

  • aptitudeaptまたはapt-getの代わりに)を使用します。これには、インストールを続行できる潜在的なソリューションを提案する組み込みの依存関係リゾルバーが含まれているためです。

  • 異なるデスクトップ環境を試したいだけの場合は、まずライブディスクを試して、現在のシステムが不安定になるのを避けてください。次に、それらが気に入ったら、xfce4ではなく、関連するパッケージ(gnomeubuntu-desktopなど)のみをインストールします。

1
xiota

リポジトリ設定を確認します-Software&Updates(またはsoftware-properties-gtk/software-properties-kde)を開きます。

次のようになります-

Ubuntu Software tab

Updates

持っている違いを修正し、パッケージリストの再読み込みを確認します。
次に、次を使用してUbuntuデスクトップのインストールを再試行します。

Sudo apt install ubuntu-desktop
0
N0rbert