Content in imx93 timer is not executed.

取消
显示结果 
显示  仅  | 搜索替代 
您的意思是: 
已解决

Content in imx93 timer is not executed.

跳至解决方案
371 次查看
xiang_1001
Contributor III

bsp:real-time-edge-3.1.0.xml

The /etc/net-debug.sh file is executed regularly in /etc/crontab, but now this script doesn't run. What is the reason?

xiang_1001_0-1759204650814.png

 

0 项奖励
回复
1 解答
339 次查看
Bio_TICFSL
NXP TechSupport
NXP TechSupport

Hello,

Common Reasons for a Failed Cron Job

 

 

  • Permissions: The script lacks execute permissions. You need to make the script executable using chmod +x /path/to/your/script.sh.
  • Path Environment Variable: Cron runs scripts in a minimal environment with a restricted PATH. Commands within the script may not be found.

 

 

  • Missing or Incorrect Paths:
    • The crontab entry itself might use relative paths, which is problematic for cron.
    • The script might not specify the full path to commands it calls (e.g., instead of ls, use /bin/ls).
  • Crontab Syntax Errors:
    • There must be a newline character after the last command in the crontab file.
    • The user field is missing in the /etc/crontab file, which requires a user name before the command.
  •   Issues:
    • The script may rely on environment variables that are not set in the minimal cron environment.
    • Scripts containing non-text characters can cause failures

 

Troubleshooting Steps
 
  1. Log Script Output: Redirect the script's output to a log file to see any error messages.
    bash

  • * * * * * /path/to/your/script.sh >> /var/log/your_script.log 2>&1
    
  • Check Permissions: Use ls -l /path/to/your/script.sh to verify the script has execute (x) permissions. If not, run chmod +x /path/to/your/script.sh.
  • Use Full Paths: In your script, replace relative path commands with their full paths (e.g., /bin/grep instead of grep).
  • Set Environment Variables: Add PATH and other necessary variables at the top of your cron entry or script to define the environment.
  • Check for Newline: Open /etc/crontab and ensure there is a new line character after the last command in your entry.
  • Verify User Field: For /etc/crontab, ensure the user field is present (e.g., root).
  • Use cron.d: For root-owned jobs, consider placing them in /etc/cron.d/ instead of directly editing /etc/crontab for better organization

Regards

在原帖中查看解决方案

0 项奖励
回复
2 回复数
340 次查看
Bio_TICFSL
NXP TechSupport
NXP TechSupport

Hello,

Common Reasons for a Failed Cron Job

 

 

  • Permissions: The script lacks execute permissions. You need to make the script executable using chmod +x /path/to/your/script.sh.
  • Path Environment Variable: Cron runs scripts in a minimal environment with a restricted PATH. Commands within the script may not be found.

 

 

  • Missing or Incorrect Paths:
    • The crontab entry itself might use relative paths, which is problematic for cron.
    • The script might not specify the full path to commands it calls (e.g., instead of ls, use /bin/ls).
  • Crontab Syntax Errors:
    • There must be a newline character after the last command in the crontab file.
    • The user field is missing in the /etc/crontab file, which requires a user name before the command.
  •   Issues:
    • The script may rely on environment variables that are not set in the minimal cron environment.
    • Scripts containing non-text characters can cause failures

 

Troubleshooting Steps
 
  1. Log Script Output: Redirect the script's output to a log file to see any error messages.
    bash

  • * * * * * /path/to/your/script.sh >> /var/log/your_script.log 2>&1
    
  • Check Permissions: Use ls -l /path/to/your/script.sh to verify the script has execute (x) permissions. If not, run chmod +x /path/to/your/script.sh.
  • Use Full Paths: In your script, replace relative path commands with their full paths (e.g., /bin/grep instead of grep).
  • Set Environment Variables: Add PATH and other necessary variables at the top of your cron entry or script to define the environment.
  • Check for Newline: Open /etc/crontab and ensure there is a new line character after the last command in your entry.
  • Verify User Field: For /etc/crontab, ensure the user field is present (e.g., root).
  • Use cron.d: For root-owned jobs, consider placing them in /etc/cron.d/ instead of directly editing /etc/crontab for better organization

