web-dev-qa-db-ja.com

Ubuntu GNOMEにKDEをインストールする方法は?

UbuntuにKDEをインストールしたいのですが、KDEのみを使用してGNOMEを削除します。データをコンピューターに保存したい。私は何をすべきか?

実行すると:sudo apt-get install kubuntu-desktopターミナルにこのエラーが表示されます:パッケージリストの読み取り中...完了依存関係ツリーの構築
状態情報を読み込んでいます...完了一部のパッケージをインストールできませんでした。これは、不可能な状況をリクエストしたか、不安定なディストリビューションを使用している場合、必要なパッケージがまだ作成されていないか、着信から移動されていないことを意味します。次の情報は、状況の解決に役立つ場合があります。

The following packages have unmet dependencies:
kubuntu-desktop : Depends: dolphin but it is not going to be installed
               Depends: kinfocenter but it is not going to be installed
               Depends: kwin
               Depends: okular but it is not going to be installed
               Depends: plasma-desktop but it is not going to be installed
               Depends: powerdevil but it is not going to be installed
               Depends: sddm-theme-breeze but it is not going to be installed
               Depends: software-properties-kde but it is not going to be installed
               Recommends: amarok but it is not going to be installed
               Recommends: apturl-kde but it is not going to be installed
               Recommends: baloo-utils but it is not going to be installed
               Recommends: cryptsetup but it is not installable
               Recommends: k3b but it is not going to be installed
               Recommends: kate but it is not going to be installed
               Recommends: kde-telepathy but it is not going to be installed
               Recommends: kdeconnect-plasma but it is not going to be installed
               Recommends: krdc but it is not going to be installed
               Recommends: ktorrent but it is not going to be installed
               Recommends: kwin-addons but it is not going to be installed
               Recommends: libreoffice-base but it is not installable
               Recommends: libreoffice-kde but it is not going to be installed
               Recommends: libreoffice-style-oxygen but it is not going to be installed
               Recommends: plasma-discover but it is not going to be installed
               Recommends: plasma-discover-updater but it is not going to be installed
               Recommends: plasma-nm but it is not going to be installed
               Recommends: plasma-widgets-addons but it is not going to be installed
               Recommends: qtdeclarative5-xmllistmodel-plugin but it is not going to be installed
               Recommends: skanlite but it is not going to be installed
E: Unable to correct problems, you have held broken packages.
2
Vilfe

Gnomeを完全に削除し、代わりにKDEを使用する場合は、 purebuntu script を使用できます

  1. このGitHubリポジトリ からpurebuntu.pyファイルをダウンロードします。

    wget https://raw.githubusercontent.com/aysiu/purebuntu/master/purebuntu.py
    
  2. ターミナルコマンドを使用してapt-rdependsパッケージをインストールします

    Sudo apt-get update && Sudo apt-get install apt-rdepends
    
  3. purebuntu.pyスクリプトを実行して、ubuntu-gnome-desktopを削除してインストールkubuntu-desktopを保持することを伝えます

    python purebuntu.py --remove ubuntu-gnome-desktop --keep kubuntu-desktop > apt-command
    

    これは、apt-getという名前のファイルに長いapt-commandコマンドを生成して出力します。

  4. apt-commandファイルを開き、生成されたコマンドをコピーします。次に、ターミナルにコマンドを貼り付けて、ヒット Enter

これにより、ubuntu-gnome-desktopのパッケージが削除され、kubuntu-desktopがインストールされます。 注意してください、システムは初期のKubuntu状態になる可能性があります。再度インストールした追加パッケージをインストールする必要がある場合があります。

1
Anwar