Question d’entretien chez Google

Explain how the process is started in Linux(ie syscalls and etc)

Réponse à la question d'entretien

Utilisateur anonyme

24 mars 2021

A process is started by making a system call, for example, $ systemctl start nginx will start a nginx. A system call is an interface for the services running in operating system. system calls can be made in user mode and kernel mode (privileged mode).

4