从 cron 使用 GUI 启动 Octave
Start octave with GUI from cron
我想使用 cronjob 通过 force-gui 选项打开 Octave。
写作
00 22 * * * octave --force-gui > ~/log 2>&1
不开始八度但给出日志消息
octave: unrecognized option '--force-gui'
usage: octave [-HVdfhiqvx] [--debug] [--echo-commands] [--eval CODE]
[--exec-path path] [--help] [--image-path path] [--info-file file]
[--info-program prog] [--interactive] [--line-editing]
[--no-history] [--no-init-file] [--no-init-path] [--no-line-editing]
[--no-site-file] [--no-window-system] [-p path] [--path path]
[--silent] [--traditional] [--verbose] [--version] [file]
当我进入
octave --force-gui
直接在终端,octave打开就好了
我注意到当我输入
时产生了与日志文件中相同的错误
/usr/bin/octave --force-gui
进入终端。
Question: How can I start the octave GUI via Cron?
我在 Linux Mint 16 上使用 Octave 版本 3.8.1。
听起来你安装了两个不同版本的 Octave。一个在 /usr/bin/octave
中(一个没有 --force-gui
选项的旧版本),一个在你的路径中但在 cron 运行s.
时不在路径中的新版本
键入 which octave
以查看您想要 运行 的八度版本在哪里并修复您的路径。您可能也想卸载旧版本的 Octave。
我想使用 cronjob 通过 force-gui 选项打开 Octave。
写作
00 22 * * * octave --force-gui > ~/log 2>&1
不开始八度但给出日志消息
octave: unrecognized option '--force-gui'
usage: octave [-HVdfhiqvx] [--debug] [--echo-commands] [--eval CODE]
[--exec-path path] [--help] [--image-path path] [--info-file file]
[--info-program prog] [--interactive] [--line-editing]
[--no-history] [--no-init-file] [--no-init-path] [--no-line-editing]
[--no-site-file] [--no-window-system] [-p path] [--path path]
[--silent] [--traditional] [--verbose] [--version] [file]
当我进入
octave --force-gui
直接在终端,octave打开就好了
我注意到当我输入
时产生了与日志文件中相同的错误/usr/bin/octave --force-gui
进入终端。
Question: How can I start the octave GUI via Cron?
我在 Linux Mint 16 上使用 Octave 版本 3.8.1。
听起来你安装了两个不同版本的 Octave。一个在 /usr/bin/octave
中(一个没有 --force-gui
选项的旧版本),一个在你的路径中但在 cron 运行s.
键入 which octave
以查看您想要 运行 的八度版本在哪里并修复您的路径。您可能也想卸载旧版本的 Octave。