RetroPie forum home
    • Recent
    • Tags
    • Popular
    • Home
    • Docs
    • Register
    • Login
    Please do not post a support request without first reading and following the advice in https://retropie.org.uk/forum/topic/3/read-this-first

    Remove auto login text at boot

    Scheduled Pinned Locked Moved Help and Support
    35 Posts 13 Posters 32.7k Views
    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.
    • M
      mancity
      last edited by

      So... I moved the Pi 3 downstairs last night to use in the front room, and since then, the automatic login hasn't appeared. The ONLY difference is there now isn't a keyboard attached.

      Surely that not it?

      PS - On the Pi B+, still happens.

      1 Reply Last reply Reply Quote 0
      • RiverstormR
        Riverstorm
        last edited by

        How long does the output "linger"? Is it seconds or just a flash? I don't have any more thoughts as for me it was literally a few seconds to tweak and it worked perfectly according to the Wiki. Maybe you could paste the contents of your cmdline.txt exactly as it appears.

        It may sound overly simplified but it seems you must be doing something different as no one else has come forward with the same issue. Is it possible you're doing some step that you're certain wouldn't be the issue is possibly the culprit. I've done that a few times and had a eureka moment. You might have to scrutinize every change you're making. The answer has to be there.

        1 Reply Last reply Reply Quote 0
        • M
          mancity
          last edited by

          Well when it shows, it lingers for about 2 seconds, but using my Pi 3, I think the issue is solved .

          RiverstormR 1 Reply Last reply Reply Quote 0
          • RiverstormR
            Riverstorm @mancity
            last edited by

            @mancity said in Remove auto login text at boot:

            Well when it shows, it lingers for about 2 seconds, but using my Pi 3, I think the issue is solved .

            Ok, great, so the Pi 3 is working properly it's just the B+ then that was giving you issues?

            1 Reply Last reply Reply Quote 0
            • frgnF
              frgn @mancity
              last edited by

              @mancity For me, this question also remained topical, and I have found a solution.
              you need to open raspi-config, choose "boot option", select the second item "wait for network at boot", and click "No".
              thus, there is no more text.

              Aloha from Russia, and sorry for my bad English. ¯\(ツ)/¯
              My RetroPie themes repo - https://github.com/free-gen/
              Blast16 to MDMINI mod
              DONATE HERE

              1 Reply Last reply Reply Quote 0
              • L
                LinuxArcadeGuy
                last edited by LinuxArcadeGuy

                CHANGES MAY BE NEEDED FOR STRETCH (Rpie 4.4)

                https://retropie.org.uk/forum/topic/16732/silence-and-appliance-ify-your-retropie-installation-i-e-make-it-startup-and-shutdown-like-a-console-updated-for-rpie-v4-4-stretch

                T blonqeB 2 Replies Last reply Reply Quote 2
                • T
                  tanakarena @LinuxArcadeGuy
                  last edited by tanakarena

                  @linuxarcadeguy I am the same.OTL
                  Did you solve that?

                  L 1 Reply Last reply Reply Quote 0
                  • L
                    LinuxArcadeGuy @tanakarena
                    last edited by

                    @tanakarena solved! look up

                    1 Reply Last reply Reply Quote 0
                    • D
                      dudumaroja
                      last edited by

                      @LinuxArcadeGuy thanks very much, your comment fixed my issues.. that autologin text was painfull the the console feel i was looking for

                      1 Reply Last reply Reply Quote 1
                      • blonqeB
                        blonqe @LinuxArcadeGuy
                        last edited by

                        @linuxarcadeguy

                        Thanks for the instructions, however I'm still getting two lines of data.

                        The first saying the last time I logged in like time and date then tyy1 at the end

                        The second saying Linux retropie with the build which is December 22nd

                        Any ideas?

                        Cheers

                        herb_fargusH 1 Reply Last reply Reply Quote 0
                        • herb_fargusH
                          herb_fargus administrators @blonqe
                          last edited by

                          @blonqe

                          touch ~/.hushlogin

                          If you read the documentation it will answer 99% of your questions: https://retropie.org.uk/docs/

                          Also if you want a solution to your problems read this first: https://retropie.org.uk/forum/topic/3/read-this-first

                          1 Reply Last reply Reply Quote 0
                          • N
                            namannik
                            last edited by namannik

                            Running this script has made the boot completely silent for me.

                            #!/bin/sh
                            
                            # Remove boot logging and images.
                            # (Thanks to http://www.mlabviet.com/2017/10/hide-boot-message-on-rpi3-jessy.html)
                            
                            CMD_LINE="dwc_otg.lpm_enable=0 console=tty3 root=/dev/mmcblk0p2 rootfstype=ext4 elevator=deadline fsck.repair=yes rootwait quiet splash logo.nologo plymouth.ignore-serial-consoles disable_splash=1 vt.cur_default=1 vt.global_cursor_default=0 plymouth.enable=0"
                            echo $CMD_LINE | sudo tee /boot/cmdline.txt > /dev/null
                            
                            sudo mv /usr/share/plymouth/themes/pix/splash.png /usr/share/plymouth/themes/pix/splash_disabled.png
                            
                            # Remove various messages shown at login:
                            
                            echo "" | sudo tee /etc/issue > /dev/null
                            echo "" | sudo tee /etc/issue.net > /dev/null
                            sudo sed -i "/pam_lastlog.so/d" /etc/pam.d/login
                            sudo sed -i "/pam_motd.so/d" /etc/pam.d/login
                            sudo sed -i "/pam_mail.so/d" /etc/pam.d/login
                            
                            # Remove the pesky "raspberrypi login: pi (automatic login)" text.  Thanks @LinuxArcadeGuy!
                            
                            sudo sed /etc/systemd/system/autologin@.service -i -e "s#^ExecStart=-/sbin/agetty --autologin [^[:space:]]*#ExecStart=-/sbin/agetty --skip-login --noclear --noissue --login-options \"-f pi\" %I $TERM#"
                            
                            L 1 Reply Last reply Reply Quote 1
                            • L
                              LinuxArcadeGuy @namannik
                              last edited by LinuxArcadeGuy

                              @namannik check my updated post, Stretch is quite different and requires some alterations, as there have been depreciations...

                              https://retropie.org.uk/forum/topic/16732/silence-and-appliance-ify-your-retropie-installation-i-e-make-it-startup-and-shutdown-like-a-console-updated-for-rpie-v4-4-stretch

                              using this line: ExecStart=-/sbin/agetty --skip-login --noclear --noissue --login-options "-f pi" %I $TERM

                              the --skip-login and --login-options "-f pi" had to be removed as it would get stuck at a login prompt and reboot or boot to a black screen right before ES loaded, and you couldnt get ES to load...

                              1 Reply Last reply Reply Quote 0
                              • laurent_007L
                                laurent_007
                                last edited by

                                bonjour,

                                Default username: pi

                                Default Password: raspberry

                                after,
                                at command prompt, type sudo raspi-config
                                select option 3 in menu (Boot Options)
                                select option B1 (Desktopp/CLI)
                                select option B2 (Console Autologin)

                                Then Ok, exit all the way and restart.

                                1 Reply Last reply Reply Quote 0
                                • First post
                                  Last post

                                Contributions to the project are always appreciated, so if you would like to support us with a donation you can do so here.

                                Hosting provided by Mythic-Beasts. See the Hosting Information page for more information.