Process Control Commands

Duration: 8 min

This video lesson is available to enrolled students.

Enroll to watch — DSSSB TGT Computer Science 2026 Section B

AI summary & chapters

AI Summary

An AI-generated summary of this video lecture.

This lecture introduces Linux process control commands using a structured slide titled “Process Control Commands.” The instructor presents a table comparing command names, functions, and terminal examples. Early coverage includes fg and kill, then transitions to accton, bg, and chrt. The instructor explains that accton enables process accounting by starting collection of accounting information about processes, with the example sudo accton on. The bg command is described as resuming a stopped job process in the background, demonstrated with user@linux:~$ bg %1. The chrt command is explained as manipulating real-time scheduling attributes of a process, with examples involving SCHED_OTHER and SCHED_FIFO outputs. Red annotations are used to highlight key arguments such as on, 100 in sleep 100, and scheduling policy names. Later, the lecture returns to job control with fg %1 bringing a background job to the foreground and kill terminating processes or sending signals. Signal examples include kill 12345, kill -9 12345 for force kill (SIGKILL), and kill -15 12345 for graceful termination (SIGTERM). The instructor also emphasizes privilege considerations, noting that sudo may be required depending on the process and operation. Because only sampled screenshots are available, exact spoken explanations beyond visible text and annotations cannot be fully verified.

Chapters

  1. 0:00 2:00 00:00-02:00

    The slide titled “Process Control Commands” opens with a table focusing on fg and kill, then transitions to accton, bg, and chrt. Visible text includes “Process Control Commands,” “fg,” “kill,” “accton,” “bg,” and “chrt.” The instructor gestures while explaining, using a structured table to compare commands with terminal examples and output.

  2. 2:00 5:00 02:00-05:00

    The lecture details accton, bg, and chrt. On-screen descriptions state that accton “Enables process accounting,” bg “Resumes a stopped (job) process in the background,” and chrt “Manipulates real-time scheduling attributes of a process.” Examples shown include sudo accton on, fg %1, bg %1, and chrt output containing SCHED_OTHER. Red underlines and circles emphasize key terms such as on, 100 in sleep 100, and scheduling policy names.

  3. 5:00 7:57 05:00-07:57

    The focus shifts to job control and termination. The slide shows user@linux:~$ bg %1 and user@linux:~$ fg %1, with fg described as bringing a background job to the foreground. The kill command is explained as terminating a process or sending a signal, with examples: kill 12345, kill -9 12345 # Force kill (SIGKILL), and kill -15 12345 # Graceful termination (SIGTERM). The instructor circles signal numbers 9 and 15 and a note about using sudo when required.

The central teaching goal is to help students recognize and use common Linux process control commands. The lecture organizes the material into a command-function-example table, making it easy to compare what each command does and how it is typed. Key concepts include job control with fg and bg, process accounting with accton, real-time scheduling manipulation with chrt, and process termination or signaling with kill. The instructor uses terminal examples to connect definitions to practical usage: bg %1 resumes a stopped job in the background, fg %1 brings it back to the foreground, sudo accton on enables accounting, and chrt examples show scheduling policies such as SCHED_OTHER. The kill section distinguishes default termination from explicit signals, emphasizing that -9 sends SIGKILL for forceful termination while -15 sends SIGTERM for graceful shutdown. Privilege management is also highlighted, with sudo noted as potentially required depending on the target process and operation. Red annotations serve as visual cues for important arguments, signal numbers, and policy names, supporting exam revision by drawing attention to syntax details that are likely to be tested.

Loading lesson…