podcast Asked: 2024-12-03 09:09:39 +0800 CST2024-12-03 09:09:39 +0800 CST 2024-12-03 09:09:39 +0800 CST 通过 Crontab 在当前 Firefox 会话中打开 URL 772 我打开了 Firefox 会话。我想从 crontab 打开一个 URL。但我希望 crontab 在我当前打开的 Firefox 窗口/会话中打开该 URL。 我的 crontab 条目是: * * * * * export DISPLAY=:0 && /usr/bin/firefox "https://askubuntu.com" 但我收到了如下错误信息: Firefox 已在运行,但无响应。要使用 Firefox,您必须先关闭现有的 Firefox 进程、重启设备或使用其他配置文件。 我在 Xubuntu 24.04 firefox 1 个回答 Voted Best Answer podcast 2024-12-05T22:32:45+08:002024-12-05T22:32:45+08:00 我可以通过以下条目从 cron 在已打开的 Firefox 窗口/会话中打开一个 URL。 * * * * * export XDG_RUNTIME_DIR="/run/user/$(id -u)"; export DISPLAY=:0; /usr/bin/firefox "https://askubuntu.com" 顺便说一句,我不确定这是否相关,但我卸载了 Firefox snap 版本并从 deb 包中安装了它,如下所述:https: //support.mozilla.org/en-US/kb/install-firefox-linux
我可以通过以下条目从 cron 在已打开的 Firefox 窗口/会话中打开一个 URL。
顺便说一句,我不确定这是否相关,但我卸载了 Firefox snap 版本并从 deb 包中安装了它,如下所述:https: //support.mozilla.org/en-US/kb/install-firefox-linux