我需要在ubuntu上的python中登录系统时自动运行文件。任何人都可以指导我如何在ubuntu.Thanks上使用python创建自动运行文件。
答案 0 :(得分:1)
首先回家并按ctrl + h现在你可以看到隐藏文件夹并单击.config文件夹如果autostart文件夹可用则意味着只需创建带有桌面扩展名的文件,例如:auto.dsesktop。
在终端
中键入以下命令gedit .config/autostart/auto.desktop
并在auto.destop文件中输入以下命令
[Desktop Entry]
Type=Application
Exec=python filename.py #this is execution part so u can modify whatever u needs
Hidden=false
NoDisplay=false
X-GNOME-Autostart-enabled=true
Name=<Name_to_be_displayed>
Comment=<optional comment>
答案 1 :(得分:0)
将您的文件标记为可执行文件(chmod +x file.py
)并在Startup Applications
中(在短划线中找到)您可以添加新的启动程序并通过浏览path_to_file>/<file>.py
添加您的文件这将使它在登录时可执行。
您也可以create a cron job。