#!/usr/bin/python import time with open("/home/username/Desktop/startup.txt",'a') as f: f.write(str(time.time()) + " It worked!")
(实际的脚本有点不一样,因为我只是为了测试的目的而使用这个脚本,但是你得到了这个想法)
我已经尝试过以下所有,没有运气:
>将命令python startuptest.py放在crontab中,作为@reboot
python /home/username/Documents/startuptest.py,都是普通用户和sudo
>将命令python /home/username/Documents/startuptest.py放在/etc/rc.local中
>打开Ubuntu的启动应用程序,并将命令放在那里
>完成以上所有操作,将命令放入shell脚本中
并调用该shell脚本
没有什么工作。我感到我失去了一些简单的东西。有任何想法吗? (如果我从终端运行命令,脚本运行正常。)