• Recent
  • Tags
  • Unsolved
  • Solved
  • MagicMirror² Repository
  • Documentation
  • 3rd-Party-Modules
  • Donate
  • Discord
  • Register
  • Login
MagicMirror Forum
  • Recent
  • Tags
  • Unsolved
  • Solved
  • MagicMirror² Repository
  • Documentation
  • 3rd-Party-Modules
  • Donate
  • Discord
  • Register
  • Login
A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.

How to hide Splash screen on boot or edit Splash screen on boot?

Scheduled Pinned Locked Moved Unsolved Troubleshooting
12 Posts 7 Posters 11.3k Views 6 Watching
Loading More Posts
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • N Offline
    nobita
    last edited by Jan 31, 2017, 7:02 AM

    Becuase I would like to show other Text replace Splash screen on boot
    Thanks for help

    1 Reply Last reply Reply Quote 0
    • B Offline
      broberg Project Sponsor
      last edited by Jan 31, 2017, 8:01 AM

      First hit on google, h
      ttp://www.raspberry-projects.com/pi/pi-operating-systems/raspbian/custom-boot-up-screen

      Don’t know if it works on all PI’s however

      1 Reply Last reply Reply Quote 0
      • L Offline
        lolobyte
        last edited by yawns Jan 31, 2017, 9:11 AM Jan 31, 2017, 8:32 AM

        Hi, if you have installed the jessie plex version, you have to start

        sudo raspi-config

        At point 3 Boot Options it is possiblr to general disable or enable the splash screen on boot.

        If you have an normal jessie without plex the use a custom splash screen

        sudo apt-get install fbi

        Copy your custom splash image to /etc/ and name it splash.png.

        Next, create an init.d script called “asplashscreen” in “/etc/init.d/”.

        Create now this script with
        sudo nano /etc/init.d/asplashscreen

        #! /bin/sh
        ### BEGIN INIT INFO
        # Provides:          asplashscreen
        # Required-Start:
        # Required-Stop:
        # Should-Start:      
        # Default-Start:     S
        # Default-Stop:
        # Short-Description: Show custom splashscreen
        # Description:       Show custom splashscreen
        ### END INIT INFO
        
        
        do_start () {
        
            /usr/bin/fbi -T 1 -noverbose -a /etc/splash.png    
            exit 0
        }
        
        case "$1" in
          start|"")
            do_start
            ;;
          restart|reload|force-reload)
            echo "Error: argument '$1' not supported" >&2
            exit 3
            ;;
          stop)
            # No-op
            ;;
          status)
            exit 0
            ;;
          *)
            echo "Usage: asplashscreen [start|stop]" >&2
            exit 3
            ;;
        esac
        
        :
        

        Then make that script executable and install it for init:

        sudo chmod a+x /etc/init.d/asplashscreen
        sudo insserv /etc/init.d/asplashscreen
        

        Reboot and watch your custom splash screen:

        sudo reboot

        If you want to hide most of the Boot text then follow this step:

        sudo nano /boot/cmdline.txt

        may look something like this:

        tty3: starts with console 3 to hide the boot messages!
        
        dwc_otg.lpm_enable=0 console=ttyAMA0,115200 console=tty3 loglevel=3 logo.nologo root=/dev/mmcblk0p2 rootfstype=ext4 elevator=deadline fsck.repair=yes rootwait
        

        good luck

        Mod-Edit: Please use markdown, otherwise this becomes totally unreadable.

        N 1 Reply Last reply Jan 31, 2017, 8:37 AM Reply Quote 1
        • N Offline
          nobita @lolobyte
          last edited by Jan 31, 2017, 8:37 AM

          @lolobyte Thanks your help,I will try later

          1 Reply Last reply Reply Quote 0
          • L Offline
            lolobyte
            last edited by Jan 31, 2017, 8:14 PM

            Sorry, don’ know who has written this…

            Mod-Edit: Please use markdown, otherwise this becomes totally unreadable.

            Probably a Moderator.

            What please is “markdown” and how to use it?

            B 1 Reply Last reply Jan 31, 2017, 8:19 PM Reply Quote 0
            • B Offline
              broberg Project Sponsor @lolobyte
              last edited by Jan 31, 2017, 8:19 PM

              @lolobyte
              Here is a documentation of markdown :
              http://commonmark.org/help/

              1 Reply Last reply Reply Quote 1
              • S Offline
                schlachtkreuzer6
                last edited by Feb 2, 2017, 7:41 AM

                The the easiest way to change the splash screen is changing the picture ;) https://pi280.wordpress.com/2016/10/17/about-that-pixel-splash-screen/

                N 1 Reply Last reply Feb 2, 2017, 8:07 AM Reply Quote 0
                • N Offline
                  nobita @schlachtkreuzer6
                  last edited by Feb 2, 2017, 8:07 AM

                  @schlachtkreuzer6 I mean Splash screen on boot like this0_1486022813410_S__4210701.jpg

                  Y S 2 Replies Last reply Feb 2, 2017, 9:15 AM Reply Quote 2
                  • Y Offline
                    yawns Moderator @nobita
                    last edited by Feb 2, 2017, 9:15 AM

                    @nobita
                    I did not check, so this is all theory.
                    The splashscreen is using plymouth, so you should be able to change it the “common way”:

                    http://www.bodhilinux.com/w/changing-plymouth-bootsplash/

                    1 Reply Last reply Reply Quote 0
                    • S Offline
                      schlachtkreuzer6 @nobita
                      last edited by Feb 3, 2017, 10:43 AM

                      @nobita yeah just change that image to another image (in the standard plymoth directory) and you are fine. i did that like this, before MM v2.1 with the splash screen was released, because that wohle plymouth stuff did not work for me. and there just few comandlines and worked perfectly!

                      B 1 Reply Last reply Dec 24, 2019, 7:33 PM Reply Quote 0
                      • 1
                      • 2
                      • 1 / 2
                      1 / 2
                      • First post
                        1/12
                        Last post
                      Enjoying MagicMirror? Please consider a donation!
                      MagicMirror created by Michael Teeuw.
                      Forum managed by Sam, technical setup by Karsten.
                      This forum is using NodeBB as its core | Contributors
                      Contact | Privacy Policy