Using @reboot with cronHow do I list all cron jobs for all users?Cron Jobs stopped workingCannot run Python from CronCron job not kicked offPython / Linux CronRunning cron job at rebootCannot get @reboot Cron job to run Python scriptPHP script is not exceuted by laravel cronPython script doesn't run background process, when called by cronCron job reboot without sudo

Can attackers change the public key of certificate during the SSL handshake

Why do proponents of guns oppose gun competency tests?

“The Fourier transform cannot measure two phases at the same frequency.” Why not?

Would this winged human/angel be able to fly?

Write The Shortest Program To Check If A Binary Tree Is Balanced

How can I use commands with sudo without changing owner of the files?

Four-velocity of radially infalling gas in Schwarzschild metric

Why does putting a dot after the URL remove login information?

GFCI tripping on overload?

A Checkmate of Dubious Legality

Are valid inequalities worth the effort given modern solver preprocessing options?

Why are there yellow dot stickers on the front doors of businesses in Russia?

Custom Metadata SOQL WHERE clause not working

How does Rust's 128-bit integer `i128` work on a 64-bit system?

How to check a file was encrypted (really & correctly)

Based on what criteria do you add/not add icons to labels within a toolbar?

How easy is it to get a gun illegally in the United States?

…down the primrose path

Is space radiation a risk for space film photography, and how is this prevented?

Ancients don't give a full level?

Vectorised way to calculate mean of left and right neighbours in a vector

Upper Bound for a Sum

How do I show and not tell a backstory?

Why do rocket engines use nitrogen actuators to operate the fuel/oxidiser valves instead of electric servos?



Using @reboot with cron


How do I list all cron jobs for all users?Cron Jobs stopped workingCannot run Python from CronCron job not kicked offPython / Linux CronRunning cron job at rebootCannot get @reboot Cron job to run Python scriptPHP script is not exceuted by laravel cronPython script doesn't run background process, when called by cronCron job reboot without sudo






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















I am attempting to enable cron to run this python script on reboot.



I have already tried both the GUI and script file version of cron, and neither will run the script, while if I run it in terminal, it works. I have also tried to put it into some start up scripts as well, but had no luck.



(OnReboot.py) Python code, located in the home folder



import subprocess
firefox_path = '/usr/bin/iceweasel'
cmdline = [firefox_path]
with open('url_list.txt', 'r') as url_file:
for url in url_file:
cmdline.append(url)
subprocess.Popen(cmdline)


Cron code



@reboot python ./OnReboot.py


I expect that when the Pi restarts, the python code will be ran automatically.










