I am trying to create an application that would run on ubuntu desktops,I want a scenario where when the OS boots up ,it starts my application and its required services but the main ubuntu desktop does not show so it would seem only my application is running on the device,I need help on how this can be achieved links,articles,commands etc,anything that can point me in the right direction.
相关问题
- QML: Cannot read property 'xxx' of undefin
- Is shmid returned by shmget() unique across proces
- QTextEdit.find() doesn't work in Python
- Why doesn't php sleep work in the windows-subs
- how to get running process information in java?
It is really hard to understand what you are saying but...
You must distinguish major difference between runlevel startup and user session startup. You did not provide any information what kind of application you have.
If you want to launch your application instead of regular session you can hijack X session launching pipeline. At /etc/X11/Xsession.d there are 'shell' scripts. Last one 99- calls exec. You have to provide your own (let's say 98-) script and make exec call before 99-. Scripts are launched in lexical order.