From a shell running at the default nice value of 0, which command starts `./render.sh` with nice value 15 so it competes weakly for CPU time?

LPIC-1 Exam 101-500, objective 103. GNU and Unix commands medium

Machine-checked — no person has signed for it. This question was read against the source cited below by an automated pass, which found no contradiction. That is a weaker claim than it sounds: the same kind of process wrote the question, so it can confirm its own mistake.

Treat it as a good draft rather than as settled fact, and read the source below before you rely on it. It is not used in mock exams here — only questions a person has signed for are.

How these questions are written — where each question comes from, what the verification ledger records, and what happens when one is found wrong.

The options

Not correct renice -n 15 ./render.sh

Wrong tool. renice changes an already running process and expects a PID, a user or a process group — not a command to start.

Correct nice -n 15 ./render.sh

Correct. nice launches a new command after adding the given adjustment to the shell's own nice value, so from the usual nice 0 the job runs at 15 and yields CPU to everything more important.

Not correct nice -n -15 ./render.sh

Wrong sign. A negative nice value raises priority, which is the opposite of what was asked, and it would additionally require root.

Not correct nice -p 15 ./render.sh

Wrong. nice has no -p option; -p for selecting a PID belongs to renice. GNU nice rejects it with 'invalid option -- p' and exits without running anything.

Why

nice starts a new process with an adjusted nice value; renice changes one that already exists. The number after -n is an increment added to the shell's current nice value, which is 0 in a normal login shell, so `nice -n 15` gives 15. Remember that `nice cmd` with no -n adds 10 (GNU coreutils) rather than setting the value to 0.

Where this comes from

Cited
LPI exam objective 103.6
What it says
Start a program with a chosen scheduling priority using nice.

Practise this

Reading one question is not practice. The trainer will draw a short set from objective 103 and space the ones you get wrong.

Practise LPIC-1 Exam 101-500

More questions on this objective

All questions on GNU and Unix commands

Practise LPIC-1 Exam 101-500