解决的问题
mono-service 无法满足要求,启动过程老是出问题
解决方案
1. 使用shell脚本完成后台进程的启动工作!
.sh文件内容
mono /usr/myfoder/camtest/Debug/DREQPAPP.exe >/dev/null 2>&1 &
运行.sh 文件
sh mytest.sh
2. 使用nohup后台挂起线程
nohup DREQPAPP.exe &
大道至简
mono /usr/myfoder/camtest/Debug/DREQPAPP.exe >/dev/null 2>&1 &
运行.sh 文件
sh mytest.sh
nohup DREQPAPP.exe &