码迷,mamicode.com
首页 > 其他好文 > 详细

在 beaglebone black 开机启动自己的QT程序

时间:2014-05-15 03:06:09      阅读:265      评论:0      收藏:0      [点我收藏+]

标签:linux   qt   

在 beaglebone black上的Linux系统 开机启动自己的QT程序

把自己编译好的mycomtest程序放在/usr/bin/qtopia/myproject 

看/etc/init.d下有没有rc.local,没有的话,创建一个,有的话,就在里面直接的exit 0前添加 /usr/bin/qtopia/myproject /mycomtest -qws & ,开机就能启动。

我的机子里没有rc.local文件,则有以下步骤:


#touch /etc/init.d/rc.local


#chmod +x /etc/init.d/rc.local


#vi /etc/init.d/rc.local


#ln -sf /etc/init.d/rc.local /etc/rc0.d/K999rc.local 


#ln -sf /etc/init.d/rc.local /etc/rc1.d/K999rc.local 


#ln -sf /etc/init.d/rc.local /etc/rc2.d/S999rc.local 


#ln -sf /etc/init.d/rc.local /etc/rc3.d/S999rc.local 


#ln -sf /etc/init.d/rc.local /etc/rc4.d/S999rc.local 


#ln -sf /etc/init.d/rc.local /etc/rc5.d/S999rc.local 


#ln -sf /etc/init.d/rc.local /etc/rc6.d/K999rc.local




/etc/init.d/rc.local的内容为:


#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.



/usr/bin/qtopia/myproject /mycomtest -qws &
exit 0


结果:开机自启动成功。

在 beaglebone black 开机启动自己的QT程序,布布扣,bubuko.com

在 beaglebone black 开机启动自己的QT程序

标签:linux   qt   

原文地址:http://blog.csdn.net/wjs1033/article/details/25798263

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!