Final answer:
The priority of a running process can be changed using the 'renice' command in Unix-like operating systems such as Linux.The nice command is used to launch a new process with a specific priority.
Step-by-step explanation:
The correct answer is option 2) renice.
We can change the priority of a running process using the renice command in Unix-like operating systems such as Linux. The nice command is used to launch a new process with a specific priority.
For example, to change the priority of a running process with the process ID (PID) 1234 to a lower priority, you can use the command: renice +5 1234 This will increase the priority value and make the process less important.