Question 146 of 522
Shells, Scripting and Data ManagementmediumMultiple ChoiceObjective-mapped

Quick Answer

The answer is the PATH environment variable. When a script runs manually, your interactive shell provides a fully populated PATH that includes directories like /usr/local/bin and any custom script locations, but cron executes with a severely restricted default PATH—typically just /usr/bin:/bin. If your script calls commands such as mysql, psql, or a custom utility stored outside these two directories, cron will fail with a “command not found” error. On the LPIC-1 exam, this question tests your understanding of the cron environment’s stripped-down nature versus a user’s login shell; it’s a classic trap where candidates assume the script works everywhere because it works in the terminal. The fix is to set the full PATH explicitly inside the script or in the crontab file itself. Memory tip: “Cron cuts corners—PATH is the first place it cuts.”

LPIC-1 Shells, Scripting and Data Management Practice Question

This LPIC-1 practice question tests your understanding of shells, scripting and data management. The scenario asks you to isolate a root cause — eliminate options that address a different problem before choosing. After answering, compare your reasoning against the explanation and wrong-answer breakdown below. Once you have made your selection, read the full explanation to reinforce the concept and understand why each distractor is designed to mislead on exam day.

A system administrator writes a script that extracts data from a CSV file and inserts it into a database. The script works correctly when run manually but fails when executed by cron. Which environment variable is most likely causing the issue?

Clue words in this question

Noticing these words before you look at the options changes how you read each choice.

  • Clue: "most likely"

    Why it matters: Probability qualifier — the question wants the most probable cause or outcome, not a guaranteed one. Eliminate low-probability options.

Question 1mediummultiple choice
Full question →

Answer choices

Why each option matters

Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.

Correct answer & explanation

PATH

When a script runs manually, the user's interactive shell inherits a fully populated PATH environment variable that includes directories like /usr/local/bin, /usr/bin, and possibly custom script directories. Cron jobs, however, execute with a minimal environment, and the default PATH for cron is often just /usr/bin:/bin. If the script relies on commands (e.g., mysql, psql, or custom scripts) located outside these directories, cron will fail with a 'command not found' error. Setting the full PATH explicitly inside the script or in the crontab file resolves the issue.

Key principle: Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.

Answer analysis

Option-by-option breakdown

For each option: why learners choose it and why it is or isn't the right answer here.

  • SHELL

    Why it's wrong here

    SHELL is set by cron to /bin/sh or the user's shell.

  • LANG

    Why it's wrong here

    LANG affects locale but not command availability.

  • HOME

    Why it's wrong here

    HOME is set by cron to the user's home directory.

  • PATH

    Why this is correct

    PATH is often not set in cron, causing command not found errors.

    Clue confirmation

    The clue word "most likely" in the question point toward this answer.

    Related concept

    Read the scenario before looking for a memorised answer.

Common exam traps

Common exam trap: answer the scenario, not the keyword

The trap here is that candidates often assume the script's failure is due to a missing HOME or SHELL variable, but the most frequent cron-related issue is the restricted PATH environment, which prevents the script from locating executables.

Trap categories for this question

  • Command / output trap

    LANG affects locale but not command availability.

Detailed technical explanation

How to think about this question

Cron's default PATH is set by the cron daemon (often /usr/bin:/bin) and is not inherited from the user's login shell. This is defined in the cron source code or the pam_env configuration. A common real-world scenario is a backup script that calls 'mysqldump' — if /usr/local/mysql/bin is not in cron's PATH, the script fails silently or logs an error. The fix is to either export PATH at the top of the script or use absolute paths for all external commands.

KKey Concepts to Remember

  • Read the scenario before looking for a memorised answer.
  • Find the constraint that changes the correct option.
  • Eliminate answers that are true in general but not in this case.

TExam Day Tips

  • Watch for words such as best, first, most likely and least administrative effort.
  • Review why wrong options are wrong, not only why the correct option is correct.

Key takeaway

Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.

Real-world example

How this comes up in practice

A small business has 20 workstations on the 192.168.1.0/24 network and one public IP from its ISP. The router uses PAT (NAT overload) so all 20 devices share one public address using different source ports. NAT questions test whether you understand the four address terms and which direction each translation applies.

What to study next

Got this wrong? Here's your next step.

Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.

Related practice questions

Related LPIC-1 practice-question pages

Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.

Practice this exam

Start a free LPIC-1 practice session

Short sessions build daily habit. Longer sessions build exam-day stamina. Try a timed session to simulate real conditions.

FAQ

Questions learners often ask

What does this LPIC-1 question test?

Shells, Scripting and Data Management — This question tests Shells, Scripting and Data Management — Read the scenario before looking for a memorised answer..

What is the correct answer to this question?

The correct answer is: PATH — When a script runs manually, the user's interactive shell inherits a fully populated PATH environment variable that includes directories like /usr/local/bin, /usr/bin, and possibly custom script directories. Cron jobs, however, execute with a minimal environment, and the default PATH for cron is often just /usr/bin:/bin. If the script relies on commands (e.g., mysql, psql, or custom scripts) located outside these directories, cron will fail with a 'command not found' error. Setting the full PATH explicitly inside the script or in the crontab file resolves the issue.

What should I do if I get this LPIC-1 question wrong?

Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.

Are there clue words in this question I should notice?

Yes — watch for: "most likely". Probability qualifier — the question wants the most probable cause or outcome, not a guaranteed one. Eliminate low-probability options.

What is the key concept behind this question?

Read the scenario before looking for a memorised answer.

About these practice questions

Courseiva creates original exam-style practice questions with explanations and wrong-answer analysis. It does not publish real exam questions, exam dumps, or protected exam content. Learn why practice questions differ from exam dumps →

How Courseiva writes practice questions · Editorial policy

Same concept, more angles

2 more ways this is tested on LPIC-1

These questions test the same concept from different angles. Work through them to make sure you can recognise it however the exam phrases it.

Variation 1. A cron job is configured to run a script every day at 2:30 AM. The sysadmin notices the job runs but produces no output. Which is the most likely reason?

easy
  • A.The cron daemon is not running.
  • B.The script requires a terminal to run.
  • C.The MAILTO environment variable is not set, and the output is not redirected.
  • D.Cron automatically suppresses all output.

Why C: Option C is correct because cron jobs run in a non-interactive, non-terminal environment. By default, cron captures any output (stdout/stderr) from the job and attempts to email it to the user. If the MAILTO variable is not set and the output is not redirected to a file or /dev/null, the output is simply discarded, resulting in no visible output. The job still runs successfully, but the output is lost.

Variation 2. Refer to the exhibit. Why does the cron job fail?

hard
  • A.The cron job lacks the PATH environment variable.
  • B.The script is owned by root, but the cron job runs as a different user.
  • C.The script is not executable.
  • D.The script lacks a shebang line.

Why C: C is correct because cron jobs require the script to be executable (i.e., have the execute permission bit set). If the script is not executable, cron will fail to run it even if the shebang line and PATH are correct. The error typically appears in the cron log or as a silent failure.

Keep practising

More LPIC-1 practice questions

Last reviewed: Jun 11, 2026

Question Discussion

Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.

Loading comments…

Sign in to join the discussion.

This LPIC-1 practice question is part of Courseiva's free LPI certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the LPIC-1 exam.