如何在 fedora 23 启动时使我的 python 可执行文件变为 运行?
How to make my python executable to run on startup in fedora 23?
我已经使用 pyinstaller
使我的脚本可执行,现在我希望它在每个 login/startup 上都成为 运行。 gnome 调整工具没有列出我的可执行文件。我怎样才能做到这一点?
您在这里问了 3 个问题。启动和登录不一样。
1) 要在登录时使用脚本 运行,您可以将其添加到 .bash_profile(用户主目录中的隐藏文件):
https://ask.fedoraproject.org/en/question/35263/execute-shell-script-at-login/
2) 要在启动时使用脚本 运行,您可以选择创建一个 /etc/rc.local 文件 (https://ask.fedoraproject.org/en/question/26898/what-is-the-auto-start-file-like-rclocal/)
确保它是可执行的:
chmod +x /etc/rc.local
启用服务:
systemctl enable rc-local.service
3) 运行 'gnome-session-properties' 并在那里添加您的脚本。
我已经使用 pyinstaller
使我的脚本可执行,现在我希望它在每个 login/startup 上都成为 运行。 gnome 调整工具没有列出我的可执行文件。我怎样才能做到这一点?
您在这里问了 3 个问题。启动和登录不一样。
1) 要在登录时使用脚本 运行,您可以将其添加到 .bash_profile(用户主目录中的隐藏文件): https://ask.fedoraproject.org/en/question/35263/execute-shell-script-at-login/
2) 要在启动时使用脚本 运行,您可以选择创建一个 /etc/rc.local 文件 (https://ask.fedoraproject.org/en/question/26898/what-is-the-auto-start-file-like-rclocal/)
确保它是可执行的:
chmod +x /etc/rc.local
启用服务:
systemctl enable rc-local.service
3) 运行 'gnome-session-properties' 并在那里添加您的脚本。