share|improve this question
































    0















    I am attempting to enable cron to run this python script on reboot.



    I have already tried both the GUI and script file version of cron, and neither will run the script, while if I run it in terminal, it works. I have also tried to put it into some start up scripts as well, but had no luck.



    (OnReboot.py) Python code, located in the home folder



    import subprocess
    firefox_path = '/usr/bin/iceweasel'
    cmdline = [firefox_path]
    with open('url_list.txt', 'r') as url_file:
    for url in url_file:
    cmdline.append(url)
    subprocess.Popen(cmdline)


    Cron code



    @reboot python ./OnReboot.py


    I expect that when the Pi restarts, the python code will be ran automatically.










    share|improve this question




























      0












      0








      0








      I am attempting to enable cron to run this python script on reboot.



      I have already tried both the GUI and script file version of cron, and neither will run the script, while if I run it in terminal, it works. I have also tried to put it into some start up scripts as well, but had no luck.



      (OnReboot.py) Python code, located in the home folder



      import subprocess
      firefox_path = '/usr/bin/iceweasel'
      cmdline = [firefox_path]
      with open('url_list.txt', 'r') as url_file:
      for url in url_file:
      cmdline.append(url)
      subprocess.Popen(cmdline)


      Cron code



      @reboot python ./OnReboot.py


      I expect that when the Pi restarts, the python code will be ran automatically.










      share|improve this question
















      I am attempting to enable cron to run this python script on reboot.



      I have already tried both the GUI and script file version of cron, and neither will run the script, while if I run it in terminal, it works. I have also tried to put it into some start up scripts as well, but had no luck.



      (OnReboot.py) Python code, located in the home folder



      import subprocess
      firefox_path = '/usr/bin/iceweasel'
      cmdline = [firefox_path]
      with open('url_list.txt', 'r') as url_file:
      for url in url_file:
      cmdline.append(url)
      subprocess.Popen(cmdline)


      Cron code



      @reboot python ./OnReboot.py


      I expect that when the Pi restarts, the python code will be ran automatically.







      python ubuntu cron raspberry-pi






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Mar 28 at 18:37







      Rapido

















      asked Mar 27 at 2:45









      RapidoRapido

      11 bronze badge




      11 bronze badge

























          1 Answer
          1






          active

          oldest

          votes


















          0














          You're asking about @reboot, but you aren't using it!



          If you want your script to run on reboot, specify @reboot instead of a time specification in your crontab, e.g.



          @reboot python ./OnReboot.py


          Additionally, a relative path like ./OnReboot.py may not work correctly in a cronjob, as cron's working directory may not be what you expect. Use an absolute path (e.g. /path/to/OnReboot.py) for best results.






          share|improve this answer

























          • Sorry for the confusion, in cron, I have it typed as @reboot and it still does not work, I just mistyped it in the question.

            – Rapido
            Mar 28 at 18:37










          Your Answer






          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "1"
          ;
          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%2fstackoverflow.com%2fquestions%2f55369036%2fusing-reboot-with-cron%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          0














          You're asking about @reboot, but you aren't using it!



          If you want your script to run on reboot, specify @reboot instead of a time specification in your crontab, e.g.



          @reboot python ./OnReboot.py


          Additionally, a relative path like ./OnReboot.py may not work correctly in a cronjob, as cron's working directory may not be what you expect. Use an absolute path (e.g. /path/to/OnReboot.py) for best results.






          share|improve this answer

























          • Sorry for the confusion, in cron, I have it typed as @reboot and it still does not work, I just mistyped it in the question.

            – Rapido
            Mar 28 at 18:37















          0














          You're asking about @reboot, but you aren't using it!



          If you want your script to run on reboot, specify @reboot instead of a time specification in your crontab, e.g.



          @reboot python ./OnReboot.py


          Additionally, a relative path like ./OnReboot.py may not work correctly in a cronjob, as cron's working directory may not be what you expect. Use an absolute path (e.g. /path/to/OnReboot.py) for best results.






          share|improve this answer

























          • Sorry for the confusion, in cron, I have it typed as @reboot and it still does not work, I just mistyped it in the question.

            – Rapido
            Mar 28 at 18:37













          0












          0








          0







          You're asking about @reboot, but you aren't using it!



          If you want your script to run on reboot, specify @reboot instead of a time specification in your crontab, e.g.



          @reboot python ./OnReboot.py


          Additionally, a relative path like ./OnReboot.py may not work correctly in a cronjob, as cron's working directory may not be what you expect. Use an absolute path (e.g. /path/to/OnReboot.py) for best results.






          share|improve this answer













          You're asking about @reboot, but you aren't using it!



          If you want your script to run on reboot, specify @reboot instead of a time specification in your crontab, e.g.



          @reboot python ./OnReboot.py


          Additionally, a relative path like ./OnReboot.py may not work correctly in a cronjob, as cron's working directory may not be what you expect. Use an absolute path (e.g. /path/to/OnReboot.py) for best results.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Mar 27 at 3:08









          duskwuffduskwuff

          155k21 gold badges192 silver badges245 bronze badges




          155k21 gold badges192 silver badges245 bronze badges















          • Sorry for the confusion, in cron, I have it typed as @reboot and it still does not work, I just mistyped it in the question.

            – Rapido
            Mar 28 at 18:37

















          • Sorry for the confusion, in cron, I have it typed as @reboot and it still does not work, I just mistyped it in the question.

            – Rapido
            Mar 28 at 18:37
















          Sorry for the confusion, in cron, I have it typed as @reboot and it still does not work, I just mistyped it in the question.

          – Rapido
          Mar 28 at 18:37





          Sorry for the confusion, in cron, I have it typed as @reboot and it still does not work, I just mistyped it in the question.

          – Rapido
          Mar 28 at 18:37








          Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.







          Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.



















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Stack Overflow!


          • 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%2fstackoverflow.com%2fquestions%2f55369036%2fusing-reboot-with-cron%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

          Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

          Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

          Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript