Processes Flashcards
A process is ?
An instance of one or more related tasks (threads) executing on your computer.
A Process is different from a Command in ?
A command may actually start several processes simultaneously.
Example of some process types ?
\+ Interactive processes \+ Batch processes \+ Daemons \+ Threads \+ Kernel threads
Interactive processes are ?
Processes started by a user, either at a command line or through a graphical interface such as an icon or a menu selection.
Examples of interactive processes ?
bash, firefox, top
Batch processes are ?
Automatic processes which are scheduled from and then disconnected from the terminal. These tasks are queued and work on a FIFO (First-In, First-Out) basis.
Examples of batch processes ?
updatedb, ldconfig
Daemons are ?
Server processes that run continuously. Many are launched during system startup and then wait for a user or system request indicating that their service is required.
Examples of daemons ?
httpd, sshd, libvirtd
Threads are ?
Lightweight processes. These are tasks that run under the umbrella of a main process, sharing memory and other resources, but are scheduled and run by the system on an individual basis. An individual thread can end without terminating the whole process and a process can create new threads at any time. Many non-trivial programs are multi-threaded.
Examples of threads ?
firefox, gnome-terminal-server
Kernel threads are ?
Kernel tasks that users neither start nor terminate and have little control over. These may perform actions like moving a thread from one CPU to another, or making sure input/output operations to disk are completed.
Examples of kernel threads ?
kthreadd, migration, ksoftirq
A scheduler is ?
A kernel function that constantly shifts processes on and off CPU, sharing time according to relative priority, how much time is needed and how much has been granted to a task.
What does a process in a running-state do ?
That process is currently executing instructions on a CPU, or is waiting to be granted a share of time so it can executes.
What does a process in a sleep-state do ?
That process is waiting for something to happen before it can resume (eg. for the user to type something).
The process is sitting on a wait queue.
What does it mean if a process is in a zombie-state ?
In general, there are parent processes and child processes. Sometimes, when a child process completes, but its parent process has not asked about its state yet. Such a child process is said to be in a zombie-state. It is not really alive but still shows up in the system’s list of processes.
How the OS keeps track of a process ?
By giving it a unique process ID number (PID).
What does a PID track ?
\+ Process state \+ CPU usage \+ Memory usage \+ Location of resource in memory \+ Others
What does PID 1 denote ?
init process
What does PPID stand for ?
Parent Process ID
What is a Parent Process ID ?
Process (Parent) that started this process. If the parent dies, the PPID will refer to an adoptive parent; on recent kernels, this is kthreadd which has PPID=2.
What does TID stand for ?
Thread ID
What is a Thread ID ?
Thread ID number. This is the same as the PID for single-threaded processes. For a multi-threaded process, each thread shares the same PID, but has a unique TID.
Command to terminate a process ?
kill -SIGKILL
or
kill -9
How to kill processes of another user ?
You can’t, or must be root
RUID is ?
Real User ID : ID assigned to user who starts a process.
EUID is ?
Effective User ID: ID assigned to user who determines access rights to other users. May or may not be the same as RUID.
RGID ?
Real Group ID: ID assigned to a group.
EGID ?
Effective Group ID: ID assigned to group who determines the access rights of other groups.
How many task at a time can a CPU handle ?
One.
A nice value is ?
The priority of a process.
Higher priority has higher/lower nice value ?
Lower.
Load average is ?
The average of the load number for a given period of time.
Command line to view the “load average” ?
w, uptime or top
Interpret this load average ?
0.45, 0.17, and 0.12
- 45: For the last minute the system has been 45% utilized on average.
- 17: For the last 5 minutes utilization has been 17%.
- 12: For the last 15 minutes utilization has been 12%.
Load average of 1.00 means ?
CPU is utilized 100%
Load average of > 1.00 means ?
CPU is over-utilized
If there is a quad-CPU system, a load average of 4.00 means ?
CPU is utilized 100%
Foreground jobs are ?
Commands run directly from the shell. When foreground jobs are running, other jobs must wait to access to the shell.
If the job takes long time to complete, what can be done so that other jobs can access to the shell ?
Run the job in background and free the shell for other tasks.
Command to list the jobs running in the background ?
jobs -l
To make a job run in the background, add ?
&
sleep 100 &
To view currently running processes ?
ps
To display information of processes for a specified username ?
ps -u
To display all processes of the system in full detail ?
ps -ef
To display processes running on the system in tree form ?
pstree
To display system performance live overtime ?
top
Nice value or Niceness is written as ?
ni
Swap space is ?
Temporary storage space on a hard drive.
Utility program to schedule non-interactive command at a specified time in the future.
at
at now + 2 days
Utility program to schedule a job on an on-going basis.
cron
crontab -e
Utility program to suspend execution of a program for at least a specified period of time. After that time has passed, the execution will be resumed.
sleep
To see the queue of pending jobs
atq