web-dev-qa-db-ja.com

kde-ブートアニメーションを変更する方法

私もこれらのコマンドを試してみました:

update-alternatives --display default.plymouth
Sudo update-alternatives --config default.plymouth
Sudo update-initramfs -u

そしてこれら:

Sudo rm /etc/alternatives/default.plymouth
Sudo ln -s /lib/plymouth/themes/ubuntu-logo/ubuntu-logo.plymouth /etc/alternatives/default.plymouth

また、次のコマンドを含むスクリプトを使用した素晴らしいブートアニメーション(Earth-sunrise link http://www.istitutomajorana.it/scarica2/Animazione-Plus8.tar.gz )を見つけました。

Sudo cp -R ~/Animazione-Plus8/Earth-sunrise/ /lib/plymouth/themes/
Sudo update-alternatives --install /lib/plymouth/themes/default.plymouth default.plymouth /lib/plymouth/themes/Earth-sunrise/Earth-sunrise.plymouth 100
Sudo update-alternatives --config default.plymouth
Sudo update-initramfs -u

デフォルトのkubuntuロゴは変更されなかったので、これですべての代替を削除しました。

Sudo update-alternatives --remove-all default.plymouth
Sudo update-initramfs -u

しかし、私はまだ同じロゴを持っています。これはkdeの状況だと思います。それで、私が手に入れたもの(Earth-sunrise.plymouth)でブートアニメーションを変更するにはどうすればよいですか?

edit:ubuntuブート中は実際には動作せず、仮想ブートアニメーションのみが動作します:/すべての手順を実行しましたが、ブートでは何も変更されていませんアニメーション。

多分私の問題は、私が持っているATIドライバーにあるのか、grub設定にあるのかわかりません。 grubの正しい構成は何ですか?また、ディストリビューションにgrubカスタマイザーがインストールされているため、何かを変更する必要があります。これが役立つ場合、これは私の/ etc/default/grubです: http://paste.ubuntu.com/1587147/

現在、ブートアニメーションはありません。テキストのある黒い画面しかありません。

edit2:Ok私は自分の問題を見つけました。それは私のgpu(msi 6870 Hawk)と独自のATIドライバーに関するものです。 12.8(プリマスアニメーションが機能していなかった場合でも)ドライバーを更新したかったため、開いているドライバーを使用していたときにブート時にアニメーションが最終的に表示されましたが、問題はATIドライバーが必要であり、新しい13.1と事実、今ではプリモスアニメーションは機能しません。だから私はそれが何であるかを見つけたので、問題を解決する方法はありますか?ありがとう

3
Frank
  1. Earth-sunrise theme をダウンロードします。

  2. 開梱

  3. Earth-sunriseフォルダーを/lib/plymouth/themes/Earth-sunrise. Noteにコピーします。 Ubuntu 16.04以降は/usr/share/plymouth/themes/を使用しています。詳細: buntu 16.04LTSではカスタムスプラッシュスクリーンを使用できません

  4. distro_logo.pngdistro_name.pngを変更します

    enter image description here

  5. 地球と日の出のテーマをプリマスの「代替案」に追加します。

    Sudo update-alternatives --install /lib/plymouth/themes/default.plymouth \
    default.plymouth /lib/plymouth/themes/Earth-sunrise/Earth-sunrise.plymouth 50
    
  6. Earth-sunriseテーマをデフォルトとして設定します

    Sudo update-alternatives --config default.plymouth
    
    There are 3 choices for the alternative default.plymouth
    (providing /lib/plymouth/themes/default.plymouth).
    
      Selection    Path                                                       Priority   Status
    ------------------------------------------------------------
      0            /lib/plymouth/themes/kubuntu-logo/kubuntu-logo.plymouth     150       auto mode
      1            /lib/plymouth/themes/Earth-sunrise/Earth-sunrise.plymouth   50        manual mode
      2            /lib/plymouth/themes/kubuntu-logo/kubuntu-logo.plymouth     150       manual mode
    * 3            /lib/plymouth/themes/my-plymouth/my-plymouth.plymouth       50        manual mode
    
    Press enter to keep the current choice[*], or type selection number: 1
    update-alternatives: using /lib/plymouth/themes/Earth-sunrise/Earth-sunrise.plymouth to provide /lib/plymouth/themes/default.plymouth (default.plymouth) in manual mode.
    
  7. Initramfsを更新します

    Sudo update-initramfs -u
    
  8. テーマをテストします(install plymouth-x11Install plymouth-x11

    • コンソール#1

      Sudo plymouthd --debug --tty=`tty` --no-daemon
      
    • コンソール#2

      Sudo plymouth show-splash
      

    2つの(不正な形式の)テストコンソルがあります。

    enter image description here

    次のコマンドを使用してテストを停止します。

    Sudo plymouth --quit
    
  9. リブート

    enter image description here

ここで働くようです。

参照資料

13
user26687

参考までに、スクリプトは次のように変更する必要があります(16.04の場合)。

Sudo cp -R Earth-sunrise/ /usr/share/plymouth/themes/
Sudo update-alternatives --install /usr/share/plymouth/themes/default.plymouth default.plymouth /usr/share/plymouth/themes/Earth-sunrise/Earth-sunrise.plymouth 100
Sudo update-alternatives --config default.plymouth  #here, choose the number of the theme you want to use then hit enter
Sudo update-initramfs -u

ここのフォーラムに基づいて: buntu 16.04LTSでカスタムスプラッシュスクリーンを使用できません

3
Shaun Ripley

この行を/ etc/default/grubに追加することにより、ATIドライバーとプリマスの問題を解決しました

Sudo gedit /etc/default/grub

次の行を追加します。

GRUB_CMDLINE_LINUX_DEFAULT="quiet splash nomodeset video=uvesafb:mode_option=1280x1024-24, mtrr=3, scroll=ywrap"

私にとって解像度「1280x1024-24」は大丈夫です、他のものを試すことができます。

0
Frank