delay of startup applications, dropbox specifically












2















I have a mounting/dropbox/startup issue. I want to postpone the startup of dropbox, as my computer does not mount the disk in time, and dropbox assumes it is not there. Does anyone know an easy way of delaying the startup of Dropbox? I found another answer in which you manually mount the drive, but I do not want to go that route, I simply want to adjust the time or order in which dropbox is started, maybe put it very last in the 'startup queue' or whatever is used in this circumstance. Thanks much










share|improve this question



























    2















    I have a mounting/dropbox/startup issue. I want to postpone the startup of dropbox, as my computer does not mount the disk in time, and dropbox assumes it is not there. Does anyone know an easy way of delaying the startup of Dropbox? I found another answer in which you manually mount the drive, but I do not want to go that route, I simply want to adjust the time or order in which dropbox is started, maybe put it very last in the 'startup queue' or whatever is used in this circumstance. Thanks much










    share|improve this question

























      2












      2








      2


      3






      I have a mounting/dropbox/startup issue. I want to postpone the startup of dropbox, as my computer does not mount the disk in time, and dropbox assumes it is not there. Does anyone know an easy way of delaying the startup of Dropbox? I found another answer in which you manually mount the drive, but I do not want to go that route, I simply want to adjust the time or order in which dropbox is started, maybe put it very last in the 'startup queue' or whatever is used in this circumstance. Thanks much










      share|improve this question














      I have a mounting/dropbox/startup issue. I want to postpone the startup of dropbox, as my computer does not mount the disk in time, and dropbox assumes it is not there. Does anyone know an easy way of delaying the startup of Dropbox? I found another answer in which you manually mount the drive, but I do not want to go that route, I simply want to adjust the time or order in which dropbox is started, maybe put it very last in the 'startup queue' or whatever is used in this circumstance. Thanks much







      13.04 mount startup dropbox






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Jul 8 '13 at 4:02









      JonnyTrueloveJonnyTruelove

      1614




      1614






















          3 Answers
          3






          active

          oldest

          votes


















          4














          Open the startup applications window. Just open the Dash ant type startup it should show there. It will looks like this (but in english):



          enter image description here



          Select dropbox, push edit. Now at the start of the command line type:



          sleep 10;


          So that it all looks like



          sleep 10;dropbox start -i


          Now the computer should wait 10 seconds before dropbox starts. You can change the number 10 in the example if you desire a bigger or shorter wait.






          share|improve this answer
























          • You are the best! This was exactly what I was looking for! Thank you!

            – JonnyTruelove
            Jul 9 '13 at 7:43











          • If this works, remember to mark the question as answered.

            – Javier Rivera
            Jul 9 '13 at 8:14






          • 2





            This didn't work for me. With and without a space after the semi-colon in the command, it now just boots up and shows no error, which means that Dropbox doesn't run at all.

            – aalaap
            Jan 28 '14 at 11:34











          • You don't need any space. I don't know what you are trying to do or why do you expect an error. But try to drop the -i at the end.

            – Javier Rivera
            Jan 29 '14 at 7:37



















          0














          Alternatively, you can just add delays to the files in:



          ~/.desktop/autostart/someapp.desktop


          Edit it with a text editor of your choice and add the delay with the line:



          X-GNOME-Autostart-Delay=999


          In units of seconds.






          share|improve this answer



















          • 1





            This works in general, but Dropbox clobbers the .desktop file on every start up, over-writing any changes you make. Haven't found any other app this sloppy yet, but there may be others.

            – simon
            Sep 20 '17 at 15:29



















          0














          I experimented with this for my Thunderbird email app. Currently in Autostart I have this:



          sleep 10;thunderbird


          Seems to work great.



          That fact that sleep is a utility and not an internal command makes this super easy!!






          share|improve this answer

























            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',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader: {
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            },
            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%2f317638%2fdelay-of-startup-applications-dropbox-specifically%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            3 Answers
            3






            active

            oldest

            votes








            3 Answers
            3






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            4














            Open the startup applications window. Just open the Dash ant type startup it should show there. It will looks like this (but in english):



            enter image description here



            Select dropbox, push edit. Now at the start of the command line type:



            sleep 10;


            So that it all looks like



            sleep 10;dropbox start -i


            Now the computer should wait 10 seconds before dropbox starts. You can change the number 10 in the example if you desire a bigger or shorter wait.






            share|improve this answer
























            • You are the best! This was exactly what I was looking for! Thank you!

              – JonnyTruelove
              Jul 9 '13 at 7:43











            • If this works, remember to mark the question as answered.

              – Javier Rivera
              Jul 9 '13 at 8:14






            • 2





              This didn't work for me. With and without a space after the semi-colon in the command, it now just boots up and shows no error, which means that Dropbox doesn't run at all.

              – aalaap
              Jan 28 '14 at 11:34











            • You don't need any space. I don't know what you are trying to do or why do you expect an error. But try to drop the -i at the end.

              – Javier Rivera
              Jan 29 '14 at 7:37
















            4














            Open the startup applications window. Just open the Dash ant type startup it should show there. It will looks like this (but in english):



            enter image description here



            Select dropbox, push edit. Now at the start of the command line type:



            sleep 10;


            So that it all looks like



            sleep 10;dropbox start -i


            Now the computer should wait 10 seconds before dropbox starts. You can change the number 10 in the example if you desire a bigger or shorter wait.






            share|improve this answer
























            • You are the best! This was exactly what I was looking for! Thank you!

              – JonnyTruelove
              Jul 9 '13 at 7:43











            • If this works, remember to mark the question as answered.

              – Javier Rivera
              Jul 9 '13 at 8:14






            • 2





              This didn't work for me. With and without a space after the semi-colon in the command, it now just boots up and shows no error, which means that Dropbox doesn't run at all.

              – aalaap
              Jan 28 '14 at 11:34











            • You don't need any space. I don't know what you are trying to do or why do you expect an error. But try to drop the -i at the end.

              – Javier Rivera
              Jan 29 '14 at 7:37














            4












            4








            4







            Open the startup applications window. Just open the Dash ant type startup it should show there. It will looks like this (but in english):



            enter image description here



            Select dropbox, push edit. Now at the start of the command line type:



            sleep 10;


            So that it all looks like



            sleep 10;dropbox start -i


            Now the computer should wait 10 seconds before dropbox starts. You can change the number 10 in the example if you desire a bigger or shorter wait.






            share|improve this answer













            Open the startup applications window. Just open the Dash ant type startup it should show there. It will looks like this (but in english):



            enter image description here



            Select dropbox, push edit. Now at the start of the command line type:



            sleep 10;


            So that it all looks like



            sleep 10;dropbox start -i


            Now the computer should wait 10 seconds before dropbox starts. You can change the number 10 in the example if you desire a bigger or shorter wait.







            share|improve this answer












            share|improve this answer



            share|improve this answer










            answered Jul 8 '13 at 16:48









            Javier RiveraJavier Rivera

            30k978101




            30k978101













            • You are the best! This was exactly what I was looking for! Thank you!

              – JonnyTruelove
              Jul 9 '13 at 7:43











            • If this works, remember to mark the question as answered.

              – Javier Rivera
              Jul 9 '13 at 8:14






            • 2





              This didn't work for me. With and without a space after the semi-colon in the command, it now just boots up and shows no error, which means that Dropbox doesn't run at all.

              – aalaap
              Jan 28 '14 at 11:34











            • You don't need any space. I don't know what you are trying to do or why do you expect an error. But try to drop the -i at the end.

              – Javier Rivera
              Jan 29 '14 at 7:37



















            • You are the best! This was exactly what I was looking for! Thank you!

              – JonnyTruelove
              Jul 9 '13 at 7:43











            • If this works, remember to mark the question as answered.

              – Javier Rivera
              Jul 9 '13 at 8:14






            • 2





              This didn't work for me. With and without a space after the semi-colon in the command, it now just boots up and shows no error, which means that Dropbox doesn't run at all.

              – aalaap
              Jan 28 '14 at 11:34











            • You don't need any space. I don't know what you are trying to do or why do you expect an error. But try to drop the -i at the end.

              – Javier Rivera
              Jan 29 '14 at 7:37

















            You are the best! This was exactly what I was looking for! Thank you!

            – JonnyTruelove
            Jul 9 '13 at 7:43





            You are the best! This was exactly what I was looking for! Thank you!

            – JonnyTruelove
            Jul 9 '13 at 7:43













            If this works, remember to mark the question as answered.

            – Javier Rivera
            Jul 9 '13 at 8:14





            If this works, remember to mark the question as answered.

            – Javier Rivera
            Jul 9 '13 at 8:14




            2




            2





            This didn't work for me. With and without a space after the semi-colon in the command, it now just boots up and shows no error, which means that Dropbox doesn't run at all.

            – aalaap
            Jan 28 '14 at 11:34





            This didn't work for me. With and without a space after the semi-colon in the command, it now just boots up and shows no error, which means that Dropbox doesn't run at all.

            – aalaap
            Jan 28 '14 at 11:34













            You don't need any space. I don't know what you are trying to do or why do you expect an error. But try to drop the -i at the end.

            – Javier Rivera
            Jan 29 '14 at 7:37





            You don't need any space. I don't know what you are trying to do or why do you expect an error. But try to drop the -i at the end.

            – Javier Rivera
            Jan 29 '14 at 7:37













            0














            Alternatively, you can just add delays to the files in:



            ~/.desktop/autostart/someapp.desktop


            Edit it with a text editor of your choice and add the delay with the line:



            X-GNOME-Autostart-Delay=999


            In units of seconds.






            share|improve this answer



















            • 1





              This works in general, but Dropbox clobbers the .desktop file on every start up, over-writing any changes you make. Haven't found any other app this sloppy yet, but there may be others.

              – simon
              Sep 20 '17 at 15:29
















            0














            Alternatively, you can just add delays to the files in:



            ~/.desktop/autostart/someapp.desktop


            Edit it with a text editor of your choice and add the delay with the line:



            X-GNOME-Autostart-Delay=999


            In units of seconds.






            share|improve this answer



















            • 1





              This works in general, but Dropbox clobbers the .desktop file on every start up, over-writing any changes you make. Haven't found any other app this sloppy yet, but there may be others.

              – simon
              Sep 20 '17 at 15:29














            0












            0








            0







            Alternatively, you can just add delays to the files in:



            ~/.desktop/autostart/someapp.desktop


            Edit it with a text editor of your choice and add the delay with the line:



            X-GNOME-Autostart-Delay=999


            In units of seconds.






            share|improve this answer













            Alternatively, you can just add delays to the files in:



            ~/.desktop/autostart/someapp.desktop


            Edit it with a text editor of your choice and add the delay with the line:



            X-GNOME-Autostart-Delay=999


            In units of seconds.







            share|improve this answer












            share|improve this answer



            share|improve this answer










            answered Feb 23 '15 at 23:58









            KzqaiKzqai

            3672616




            3672616








            • 1





              This works in general, but Dropbox clobbers the .desktop file on every start up, over-writing any changes you make. Haven't found any other app this sloppy yet, but there may be others.

              – simon
              Sep 20 '17 at 15:29














            • 1





              This works in general, but Dropbox clobbers the .desktop file on every start up, over-writing any changes you make. Haven't found any other app this sloppy yet, but there may be others.

              – simon
              Sep 20 '17 at 15:29








            1




            1





            This works in general, but Dropbox clobbers the .desktop file on every start up, over-writing any changes you make. Haven't found any other app this sloppy yet, but there may be others.

            – simon
            Sep 20 '17 at 15:29





            This works in general, but Dropbox clobbers the .desktop file on every start up, over-writing any changes you make. Haven't found any other app this sloppy yet, but there may be others.

            – simon
            Sep 20 '17 at 15:29











            0














            I experimented with this for my Thunderbird email app. Currently in Autostart I have this:



            sleep 10;thunderbird


            Seems to work great.



            That fact that sleep is a utility and not an internal command makes this super easy!!






            share|improve this answer






























              0














              I experimented with this for my Thunderbird email app. Currently in Autostart I have this:



              sleep 10;thunderbird


              Seems to work great.



              That fact that sleep is a utility and not an internal command makes this super easy!!






              share|improve this answer




























                0












                0








                0







                I experimented with this for my Thunderbird email app. Currently in Autostart I have this:



                sleep 10;thunderbird


                Seems to work great.



                That fact that sleep is a utility and not an internal command makes this super easy!!






                share|improve this answer















                I experimented with this for my Thunderbird email app. Currently in Autostart I have this:



                sleep 10;thunderbird


                Seems to work great.



                That fact that sleep is a utility and not an internal command makes this super easy!!







                share|improve this answer














                share|improve this answer



                share|improve this answer








                edited Jan 22 at 22:05









                guntbert

                9,282133170




                9,282133170










                answered Jan 22 at 21:43









                Douglas E Roberts AuthorDouglas E Roberts Author

                1




                1






























                    draft saved

                    draft discarded




















































                    Thanks for contributing an answer to Ask Ubuntu!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid



                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.


                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function () {
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f317638%2fdelay-of-startup-applications-dropbox-specifically%23new-answer', 'question_page');
                    }
                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    Human spaceflight

                    Can not write log (Is /dev/pts mounted?) - openpty in Ubuntu-on-Windows?

                    File:DeusFollowingSea.jpg