UNIX Operating System Question:

Download Job Interview Questions and Answers PDF

What are various IDs associated with a process in UNIX OS?

UNIX Operating System Interview Question
UNIX Operating System Interview Question

Answer:

Unix identifies each process with a unique integer called ProcessID. The process that executes the request for creation of a process is called the 'parent process' whose PID is 'Parent Process ID'. Every process is associated with a particular user called the 'owner' who has privileges over the process. The identification for the user is 'UserID'. Owner is the user who executes the process. Process also has 'Effective User ID' which determines the access privileges for accessing resources like files.
getpid() -process id
getppid() -parent process id
getuid() -user id
geteuid() -effective user id

Download UNIX Operating System Interview Questions And Answers PDF

Previous QuestionNext Question
Brief about the initial process sequence while the UNIX system boots up.Explain UNIX fork() system call.