ubuntu开机启动特定程序

1.在/etc/rc.local里添加程序的执行命令,要是全路径的

2.在用户的HOME目录下有.config/autostart目录,这里添加xxx.desktop文件,并加执行权限,调用的程序也要有执行权限

文件内容例如下:

#!/usr/bin/env xdg-open                                             #这是调用xdg-open命令

[Desktop Entry]
Version=1.0
Name=PIS                                   #名字
Comment=pis monitor             #鼠标经过时的描述
Exec=/home/mission/StationPisPlayer/start.sh            #启动后调用的程序
StartupNotify=false
Terminal=false                          #是否使用终端
Type=Application                       #类型
OnlyShowIn=GNOME;Unity;
X-Desktop-File-Install-Versioin=0.20
Name[zh_CN]=pis                    #中文名



你可能感兴趣的:(linux)