Regards

0 项奖励
回复
265 次查看
xiang_1001
Contributor III
I can use the timing function by putting the crontab file into the /etc/cron.d/ file.
0 项奖励
回复
%3CLINGO-SUB%20id%3D%22lingo-sub-2177861%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3Eimx93%20%E5%AE%9A%E6%97%B6%E5%99%A8%E4%B8%AD%E7%9A%84%E5%86%85%E5%AE%B9%E6%9C%AA%E6%89%A7%E8%A1%8C%E3%80%82%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-2177861%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3ESP%EF%BC%9Areal-time-edge-3.1.0.xml%3C%2FP%3E%3CP%3E%2Fetc%2Fcrontab%20%E4%B8%AD%E7%9A%84%2Fetc%2Fnet-debug.sh%20%E6%96%87%E4%BB%B6%E4%BC%9A%E5%AE%9A%E6%9C%9F%E6%89%A7%E8%A1%8C%EF%BC%8C%E4%BD%86%E7%8E%B0%E5%9C%A8%E8%AF%A5%E8%84%9A%E6%9C%AC%E6%97%A0%E6%B3%95%E8%BF%90%E8%A1%8C%E3%80%82%E5%8E%9F%E5%9B%A0%E4%BD%95%E5%9C%A8%EF%BC%9F%3C%2FP%3E%3CP%3E%3CSPAN%20class%3D%22lia-inline-image-display-wrapper%20lia-image-align-inline%22%20image-alt%3D%22xiang_1001_0-1759204650814.png%22%20style%3D%22width%3A%20400px%3B%22%3E%3Cspan%20class%3D%22lia-inline-image-display-wrapper%22%20image-alt%3D%22xiang_1001_0-1759204650814.png%22%20style%3D%22width%3A%20400px%3B%22%3E%3Cimg%20src%3D%22https%3A%2F%2Fcommunity.nxp.com%2Ft5%2Fimage%2Fserverpage%2Fimage-id%2F358985i98A632736428BB9A%2Fimage-size%2Fmedium%3Fv%3Dv2%26amp%3Bpx%3D400%22%20role%3D%22button%22%20title%3D%22xiang_1001_0-1759204650814.png%22%20alt%3D%22xiang_1001_0-1759204650814.png%22%20%2F%3E%3C%2Fspan%3E%3C%2FSPAN%3E%3C%2FP%3E%3CBR%20%2F%3E%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-2183402%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%20translate%3D%22no%22%3ERe%3A%20Content%20in%20imx93%20timer%20is%20not%20executed.%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-2183402%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%E6%88%91%E5%8F%AF%E4%BB%A5%E9%80%9A%E8%BF%87%E5%B0%86%20crontab%20%E6%96%87%E4%BB%B6%E6%94%BE%E5%85%A5%20%2Fetc%2Fcron.d%2F%20%E4%B8%AD%E6%9D%A5%E4%BD%BF%E7%94%A8%E5%AE%9A%E6%97%B6%E5%8A%9F%E8%83%BD%E3%80%82%E9%94%89%E5%88%80%3C%2FLINGO-BODY%3E%3CLINGO-SUB%20id%3D%22lingo-sub-2178264%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%20translate%3D%22no%22%3ERe%3A%20Content%20in%20imx93%20timer%20is%20not%20executed.%3C%2FLINGO-SUB%3E%3CLINGO-BODY%20id%3D%22lingo-body-2178264%22%20slang%3D%22en-US%22%20mode%3D%22CREATE%22%3E%3CP%3E%E4%BD%A0%E5%A5%BD%3C%2FP%3E%0A%3CP%3ECron%20Job%20%E5%A4%B1%E8%B4%A5%E7%9A%84%E5%B8%B8%E8%A7%81%E5%8E%9F%E5%9B%A0%3C%2FP%3E%0A%3CDIV%20class%3D%22Y3BBE%22%20data-hveid%3D%22CAIQAA%22%20data-processed%3D%22true%22%3E%26nbsp%3B%3C%2FDIV%3E%0A%3CBR%20%2F%3E%0A%3CUL%3E%0A%3CLI%20data-hveid%3D%22CAMQAA%22%20data-processed%3D%22true%22%3E%3CSPAN%20class%3D%22T286Pc%22%20data-processed%3D%22true%22%3E%E6%9D%83%E9%99%90%3CSTRONG%20class%3D%22Yjhzub%22%20data-processed%3D%22true%22%3E%EF%BC%9A%3C%2FSTRONG%3E%E8%84%9A%E6%9C%AC%E6%B2%A1%E6%9C%89%E6%89%A7%E8%A1%8C%E6%9D%83%E9%99%90%E3%80%82%E6%82%A8%E9%9C%80%E8%A6%81%E4%BD%BF%E7%94%A8%3CCODE%20class%3D%22o8j0Mc%22%20data-processed%3D%22true%22%3Echmod%20%2Bx%20%2Fpath%2Fto%2Fyour%2Fscript.sh%3C%2FCODE%3E%20%E4%BD%BF%E8%84%9A%E6%9C%AC%E5%8F%AF%E6%89%A7%E8%A1%8C%E3%80%82%3C%2FSPAN%3E%3C%2FLI%3E%0A%3CLI%20data-hveid%3D%22CAMQAQ%22%20data-processed%3D%22true%22%3E%3CSPAN%20class%3D%22T286Pc%22%20data-processed%3D%22true%22%3E%E8%B7%AF%E5%BE%84%E7%8E%AF%E5%A2%83%E5%8F%98%E9%87%8F%EF%BC%9ACron%20%E5%9C%A8%E6%9C%80%E5%B0%8F%E7%8E%AF%E5%A2%83%E4%B8%AD%E8%BF%90%E8%A1%8C%E8%84%9A%E6%9C%AC%E6%97%B6%EF%BC%8C%E4%BC%9A%E9%99%90%E5%88%B6%20%3CSPAN%20data-processed%3D%22true%22%3E%3CCODE%20class%3D%22o8j0Mc%22%20data-processed%3D%22true%22%3E%E8%B7%AF%E5%BE%84%3C%2FCODE%3E%3C%2FSPAN%3E%3CSPAN%20data-processed%3D%22true%22%3E.%E8%84%9A%E6%9C%AC%E4%B8%AD%E7%9A%84%E5%91%BD%E4%BB%A4%E5%8F%AF%E8%83%BD%E6%89%BE%E4%B8%8D%E5%88%B0%E3%80%82%3C%2FSPAN%3E%3C%2FSPAN%3E%3C%2FLI%3E%0A%3C%2FUL%3E%0A%3CBR%20%2F%3E%0A%3CBR%20%2F%3E%0A%3CUL%3E%0A%3CLI%20data-hveid%3D%22CAMQAg%22%20data-processed%3D%22true%22%3E%3CSPAN%20class%3D%22T286Pc%22%3E%E7%BC%BA%E5%A4%B1%E6%88%96%E4%B8%8D%E6%AD%A3%E7%A1%AE%E7%9A%84%E8%B7%AF%E5%BE%84%EF%BC%9A%3C%2FSPAN%3E%0A%3CUL%20class%3D%22U6u95%22%3E%0A%3CLI%20data-hveid%3D%22CAMQAw%22%3E%3CSPAN%20class%3D%22T286Pc%22%3Ecrontab%20%E6%9D%A1%E7%9B%AE%E6%9C%AC%E8%BA%AB%E5%8F%AF%E8%83%BD%E4%BD%BF%E7%94%A8%E7%9B%B8%E5%AF%B9%E8%B7%AF%E5%BE%84%EF%BC%8C%E8%BF%99%E5%AF%B9%20cron%20%E6%9D%A5%E8%AF%B4%E6%98%AF%E4%B8%AA%E9%97%AE%E9%A2%98%E3%80%82%3C%2FSPAN%3E%3C%2FLI%3E%0A%3CLI%20data-hveid%3D%22CAMQBA%22%3E%3CSPAN%20class%3D%22T286Pc%22%3E%E8%84%9A%E6%9C%AC%E5%8F%AF%E8%83%BD%E4%B8%8D%E4%BC%9A%E6%8C%87%E5%AE%9A%E6%89%80%E8%B0%83%E7%94%A8%E5%91%BD%E4%BB%A4%E7%9A%84%E5%AE%8C%E6%95%B4%E8%B7%AF%E5%BE%84%EF%BC%88%E4%BE%8B%E5%A6%82%EF%BC%8C%E4%BD%BF%E7%94%A8%3CCODE%20class%3D%22o8j0Mc%22%3E%20%2Fbin%2Fls%3C%2FCODE%3E%20%EF%BC%8C%E8%80%8C%E4%B8%8D%E6%98%AF%3CCODE%20class%3D%22o8j0Mc%22%3E%20ls%3C%2FCODE%3E%20%EF%BC%89%E3%80%82%3C%2FSPAN%3E%3C%2FLI%3E%0A%3C%2FUL%3E%0A%3C%2FLI%3E%0A%3C%2FUL%3E%0A%3CUL%3E%0A%3CLI%20data-hveid%3D%22CAMQBQ%22%20data-processed%3D%22true%22%3E%3CSPAN%20class%3D%22T286Pc%22%3ECrontab%20%E8%AF%AD%E6%B3%95%E9%94%99%E8%AF%AF%EF%BC%9A%3C%2FSPAN%3E%0A%3CUL%20class%3D%22U6u95%22%3E%0A%3CLI%20data-hveid%3D%22CAMQBg%22%3E%3CSPAN%20class%3D%22T286Pc%22%3Ecrontab%20%E6%96%87%E4%BB%B6%E4%B8%AD%E7%9A%84%E6%9C%80%E5%90%8E%E4%B8%80%E6%9D%A1%E5%91%BD%E4%BB%A4%E5%90%8E%E5%BF%85%E9%A1%BB%E6%9C%89%E4%B8%80%E4%B8%AA%E6%8D%A2%E8%A1%8C%E7%AC%A6%E3%80%82%3C%2FSPAN%3E%3C%2FLI%3E%0A%3CLI%20data-hveid%3D%22CAMQBw%22%3E%3CSPAN%20class%3D%22T286Pc%22%3E%3CCODE%20class%3D%22o8j0Mc%22%3E%2Fetc%2Fcrontab%3C%2FCODE%3E%20%E6%96%87%E4%BB%B6%E4%B8%AD%E7%BC%BA%E5%B0%91%3CCODE%20class%3D%22o8j0Mc%22%3E%20%E7%94%A8%E6%88%B7%3C%2FCODE%3E%20%E5%AD%97%E6%AE%B5%EF%BC%8C%E8%AF%A5%E6%96%87%E4%BB%B6%E8%A6%81%E6%B1%82%E5%9C%A8%E5%91%BD%E4%BB%A4%E5%89%8D%E8%BE%93%E5%85%A5%E7%94%A8%E6%88%B7%E5%90%8D%E3%80%82%3C%2FSPAN%3E%3C%2FLI%3E%0A%3C%2FUL%3E%0A%3C%2FLI%3E%0A%3C%2FUL%3E%0A%3CUL%3E%0A%3CLI%20data-hveid%3D%22CAMQCA%22%20data-processed%3D%22true%22%3E%3CSPAN%20class%3D%22T286Pc%22%3E%3CSTRONG%20class%3D%22Yjhzub%22%3E%20%20%E9%97%AE%E9%A2%98%EF%BC%9A%3C%2FSTRONG%3E%3C%2FSPAN%3E%0A%3CUL%20class%3D%22U6u95%22%3E%0A%3CLI%20data-hveid%3D%22CAMQCg%22%3E%3CSPAN%20class%3D%22T286Pc%22%3E%E8%84%9A%E6%9C%AC%E5%8F%AF%E8%83%BD%E4%BE%9D%E8%B5%96%E4%BA%8E%E6%9C%80%E5%B0%8F%20cron%20%E7%8E%AF%E5%A2%83%E4%B8%AD%E6%9C%AA%E8%AE%BE%E7%BD%AE%E7%9A%84%E7%8E%AF%E5%A2%83%E5%8F%98%E9%87%8F%E3%80%82%3C%2FSPAN%3E%3C%2FLI%3E%0A%3CLI%20data-hveid%3D%22CAMQCw%22%3E%3CSPAN%20class%3D%22T286Pc%22%3E%E5%8C%85%E5%90%AB%E9%9D%9E%E6%96%87%E6%9C%AC%E5%AD%97%E7%AC%A6%E7%9A%84%E8%84%9A%E6%9C%AC%E5%8F%AF%E8%83%BD%E5%AF%BC%E8%87%B4%E6%95%85%E9%9A%9C%3C%2FSPAN%3E%3C%2FLI%3E%0A%3C%2FUL%3E%0A%3C%2FLI%3E%0A%3C%2FUL%3E%0A%3CBR%20%2F%3E%0A%3CDIV%20class%3D%22Y3BBE%22%20data-hveid%3D%22CAQQAA%22%20data-processed%3D%22true%22%3E%3CSTRONG%20class%3D%22Yjhzub%22%3E%E6%95%85%E9%9A%9C%E6%8E%92%E9%99%A4%E6%AD%A5%E9%AA%A4%3C%2FSTRONG%3E%3C%2FDIV%3E%0A%3CDIV%20class%3D%22Y3BBE%22%20data-hveid%3D%22CAQQAA%22%20data-processed%3D%22true%22%3E%26nbsp%3B%3C%2FDIV%3E%0A%3COL%20class%3D%22VimKh%22%20data-processed%3D%22true%22%3E%0A%3CLI%20data-hveid%3D%22CAcQAA%22%3E%3CSPAN%20class%3D%22T286Pc%22%3E%E8%AE%B0%E5%BD%95%E8%84%9A%E6%9C%AC%E8%BE%93%E5%87%BA%3CSTRONG%20class%3D%22Yjhzub%22%3E%EF%BC%9A%3C%2FSTRONG%3E%E5%B0%86%E8%84%9A%E6%9C%AC%E8%BE%93%E5%87%BA%E9%87%8D%E5%AE%9A%E5%90%91%E5%88%B0%E6%97%A5%E5%BF%97%E6%96%87%E4%BB%B6%EF%BC%8C%E4%BB%A5%E6%9F%A5%E7%9C%8B%E4%BB%BB%E4%BD%95%E9%94%99%E8%AF%AF%E4%BF%A1%E6%81%AF%E3%80%82%3C%2FSPAN%3E%0A%3CDIV%20class%3D%22r1PmQe%22%20data-wiz-uids%3D%22GKze5d_4e%2CGKze5d_4f%2CGKze5d_4g%22%20data-hveid%3D%22CAcQAQ%22%3E%0A%3CDIV%3E%0A%3CDIV%20class%3D%22pHpOfb%22%20data-animation-atomic%3D%22%22%3E%0A%3CDIV%20class%3D%22vVRw1d%22%3E%E6%95%B2%E5%87%BB%3C%2FDIV%3E%0A%3C%2FDIV%3E%0A%3C%2FDIV%3E%0A%3C%2FDIV%3E%0A%3C%2FLI%3E%0A%3C%2FOL%3E%0A%3CP%3E%3CLI-WRAPPER%3E%3C%2FLI-WRAPPER%3E%3C%2FP%3E%0A%3CUL%3E%0A%3CLI%20data-hveid%3D%22CAcQAA%22%3E%0A%3CDIV%20class%3D%22r1PmQe%22%20data-wiz-uids%3D%22GKze5d_4e%2CGKze5d_4f%2CGKze5d_4g%22%20data-hveid%3D%22CAcQAQ%22%3E%0A%3CDIV%3E%0A%3CDIV%20class%3D%22pHpOfb%22%20data-animation-atomic%3D%22%22%3E%0A%3CDIV%20class%3D%22pCTyYe%22%3E%0A%3CPRE%20translate%3D%22no%22%3E%3CCODE%20translate%3D%22no%22%3E%3CSPAN%20class%3D%22undefined%22%3E*%20*%20*%20*%20*%20%2Fpath%2Fto%2Fyour%2Fscript.sh%20%26gt%3B%26gt%3B%20%2Fvar%2Flog%2Fyour_script.log%20%3C%2FSPAN%3E%3CSPAN%20class%3D%22tnfcCf%22%3E2%3C%2FSPAN%3E%3CSPAN%20class%3D%22undefined%22%3E%26gt%3B%26amp%3B%3C%2FSPAN%3E%3CSPAN%20class%3D%22tnfcCf%22%3E1%3C%2FSPAN%3E%0A%3C%2FCODE%3E%3C%2FPRE%3E%0A%3C%2FDIV%3E%0A%3C%2FDIV%3E%0A%3C%2FDIV%3E%0A%3C%2FDIV%3E%0A%3C%2FLI%3E%0A%3CLI%20data-hveid%3D%22CAcQAw%22%3E%3CSPAN%20class%3D%22T286Pc%22%3E%E6%A3%80%E6%9F%A5%E6%9D%83%E9%99%90%EF%BC%9A%E4%BD%BF%E7%94%A8%3CCODE%20class%3D%22o8j0Mc%22%3Els%20-l%20%2Fpath%2Fto%2Fyour%2Fscript.sh%3C%2FCODE%3E%E9%AA%8C%E8%AF%81%E8%84%9A%E6%9C%AC%E6%98%AF%E5%90%A6%E6%9C%89%E6%89%A7%E8%A1%8C%3CCODE%20class%3D%22o8j0Mc%22%3E(x%3C%2FCODE%3E)%20%E6%9D%83%E9%99%90%E3%80%82%E5%A6%82%E6%9E%9C%E6%B2%A1%E6%9C%89%EF%BC%8C%E8%AF%B7%E8%BF%90%E8%A1%8C%3CCODE%20class%3D%22o8j0Mc%22%3Echmod%20%2Bx%20%2Fpath%2Fto%2Fyour%2Fscript.sh%3C%2FCODE%3E%E3%80%82%3C%2FSPAN%3E%3C%2FLI%3E%0A%3CLI%20data-hveid%3D%22CAcQBA%22%3E%3CSPAN%20class%3D%22T286Pc%22%3E%E4%BD%BF%E7%94%A8%E5%AE%8C%E6%95%B4%E8%B7%AF%E5%BE%84%EF%BC%9A%E5%9C%A8%E8%84%9A%E6%9C%AC%E4%B8%AD%EF%BC%8C%E7%94%A8%E5%AE%8C%E6%95%B4%E8%B7%AF%E5%BE%84%E6%9B%BF%E6%8D%A2%E7%9B%B8%E5%AF%B9%E8%B7%AF%E5%BE%84%E5%91%BD%E4%BB%A4%EF%BC%88%E4%BE%8B%E5%A6%82%EF%BC%8C%E7%94%A8%3CCODE%20class%3D%22o8j0Mc%22%3E%2Fbin%2Fgrep%3C%2FCODE%3E%E4%BB%A3%E6%9B%BF%3CCODE%20class%3D%22o8j0Mc%22%3Egrep%3C%2FCODE%3E%EF%BC%89%E3%80%82%3C%2FSPAN%3E%3C%2FLI%3E%0A%3CLI%20data-hveid%3D%22CAcQBQ%22%3E%3CSPAN%20class%3D%22T286Pc%22%3E%E8%AE%BE%E7%BD%AE%E7%8E%AF%E5%A2%83%E5%8F%98%E9%87%8F%EF%BC%9A%E5%9C%A8%20cron%20%E6%9D%A1%E7%9B%AE%E6%88%96%E8%84%9A%E6%9C%AC%E9%A1%B6%E9%83%A8%E6%B7%BB%E5%8A%A0%3CCODE%20class%3D%22o8j0Mc%22%3EPATH%3C%2FCODE%3E%E5%92%8C%E5%85%B6%E4%BB%96%E5%BF%85%E8%A6%81%E5%8F%98%E9%87%8F%EF%BC%8C%E4%BB%A5%E5%AE%9A%E4%B9%89%E7%8E%AF%E5%A2%83%E3%80%82%3C%2FSPAN%3E%3C%2FLI%3E%0A%3CLI%20data-hveid%3D%22CAcQBg%22%3E%3CSPAN%20class%3D%22T286Pc%22%3E%E6%A3%80%E6%9F%A5%E6%8D%A2%E8%A1%8C%E7%AC%A6%3CSTRONG%20class%3D%22Yjhzub%22%3E%EF%BC%9A%3C%2FSTRONG%3E%E6%89%93%E5%BC%80%3CCODE%20class%3D%22o8j0Mc%22%3E%2Fetc%2Fcrontab%3C%2FCODE%3E%EF%BC%8C%E7%A1%AE%E4%BF%9D%E6%9D%A1%E7%9B%AE%E4%B8%AD%E6%9C%80%E5%90%8E%E4%B8%80%E6%9D%A1%E5%91%BD%E4%BB%A4%E5%90%8E%E6%9C%89%E6%96%B0%E8%A1%8C%E5%AD%97%E7%AC%A6%E3%80%82%3C%2FSPAN%3E%3C%2FLI%3E%0A%3CLI%20data-hveid%3D%22CAcQBw%22%3E%3CSPAN%20class%3D%22T286Pc%22%3E%E9%AA%8C%E8%AF%81%E7%94%A8%E6%88%B7%E5%AD%97%E6%AE%B5%3CSTRONG%20class%3D%22Yjhzub%22%3E%EF%BC%9A%3C%2FSTRONG%3E%E5%AF%B9%E4%BA%8E%3CCODE%20class%3D%22o8j0Mc%22%3E%2Fetc%2Fcrontab%3C%2FCODE%3E%EF%BC%8C%E7%A1%AE%E4%BF%9D%E5%AD%98%E5%9C%A8%E7%94%A8%E6%88%B7%E5%AD%97%E6%AE%B5%EF%BC%88%E5%A6%82%3CCODE%20class%3D%22o8j0Mc%22%3Eroot%3C%2FCODE%3E%EF%BC%89%E3%80%82%3C%2FSPAN%3E%3C%2FLI%3E%0A%3CLI%20data-hveid%3D%22CAcQCA%22%3E%3CSPAN%20class%3D%22T286Pc%22%3E%E4%BD%BF%E7%94%A8%3CSTRONG%20class%3D%22Yjhzub%22%3E%3CCODE%20class%3D%22o8j0Mc%22%3Ecron.d%3C%2FCODE%3E%EF%BC%9A%3C%2FSTRONG%3E%E5%AF%B9%E4%BA%8E%20root%20%E6%89%80%E6%9C%89%E7%9A%84%E4%BD%9C%E4%B8%9A%EF%BC%8C%E5%8F%AF%E8%80%83%E8%99%91%E5%B0%86%E5%85%B6%E6%94%BE%E7%BD%AE%E5%9C%A8%3CCODE%20class%3D%22o8j0Mc%22%3E%2Fetc%2Fcron.d%2F%3C%2FCODE%3E%E8%80%8C%E4%B8%8D%E6%98%AF%E7%9B%B4%E6%8E%A5%E7%BC%96%E8%BE%91%3CCODE%20class%3D%22o8j0Mc%22%3E%2Fetc%2Fcrontab%3C%2FCODE%3E%EF%BC%8C%E4%BB%A5%E4%BE%BF%E6%9B%B4%E5%A5%BD%E5%9C%B0%E7%BB%84%E7%BB%87%E5%B7%A5%E4%BD%9C%3C%2FSPAN%3E%3C%2FLI%3E%0A%3C%2FUL%3E%0A%3CP%3E%3CSPAN%20class%3D%22T286Pc%22%3E%E6%AD%A4%E8%87%B4%3C%2FSPAN%3E%3C%2FP%3E%3C%2FLINGO-BODY%3E