Disable the new ubuntu 18.04 welcome screen

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP








up vote
2
down vote

favorite
1












We deploy Ubuntu desktops in our environment at scale and I want to kill the new welcome screen so it doesn't appear on all newly built machines at first log in.



Has anyone figured out how to do this yet?







share|improve this question


























    up vote
    2
    down vote

    favorite
    1












    We deploy Ubuntu desktops in our environment at scale and I want to kill the new welcome screen so it doesn't appear on all newly built machines at first log in.



    Has anyone figured out how to do this yet?







    share|improve this question
























      up vote
      2
      down vote

      favorite
      1









      up vote
      2
      down vote

      favorite
      1






      1





      We deploy Ubuntu desktops in our environment at scale and I want to kill the new welcome screen so it doesn't appear on all newly built machines at first log in.



      Has anyone figured out how to do this yet?







      share|improve this question














      We deploy Ubuntu desktops in our environment at scale and I want to kill the new welcome screen so it doesn't appear on all newly built machines at first log in.



      Has anyone figured out how to do this yet?









      share|improve this question













      share|improve this question




      share|improve this question








      edited Apr 30 at 12:29

























      asked Apr 27 at 15:16









      Dean

      519




      519




















          3 Answers
          3






          active

          oldest

          votes

















          up vote
          4
          down vote



          accepted










          I found the solution to this myself so I'm posting it here for all those who might want to know.



          The welcome screen is part of the gnome-initial-setup package. The first time a user logs into a new machine the command /usr/lib/gnome-initial-setup/gnome-initial-setup --exisiting-user runs.



          for us simply removing the gnome-initial-setup package during kickstart is a suitable fix as we don't require any of the gnome initial setup stuff anyway (we don't want to create local user accounts or set the system time etc).



          if you do still want the pre-login welcome stuff then you'll need a different solution.






          share|improve this answer






















          • In this initial setup, user opt in or out sending reports to Ubuntu for example. Did you notice any side effects after removing the gnome-initial-setup package ? Did you removed the ubuntu-report package too ?
            – Jean Coiron
            Aug 16 at 14:43

















          up vote
          3
          down vote













          I am in the same boat as Dean and found this article + another ones.



          Here Rui Matos recommends to append InitialSetupEnable=false in /etc/gdm/custom.conf (in Ubuntu /etc/gdm3/custom.conf).



          So edit /etc/gdm3/custom.conf and add the following:



          [daemon]
          InitialSetupEnable=false


          Hope this helps someone else to get rid of the Welcome Screen.






          share|improve this answer





























            up vote
            -2
            down vote













            Since Ubuntu runs on a variety of computer and doesn't even matter if you change the the hard drive between configurations of hardware setup a Ubuntu instalation on any computer , boot it for the first time and do the setup and if you want to install more packages do it.After that, burn a clonezilla image on a USB stick,boot it on the computer you installed and clone the hard disk via network






            share|improve this answer




















            • Thanks for taking the time to give an answer, appreciate it. This isn't really a suitable solution for my environment. I am looking for a config based solution, something I can script / automate for use with our config management tools.
              – Dean
              Apr 30 at 9:01










            Your Answer







            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "89"
            ;
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function()
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled)
            StackExchange.using("snippets", function()
            createEditor();
            );

            else
            createEditor();

            );

            function createEditor()
            StackExchange.prepareEditor(
            heartbeatType: 'answer',
            convertImagesToLinks: true,
            noModals: false,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );













             

            draft saved


            draft discarded


















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1028822%2fdisable-the-new-ubuntu-18-04-welcome-screen%23new-answer', 'question_page');

            );

            Post as a guest






























            3 Answers
            3






            active

            oldest

            votes








            3 Answers
            3






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes








            up vote
            4
            down vote



            accepted










            I found the solution to this myself so I'm posting it here for all those who might want to know.



            The welcome screen is part of the gnome-initial-setup package. The first time a user logs into a new machine the command /usr/lib/gnome-initial-setup/gnome-initial-setup --exisiting-user runs.



            for us simply removing the gnome-initial-setup package during kickstart is a suitable fix as we don't require any of the gnome initial setup stuff anyway (we don't want to create local user accounts or set the system time etc).



            if you do still want the pre-login welcome stuff then you'll need a different solution.






            share|improve this answer






















            • In this initial setup, user opt in or out sending reports to Ubuntu for example. Did you notice any side effects after removing the gnome-initial-setup package ? Did you removed the ubuntu-report package too ?
              – Jean Coiron
              Aug 16 at 14:43














            up vote
            4
            down vote



            accepted










            I found the solution to this myself so I'm posting it here for all those who might want to know.



            The welcome screen is part of the gnome-initial-setup package. The first time a user logs into a new machine the command /usr/lib/gnome-initial-setup/gnome-initial-setup --exisiting-user runs.



            for us simply removing the gnome-initial-setup package during kickstart is a suitable fix as we don't require any of the gnome initial setup stuff anyway (we don't want to create local user accounts or set the system time etc).



            if you do still want the pre-login welcome stuff then you'll need a different solution.






            share|improve this answer






















            • In this initial setup, user opt in or out sending reports to Ubuntu for example. Did you notice any side effects after removing the gnome-initial-setup package ? Did you removed the ubuntu-report package too ?
              – Jean Coiron
              Aug 16 at 14:43












            up vote
            4
            down vote



            accepted







            up vote
            4
            down vote



            accepted






            I found the solution to this myself so I'm posting it here for all those who might want to know.



            The welcome screen is part of the gnome-initial-setup package. The first time a user logs into a new machine the command /usr/lib/gnome-initial-setup/gnome-initial-setup --exisiting-user runs.



            for us simply removing the gnome-initial-setup package during kickstart is a suitable fix as we don't require any of the gnome initial setup stuff anyway (we don't want to create local user accounts or set the system time etc).



            if you do still want the pre-login welcome stuff then you'll need a different solution.






            share|improve this answer














            I found the solution to this myself so I'm posting it here for all those who might want to know.



            The welcome screen is part of the gnome-initial-setup package. The first time a user logs into a new machine the command /usr/lib/gnome-initial-setup/gnome-initial-setup --exisiting-user runs.



            for us simply removing the gnome-initial-setup package during kickstart is a suitable fix as we don't require any of the gnome initial setup stuff anyway (we don't want to create local user accounts or set the system time etc).



            if you do still want the pre-login welcome stuff then you'll need a different solution.







            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited Jun 27 at 13:26









            David Foerster

            26k1361106




            26k1361106










            answered Apr 30 at 12:25









            Dean

            519




            519











            • In this initial setup, user opt in or out sending reports to Ubuntu for example. Did you notice any side effects after removing the gnome-initial-setup package ? Did you removed the ubuntu-report package too ?
              – Jean Coiron
              Aug 16 at 14:43
















            • In this initial setup, user opt in or out sending reports to Ubuntu for example. Did you notice any side effects after removing the gnome-initial-setup package ? Did you removed the ubuntu-report package too ?
              – Jean Coiron
              Aug 16 at 14:43















            In this initial setup, user opt in or out sending reports to Ubuntu for example. Did you notice any side effects after removing the gnome-initial-setup package ? Did you removed the ubuntu-report package too ?
            – Jean Coiron
            Aug 16 at 14:43




            In this initial setup, user opt in or out sending reports to Ubuntu for example. Did you notice any side effects after removing the gnome-initial-setup package ? Did you removed the ubuntu-report package too ?
            – Jean Coiron
            Aug 16 at 14:43












            up vote
            3
            down vote













            I am in the same boat as Dean and found this article + another ones.



            Here Rui Matos recommends to append InitialSetupEnable=false in /etc/gdm/custom.conf (in Ubuntu /etc/gdm3/custom.conf).



            So edit /etc/gdm3/custom.conf and add the following:



            [daemon]
            InitialSetupEnable=false


            Hope this helps someone else to get rid of the Welcome Screen.






            share|improve this answer


























              up vote
              3
              down vote













              I am in the same boat as Dean and found this article + another ones.



              Here Rui Matos recommends to append InitialSetupEnable=false in /etc/gdm/custom.conf (in Ubuntu /etc/gdm3/custom.conf).



              So edit /etc/gdm3/custom.conf and add the following:



              [daemon]
              InitialSetupEnable=false


              Hope this helps someone else to get rid of the Welcome Screen.






              share|improve this answer
























                up vote
                3
                down vote










                up vote
                3
                down vote









                I am in the same boat as Dean and found this article + another ones.



                Here Rui Matos recommends to append InitialSetupEnable=false in /etc/gdm/custom.conf (in Ubuntu /etc/gdm3/custom.conf).



                So edit /etc/gdm3/custom.conf and add the following:



                [daemon]
                InitialSetupEnable=false


                Hope this helps someone else to get rid of the Welcome Screen.






                share|improve this answer














                I am in the same boat as Dean and found this article + another ones.



                Here Rui Matos recommends to append InitialSetupEnable=false in /etc/gdm/custom.conf (in Ubuntu /etc/gdm3/custom.conf).



                So edit /etc/gdm3/custom.conf and add the following:



                [daemon]
                InitialSetupEnable=false


                Hope this helps someone else to get rid of the Welcome Screen.







                share|improve this answer














                share|improve this answer



                share|improve this answer








                edited Jun 27 at 13:26









                David Foerster

                26k1361106




                26k1361106










                answered May 23 at 10:32









                Hupe

                311




                311




















                    up vote
                    -2
                    down vote













                    Since Ubuntu runs on a variety of computer and doesn't even matter if you change the the hard drive between configurations of hardware setup a Ubuntu instalation on any computer , boot it for the first time and do the setup and if you want to install more packages do it.After that, burn a clonezilla image on a USB stick,boot it on the computer you installed and clone the hard disk via network






                    share|improve this answer




















                    • Thanks for taking the time to give an answer, appreciate it. This isn't really a suitable solution for my environment. I am looking for a config based solution, something I can script / automate for use with our config management tools.
                      – Dean
                      Apr 30 at 9:01














                    up vote
                    -2
                    down vote













                    Since Ubuntu runs on a variety of computer and doesn't even matter if you change the the hard drive between configurations of hardware setup a Ubuntu instalation on any computer , boot it for the first time and do the setup and if you want to install more packages do it.After that, burn a clonezilla image on a USB stick,boot it on the computer you installed and clone the hard disk via network






                    share|improve this answer




















                    • Thanks for taking the time to give an answer, appreciate it. This isn't really a suitable solution for my environment. I am looking for a config based solution, something I can script / automate for use with our config management tools.
                      – Dean
                      Apr 30 at 9:01












                    up vote
                    -2
                    down vote










                    up vote
                    -2
                    down vote









                    Since Ubuntu runs on a variety of computer and doesn't even matter if you change the the hard drive between configurations of hardware setup a Ubuntu instalation on any computer , boot it for the first time and do the setup and if you want to install more packages do it.After that, burn a clonezilla image on a USB stick,boot it on the computer you installed and clone the hard disk via network






                    share|improve this answer












                    Since Ubuntu runs on a variety of computer and doesn't even matter if you change the the hard drive between configurations of hardware setup a Ubuntu instalation on any computer , boot it for the first time and do the setup and if you want to install more packages do it.After that, burn a clonezilla image on a USB stick,boot it on the computer you installed and clone the hard disk via network







                    share|improve this answer












                    share|improve this answer



                    share|improve this answer










                    answered Apr 27 at 15:42









                    tuddyftw

                    172




                    172











                    • Thanks for taking the time to give an answer, appreciate it. This isn't really a suitable solution for my environment. I am looking for a config based solution, something I can script / automate for use with our config management tools.
                      – Dean
                      Apr 30 at 9:01
















                    • Thanks for taking the time to give an answer, appreciate it. This isn't really a suitable solution for my environment. I am looking for a config based solution, something I can script / automate for use with our config management tools.
                      – Dean
                      Apr 30 at 9:01















                    Thanks for taking the time to give an answer, appreciate it. This isn't really a suitable solution for my environment. I am looking for a config based solution, something I can script / automate for use with our config management tools.
                    – Dean
                    Apr 30 at 9:01




                    Thanks for taking the time to give an answer, appreciate it. This isn't really a suitable solution for my environment. I am looking for a config based solution, something I can script / automate for use with our config management tools.
                    – Dean
                    Apr 30 at 9:01

















                     

                    draft saved


                    draft discarded















































                     


                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1028822%2fdisable-the-new-ubuntu-18-04-welcome-screen%23new-answer', 'question_page');

                    );

                    Post as a guest













































































                    Popular posts from this blog

                    pylint3 and pip3 broken

                    Missing snmpget and snmpwalk

                    How to enroll fingerprints to Ubuntu 17.10 with VFS491