質問編集履歴

1

その他試した結果を追記

2021/07/19 05:17

投稿

kz04
kz04

スコア0

test CHANGED
File without changes
test CHANGED
@@ -63,3 +63,39 @@
63
63
  ネット検索していたところ、DISPLAY=:0 とか DISPLAY=:0.0 または
64
64
 
65
65
  export DISPLAY=:0 という例もありましたので試してみましたが起動しませんでした。
66
+
67
+
68
+
69
+ 50 13 * * * root DISPLAY=:0 /root/mywork/test.sh >> /tmp/result.log 2>&1
70
+
71
+ または
72
+
73
+ 53 13 * * * root DISPLAY=:0.0 /root/mywork/test.sh >> /tmp/result.log 2>&1
74
+
75
+ の結果 /var/log/cronには
76
+
77
+ CROND[224497]: (root) CMD (DISPLAY=:0.0 /root/mywork/test.sh >> /tmp/result.log 2>&1
78
+
79
+ result.logには
80
+
81
+ No protocol specified
82
+
83
+ 13:53:01: Error: Unable to initialize GTK+, is DISPLAY set properly?
84
+
85
+ となりました。
86
+
87
+
88
+
89
+ また
90
+
91
+ 57 13 * * * root export DISPLAY=:0 /root/mywork/test.sh >> /tmp/result.log 2>&1
92
+
93
+ にすると/var/log/cronには
94
+
95
+ CROND[224593]: (root) CMD (export DISPLAY=:0 /root/mywork/test.sh >> /tmp/result.log 2>&1)
96
+
97
+ result.logには
98
+
99
+ /bin/bash: 0 行: export: `/root/mywork/test.sh': 有効な識別子ではありません
100
+
101
+ となりました