How to ensure custom Debian service starts first? The 2019 Stack Overflow Developer Survey...

What is the accessibility of a package's `Private` context variables?

Can someone be penalized for an "unlawful" act if no penalty is specified?

Return to UK after being refused entry years previously

Time travel alters history but people keep saying nothing's changed

Are there any other methods to apply to solving simultaneous equations?

Do these rules for Critical Successes and Critical Failures seem Fair?

Is flight data recorder erased after every flight?

What is the closest word meaning "respect for time / mindful"

Geography at the pixel level

How to obtain Confidence Intervals for a LASSO regression?

If a Druid sees an animal’s corpse, can they wild shape into that animal?

How to save as into a customized destination on macOS?

Who coined the term "madman theory"?

Have you ever entered Singapore using a different passport or name?

What is the motivation for a law requiring 2 parties to consent for recording a conversation

What to do when moving next to a bird sanctuary with a loosely-domesticated cat?

If I score a critical hit on an 18 or higher, what are my chances of getting a critical hit if I roll 3d20?

Why do UK politicians seemingly ignore opinion polls on Brexit?

Why was M87 targetted for the Event Horizon Telescope instead of Sagittarius A*?

One word riddle: Vowel in the middle

What tool would a Roman-age civilization have for the breaking of silver and other metals into dust?

What does ひと匙 mean in this manga and has it been used colloquially?

Am I thawing this London Broil safely?

How to support a colleague who finds meetings extremely tiring?



How to ensure custom Debian service starts first?



The 2019 Stack Overflow Developer Survey Results Are InGetting a service started automatically when another gets startedHow to troubleshoot udev not creating /dev/hda3 on gentoo boot?How to set global environment variables at boot through a script, and have them available for an application that runs before login?Problem starting a service running DebianCan't boot Debian with windows installed firstFull Linux Install On USB Drive - GRUB ProblemsUnknown runlevel on Ubuntu 14.04, services not starting on bootsystemd - My custom service exits with status code 216/GROUPWhy does LXQT Autostart not do anything?yocto linux systemd daemonDisplay blacking out on boot (Macbook Linux)





.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}







0















I am writing a custom application on Debian on a beaglebone black variant. I want to have my application be the first service that gets started when the system boots, and I want the system to wait until my application gives the all clear (is finished initializing) before it starts any other services within reason. I would want it to start after the file system but before networking for example.



What strategy can I use to achieve this?










share|improve this question









New contributor




user77232 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
















  • 2





    Would this be a relevant answer? or are you looking for something more like this?

    – kemotep
    yesterday








  • 1





    In addition to @kemotep 's comment, you should review this. So in general, your "strategy" should be to use systemd, and learn how it works :)

    – Seamus
    yesterday











  • Yes, so this is would be a conglomerate of all three links. Systemd it is.

    – user77232
    yesterday


















0















I am writing a custom application on Debian on a beaglebone black variant. I want to have my application be the first service that gets started when the system boots, and I want the system to wait until my application gives the all clear (is finished initializing) before it starts any other services within reason. I would want it to start after the file system but before networking for example.



What strategy can I use to achieve this?










share|improve this question









New contributor




user77232 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
















  • 2





    Would this be a relevant answer? or are you looking for something more like this?

    – kemotep
    yesterday








  • 1





    In addition to @kemotep 's comment, you should review this. So in general, your "strategy" should be to use systemd, and learn how it works :)

    – Seamus
    yesterday











  • Yes, so this is would be a conglomerate of all three links. Systemd it is.

    – user77232
    yesterday














0












0








0








I am writing a custom application on Debian on a beaglebone black variant. I want to have my application be the first service that gets started when the system boots, and I want the system to wait until my application gives the all clear (is finished initializing) before it starts any other services within reason. I would want it to start after the file system but before networking for example.



What strategy can I use to achieve this?










share|improve this question









New contributor




user77232 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.












I am writing a custom application on Debian on a beaglebone black variant. I want to have my application be the first service that gets started when the system boots, and I want the system to wait until my application gives the all clear (is finished initializing) before it starts any other services within reason. I would want it to start after the file system but before networking for example.



What strategy can I use to achieve this?







boot daemon beagleboneblack






share|improve this question









New contributor




user77232 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











share|improve this question









New contributor




user77232 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









share|improve this question




share|improve this question








edited 22 hours ago









Paradox

497317




497317






New contributor




user77232 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









asked yesterday









user77232user77232

1012




1012




New contributor




user77232 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





New contributor





user77232 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.






user77232 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.








  • 2





    Would this be a relevant answer? or are you looking for something more like this?

    – kemotep
    yesterday








  • 1





    In addition to @kemotep 's comment, you should review this. So in general, your "strategy" should be to use systemd, and learn how it works :)

    – Seamus
    yesterday











  • Yes, so this is would be a conglomerate of all three links. Systemd it is.

    – user77232
    yesterday














  • 2





    Would this be a relevant answer? or are you looking for something more like this?

    – kemotep
    yesterday








  • 1





    In addition to @kemotep 's comment, you should review this. So in general, your "strategy" should be to use systemd, and learn how it works :)

    – Seamus
    yesterday











  • Yes, so this is would be a conglomerate of all three links. Systemd it is.

    – user77232
    yesterday








2




2





Would this be a relevant answer? or are you looking for something more like this?

– kemotep
yesterday







Would this be a relevant answer? or are you looking for something more like this?

– kemotep
yesterday






1




1





In addition to @kemotep 's comment, you should review this. So in general, your "strategy" should be to use systemd, and learn how it works :)

– Seamus
yesterday





In addition to @kemotep 's comment, you should review this. So in general, your "strategy" should be to use systemd, and learn how it works :)

– Seamus
yesterday













Yes, so this is would be a conglomerate of all three links. Systemd it is.

– user77232
yesterday





Yes, so this is would be a conglomerate of all three links. Systemd it is.

– user77232
yesterday










0






active

oldest

votes












Your Answer








StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "106"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});






user77232 is a new contributor. Be nice, and check out our Code of Conduct.










draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f511537%2fhow-to-ensure-custom-debian-service-starts-first%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes








user77232 is a new contributor. Be nice, and check out our Code of Conduct.










draft saved

draft discarded


















user77232 is a new contributor. Be nice, and check out our Code of Conduct.













user77232 is a new contributor. Be nice, and check out our Code of Conduct.












user77232 is a new contributor. Be nice, and check out our Code of Conduct.
















Thanks for contributing an answer to Unix & Linux Stack Exchange!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f511537%2fhow-to-ensure-custom-debian-service-starts-first%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Hudson River Historic District Contents Geography History The district today Aesthetics Cultural...

The number designs the writing. Feandra Aversely Definition: The act of ingrafting a sprig or shoot of one...

Ayherre Geografie Demografie Externe links Navigatiemenu43° 23′ NB, 1° 15′ WL43° 23′ NB, 1°...