web-dev-qa-db-ja.com

Ubuntuの起動時にコマンドのエコーを停止する

ubuntuの起動時にコマンドのエコーを停止するにはどうすればよいですか?

私が話していることのイメージ:

enter image description here

Ubuntuデスクトップは通常、起動時にスプラッシュスクリーンを表示しますが、何らかの理由(またはインストールの問題)で、私のPCではテキストモードでメッセージの詳細なリストが表示されます。

ubuntuを再インストールせずにこれを修正できますか?


今、問題の原因はこれだと確信しています:

  • Windowsをインストールし、ブートローダーがデュアルブートなしで変更されたため、Puppy Linux Live CD(FAST AN EASY SOLUTION)を使用して新しいGRUBファイルを作成しました。ここで述べている問題を除いて、ほとんどすべて問題ありません。それを修正する方法についてのアイデアはありますか?
  • Grubファイル(Puppy Linuxが作成):

    # menu.lst produced by grub4dosconfig-v1.9.2
    color white/green yellow/blue white/black green/black
    #splashimage=/splash.xpm
    timeout 10
    default 0
    
    # Full installed Linux
    
    title Ubuntu
      uuid 4a0cefa3-46a8-4143-8fbd-1872c641c9a4
      kernel /vmlinuz root=/dev/sda5 ro
      initrd /initrd.img
    
    # Windows
    # this entry searches Windows on the HDD and boot it up
    title Windows\nBoot up Windows if installed
      errorcheck off
      find --set-root --ignore-floppies --ignore-cd  /bootmgr
      chainloader /bootmgr
      find --set-root --ignore-floppies --ignore-cd  /ntldr
      chainloader /ntldr
      find --set-root --ignore-floppies --ignore-cd   /io.sys
      chainloader /io.sys
      errorcheck on
    
    # Advanced Menu
    title Advanced menu
      configfile /menu-advanced.lst
      commandline
    
3
Shirley Temple

現時点では、Puppy Linuxのgrub4dosを使用して起動しています

Ubuntuのgrubを再インストールする必要があります。

Sudo grub-install /dev/sda  #if booting in legacy mode

または

Sudo install-grub  #if booting in EFI mode

それから

Sudo update-grub
2
ravery