Computer Science, asked by Shivank9468, 11 months ago

Which linux command can be used to view the processes running on a system?

Answers

Answered by veshlinnadar
0

Answer:

The Linux terminal has a number of useful commands that can display running processes, kill them, and change their priority level. This post lists the classic, traditional commands, as well as some more useful, modern ones.

Many of the commands here perform a single function and can be combined — that’s the Unix philosophy of designing programs. Other programs, like htop, provide a friendly interface on top of the commands.

Answered by chvamsi737
0

Answer:

Ctrl+z will suspend the currently foregrounded program

bg will background the most recently suspended program

(use bg %2 with the job number, which you can check with jobs)

fg will foreground the most recently suspended program

Read more on Brainly.in - https://brainly.in/question/12083045#readmore

Explanation:

Similar questions