{"id":12382,"date":"2026-09-15T08:28:46","date_gmt":"2026-09-15T08:28:46","guid":{"rendered":"https:\/\/www.examlabs.com\/certification\/?p=12382"},"modified":"2026-09-15T08:28:46","modified_gmt":"2026-09-15T08:28:46","slug":"lpi-010-160-practice-test-questions-and-exam-dumps-part-14-q261-280","status":"publish","type":"post","link":"https:\/\/www.examlabs.com\/certification\/lpi-010-160-practice-test-questions-and-exam-dumps-part-14-q261-280\/","title":{"rendered":"LPI 010-160 Practice Test Questions and Exam Dumps Part 14 Q261-280"},"content":{"rendered":"<h2><b>View Full <a href=\"https:\/\/www.examlabs.com\/010-160-exam-dumps\">LPI 010-160 Exam Dumps<\/a> and Practice Test Dumps.<\/b><\/h2>\n<p>&nbsp;<\/p>\n<h3><b>Question 261<\/b><\/h3>\n<p><b>Which command sets or displays the default file creation permission mask for newly created files?<\/b><\/p>\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">chmod<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">chown<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">umask<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">chgrp<\/span><\/li>\n<\/ol>\n<p><b>Correct Answer: 3<\/b><\/p>\n<p><b>Explanation<\/b><\/p>\n<p><span style=\"font-weight: 400;\">The umask command is a vital shell builtin utility used in Linux to inspect or set the default permission mask that subtracts security access bits from standard defaults whenever new files and directories are created, enforcing baseline security. While chmod modifies existing file permission bits, chown alters user ownership, and chgrp manages group ownership assignments. Mastering the umask utility is an essential administrative habit for system administrators ensuring that newly generated application files, temporary documents, and shared directory outputs do not inadvertently receive overly permissive access privileges, thereby protecting sensitive data and maintaining strict compliance standards across multi-user enterprise Linux server and cloud infrastructure environments.<\/span><\/p>\n<h3><b>Question 262<\/b><\/h3>\n<p><b>Which modern iproute2 command displays the current network routing table entries?<\/b><\/p>\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">ip route<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">route<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">netstat<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">traceroute<\/span><\/li>\n<\/ol>\n<p><b>Correct Answer: 1<\/b><\/p>\n<p><b>Explanation<\/b><\/p>\n<p><span style=\"font-weight: 400;\">The ip route command is a core component of the modern iproute2 networking suite used to inspect, modify, and display the kernel network routing table, revealing how gateway destinations, default routers, and local subnet interfaces communicate. It replaces legacy commands like route and netstat by querying kernel netlink sockets directly. While traceroute maps intermediate network routing hops, ip route remains the definitive administrative tool for diagnosing routing anomalies, verifying gateway connectivity, and ensuring proper packet forwarding paths across complex enterprise Linux server deployments, multi-homed routers, and cloud infrastructure environments under heavy daily production network workloads.<\/span><\/p>\n<h3><b>Question 263<\/b><\/h3>\n<p><b>Which low-level package manager tool is used to install individual <\/b><b>.deb<\/b><b> packages on Debian-based systems?<\/b><\/p>\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">apt<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">dnf<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">rpm<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">dpkg<\/span><\/li>\n<\/ol>\n<p><b>Correct Answer: 4<\/b><\/p>\n<p><b>Explanation<\/b><\/p>\n<p><span style=\"font-weight: 400;\">The dpkg command serves as the foundational low-level package management utility for Debian-based Linux distributions, responsible for installing, removing, and inspecting individual compiled <\/span><span style=\"font-weight: 400;\">.deb<\/span><span style=\"font-weight: 400;\"> package files directly without automatically resolving remote repository dependency chains. While apt provides high-level dependency handling, dnf manages Red Hat systems, and rpm handles Red Hat packages. Mastering dpkg is an essential skill for system administrators troubleshooting local package installations, auditing installed software components, repairing corrupted package databases, and managing software deployments efficiently across enterprise Debian and Ubuntu server environments.<\/span><\/p>\n<h3><b>Question 264<\/b><\/h3>\n<p><b>Which <\/b><b>tar<\/b><b> command option combination lists the contents of an archive file without extracting them?<\/b><\/p>\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">-xf<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">-tf<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">-cf<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">-zvf<\/span><\/li>\n<\/ol>\n<p><b>Correct Answer: 2<\/b><\/p>\n<p><b>Explanation<\/b><\/p>\n<p><span style=\"font-weight: 400;\">The tar command combined with the <\/span><span style=\"font-weight: 400;\">-tf<\/span><span style=\"font-weight: 400;\"> option flags instructs the archiving utility to read an existing archive file and print a detailed listing of all archived files and directory paths to standard output without unpacking or extracting any data to disk. Conversely, <\/span><span style=\"font-weight: 400;\">-xf<\/span><span style=\"font-weight: 400;\"> extracts archive contents, <\/span><span style=\"font-weight: 400;\">-cf<\/span><span style=\"font-weight: 400;\"> creates new archives, and <\/span><span style=\"font-weight: 400;\">-zvf<\/span><span style=\"font-weight: 400;\"> handles compressed creation. Mastering archive listing commands is an essential administrative habit for system administrators verifying package contents before deployment, inspecting backup files safely, and confirming file structures without risking accidental disk overwrites across production Linux server environments.<\/span><\/p>\n<h3><b>Question 265<\/b><\/h3>\n<p><b>Which numeric comparison operator is used in bash conditional test brackets to check if two integers are equal?<\/b><\/p>\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">-ne<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">-gt<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">-eq<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">-lt<\/span><\/li>\n<\/ol>\n<p><b>Correct Answer: 3<\/b><\/p>\n<p><b>Explanation<\/b><\/p>\n<p><span style=\"font-weight: 400;\">The <\/span><span style=\"font-weight: 400;\">-eq<\/span><span style=\"font-weight: 400;\"> relational operator is utilized within bash conditional test brackets to evaluate whether two numeric integers are strictly equal to one another during script execution, returning a true exit status when the numbers match. In contrast, <\/span><span style=\"font-weight: 400;\">-ne<\/span><span style=\"font-weight: 400;\"> checks for inequality, <\/span><span style=\"font-weight: 400;\">-gt<\/span><span style=\"font-weight: 400;\"> tests if a value is greater than another, and <\/span><span style=\"font-weight: 400;\">-lt<\/span><span style=\"font-weight: 400;\"> checks for lesser values. Mastering numeric comparison operators is fundamental for writing robust shell automation scripts, implementing loop termination conditions, validating resource thresholds, and developing sophisticated administrative tools across enterprise Linux server management workflows.<\/span><\/p>\n<h3><b>Question 266<\/b><\/h3>\n<p><b>Which administrative command is used to create a new security group on Linux systems?<\/b><\/p>\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">groupadd<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">useradd<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">usermod<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">groupmod<\/span><\/li>\n<\/ol>\n<p><b>Correct Answer: 1<\/b><\/p>\n<p><b>Explanation<\/b><\/p>\n<p><span style=\"font-weight: 400;\">The groupadd command is a standard administrative utility used to create a new security group on Linux operating systems, updating system group files and assigning unique group identifiers automatically to facilitate collaborative permissions. While useradd provisions new user accounts, usermod modifies existing user attributes, and groupmod alters group configurations. Proper execution of groupadd is a vital administrative duty for structuring multi-user environments, establishing shared project directories, enforcing the principle of least privilege, and maintaining robust access control standards across production enterprise Linux server and cloud infrastructure deployments.<\/span><\/p>\n<h3><b>Question 267<\/b><\/h3>\n<p><b>Which command-line utility supports both MBR and GPT partition tables and allows non-interactive disk partitioning scripts?<\/b><\/p>\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">fdisk<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">mkfs<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">lsblk<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">parted<\/span><\/li>\n<\/ol>\n<p><b>Correct Answer: 4<\/b><\/p>\n<p><b>Explanation<\/b><\/p>\n<p><span style=\"font-weight: 400;\">The parted utility is a versatile disk partitioning and resizing tool that supports both traditional Master Boot Record and modern GUID Partition Table formats, offering robust capabilities for executing non-interactive partition scripts and handling massive storage drives efficiently. While fdisk provides an interactive text user interface, mkfs formats new filesystems, and lsblk displays block device trees. Mastering parted is an essential storage administration skill for automating server provisioning, preparing raw disks for enterprise storage pools, and managing partition layouts safely across Linux environments.<\/span><\/p>\n<h3><b>Question 268<\/b><\/h3>\n<p><b>Which systemctl subcommand configures a service daemon to start automatically during system boot initialization?<\/b><\/p>\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">start<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">enable<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">reload<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">status<\/span><\/li>\n<\/ol>\n<p><b>Correct Answer: 2<\/b><\/p>\n<p><b>Explanation<\/b><\/p>\n<p><span style=\"font-weight: 400;\">The systemctl enable command configures the systemd manager to create the necessary symbolic links that ensure a specified service daemon starts automatically during system boot initialization, ensuring high availability and persistence across reboots. In contrast, start initiates active daemons immediately, reload updates configurations, and status checks operational health. Mastering enable commands is an essential administrative task for maintaining reliable application deployments, managing server startup targets, and guaranteeing that critical business services recover automatically following planned maintenance or unexpected server reboots across enterprise Linux environments.<\/span><\/p>\n<h3><b>Question 269<\/b><\/h3>\n<p><b>Which command-line text processing utility extracts specific columns or byte fields from each line of input?<\/b><\/p>\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">grep<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">sed<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">cut<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">awk<\/span><\/li>\n<\/ol>\n<p><b>Correct Answer: 3<\/b><\/p>\n<p><b>Explanation<\/b><\/p>\n<p><span style=\"font-weight: 400;\">The cut utility is a specialized command-line text processing tool designed to extract specific columns, character ranges, or byte fields from each line of a file or input stream based on delimiter settings, making it ideal for parsing tabular log data. While grep searches for pattern matches, sed handles stream text editing, and awk provides advanced reporting capabilities. Mastering the cut command enables system administrators to parse configuration files, isolate user accounts from system files, clean up text reports, and build efficient automation scripts across Linux administrative environments.<\/span><\/p>\n<h3><b>Question 270<\/b><\/h3>\n<p><b>Which shell command makes a local shell variable available to child processes as an environment variable?<\/b><\/p>\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">export<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">set<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">env<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">declare<\/span><\/li>\n<\/ol>\n<p><b>Correct Answer: 1<\/b><\/p>\n<p><b>Explanation<\/b><\/p>\n<p><span style=\"font-weight: 400;\">The export command is a built-in shell utility used to mark local shell variables so that they are automatically inherited as environment variables by any subsequent child processes, scripts, or subshells executed within that session. In contrast, set displays all shell variables, env prints current environment settings, and declare defines variable attributes. Mastering the export command is crucial for system administrators configuring runtime paths, passing operational flags to background scripts, and managing environment parameters effectively across enterprise Linux server management workflows and deployment pipelines.<\/span><\/p>\n<h3><b>Question 271<\/b><\/h3>\n<p><b>Which command allows a user to edit their personal scheduled cron jobs using the default text editor?<\/b><\/p>\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">crontab -l<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">crontab -r<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">crontab -d<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">crontab -e<\/span><\/li>\n<\/ol>\n<p><b>Correct Answer: 4<\/b><\/p>\n<p><b>Explanation<\/b><\/p>\n<p><span style=\"font-weight: 400;\">The crontab command combined with the <\/span><span style=\"font-weight: 400;\">-e<\/span><span style=\"font-weight: 400;\"> option flag opens the personal user crontab schedule file inside the system default text editor, allowing administrators to add, modify, or remove recurring automated background tasks safely. Conversely, <\/span><span style=\"font-weight: 400;\">-l<\/span><span style=\"font-weight: 400;\"> lists scheduled jobs, and <\/span><span style=\"font-weight: 400;\">-r<\/span><span style=\"font-weight: 400;\"> removes the entire crontab file. Mastering crontab editing commands ensures that system administrators can configure automated maintenance scripts, regular backup routines, and log rotation tasks accurately without risking syntax errors or unintended schedule deletions across production enterprise Linux server environments.<\/span><\/p>\n<h3><b>Question 272<\/b><\/h3>\n<p><b>Which command is used to launch a new command with a modified CPU priority scheduling niceness value?<\/b><\/p>\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">top<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">nice<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">renice<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">kill<\/span><\/li>\n<\/ol>\n<p><b>Correct Answer: 2<\/b><\/p>\n<p><b>Explanation<\/b><\/p>\n<p><span style=\"font-weight: 400;\">The nice command is used by system administrators to launch a brand new program or command with a user-specified CPU priority scheduling niceness value, allowing background administrative tasks to run with lower priority so they do not starve critical applications. While top displays active processes, renice alters the priority of already running tasks, and kill terminates processes. Mastering the nice utility is essential for managing server workload performance, preventing resource contention, and optimizing system responsiveness across production enterprise Linux server environments under heavy workloads.<\/span><\/p>\n<h3><b>Question 273<\/b><\/h3>\n<p><b>Which directory in the Linux filesystem hierarchy stores the kernel image and bootloader configuration files?<\/b><\/p>\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">\/bin<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">\/etc<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">\/boot<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">\/sbin<\/span><\/li>\n<\/ol>\n<p><b>Correct Answer: 3<\/b><\/p>\n<p><b>Explanation<\/b><\/p>\n<p><span style=\"font-weight: 400;\">The <\/span><span style=\"font-weight: 400;\">\/boot<\/span><span style=\"font-weight: 400;\"> directory is the designated location in the Linux Filesystem Hierarchy Standard where static kernel images, initial RAM disk files, and bootloader configuration files required during the system startup sequence are securely stored. In contrast, <\/span><span style=\"font-weight: 400;\">\/bin<\/span><span style=\"font-weight: 400;\"> stores user binaries, <\/span><span style=\"font-weight: 400;\">\/etc<\/span><span style=\"font-weight: 400;\"> holds configuration files, and <\/span><span style=\"font-weight: 400;\">\/sbin<\/span><span style=\"font-weight: 400;\"> contains administrative recovery tools. Proper understanding of the <\/span><span style=\"font-weight: 400;\">\/boot<\/span><span style=\"font-weight: 400;\"> directory structure is vital for system administrators managing kernel upgrades, troubleshooting bootloader failures, configuring GRUB parameters, and ensuring reliable system startup across enterprise Linux servers and cloud infrastructure deployments.<\/span><\/p>\n<h3><b>Question 274<\/b><\/h3>\n<p><b>Which utility is used to generate public and private SSH cryptographic key pairs for secure authentication?<\/b><\/p>\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">ssh-keygen<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">ssh-copy-id<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">sshd<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">scp<\/span><\/li>\n<\/ol>\n<p><b>Correct Answer: 1<\/b><\/p>\n<p><b>Explanation<\/b><\/p>\n<p><span style=\"font-weight: 400;\">The ssh-keygen command is the standard cryptographic utility used to generate robust public and private SSH key pairs, enabling secure, passwordless public-key authentication for remote server access and automated deployment scripts. While ssh-copy-id installs public keys onto remote servers, sshd manages the server daemon, and scp transfers files securely. Mastering ssh-keygen is a fundamental security skill for system administrators hardening remote access channels, eliminating vulnerable password logins, and maintaining strict compliance standards across enterprise Linux server infrastructures and cloud environments.<\/span><\/p>\n<h3><b>Question 275<\/b><\/h3>\n<p><b>Which bash scripting loop structure iterates through a predefined list of items or arguments?<\/b><\/p>\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">while<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">until<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">if<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">for<\/span><\/li>\n<\/ol>\n<p><b>Correct Answer: 4<\/b><\/p>\n<p><b>Explanation<\/b><\/p>\n<p><span style=\"font-weight: 400;\">The for loop in bash shell scripting is designed to iterate through a predefined list of items, filenames, or command arguments, executing an enclosed block of commands once for each item in the collection until the list is exhausted. While while loops evaluate continuous conditions, until loops run until conditions become true, and if handles branching. Mastering for loops is essential for writing efficient automation scripts capable of performing batch file processing, managing software deployments, and executing repetitive administrative tasks across Linux server environments.<\/span><\/p>\n<h3><b>Question 276<\/b><\/h3>\n<p><b>Which <\/b><b>du<\/b><b> command option combination reports disk usage totals in human-readable format for a specified folder?<\/b><\/p>\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">-ah<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">-sh<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">-rh<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">-lh<\/span><\/li>\n<\/ol>\n<p><b>Correct Answer: 2<\/b><\/p>\n<p><b>Explanation<\/b><\/p>\n<p><span style=\"font-weight: 400;\">The du command combined with the <\/span><span style=\"font-weight: 400;\">-sh<\/span><span style=\"font-weight: 400;\"> option flags produces a single summary total report of disk space consumption for a specified directory, displayed in intuitive human-readable units such as megabytes and gigabytes rather than raw storage blocks. In contrast, <\/span><span style=\"font-weight: 400;\">-ah<\/span><span style=\"font-weight: 400;\"> lists every individual file, while <\/span><span style=\"font-weight: 400;\">-rh<\/span><span style=\"font-weight: 400;\"> and <\/span><span style=\"font-weight: 400;\">-lh<\/span><span style=\"font-weight: 400;\"> are non-standard flags. Mastering disk usage summary options enables system administrators to conduct rapid storage audits, identify oversized log directories, and manage disk space quotas effectively across production Linux server environments.<\/span><\/p>\n<h3><b>Question 277<\/b><\/h3>\n<p><b>Which command displays a formatted list of currently loaded kernel modules in the Linux operating system?<\/b><\/p>\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">modprobe<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">uname<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">lsmod<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">dmesg<\/span><\/li>\n<\/ol>\n<p><b>Correct Answer: 3<\/b><\/p>\n<p><b>Explanation<\/b><\/p>\n<p><span style=\"font-weight: 400;\">The lsmod command is a utility that reads kernel module status from the <\/span><span style=\"font-weight: 400;\">\/proc\/modules<\/span><span style=\"font-weight: 400;\"> virtual file and displays a clean, formatted list of currently loaded kernel modules, device drivers, and filesystem extensions active in running memory. While modprobe loads and unloads modules, uname reports kernel versions, and dmesg outputs boot log messages. Mastering lsmod is an essential diagnostic habit for system administrators verifying hardware driver recognition, troubleshooting device conflicts, and inspecting loaded kernel components across enterprise Linux server environments.<\/span><\/p>\n<h3><b>Question 278<\/b><\/h3>\n<p><b>Which command-line utility extracts files from archives created in the popular <\/b><b>.zip<\/b><b> compression format?<\/b><\/p>\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">unzip<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">gunzip<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">bunzip2<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">unxz<\/span><\/li>\n<\/ol>\n<p><b>Correct Answer: 1<\/b><\/p>\n<p><b>Explanation<\/b><\/p>\n<p><span style=\"font-weight: 400;\">The unzip utility is the standard command-line program used in Linux to list, test, and extract files from archives compressed using the popular <\/span><span style=\"font-weight: 400;\">.zip<\/span><span style=\"font-weight: 400;\"> format, preserving directory structures and file metadata. While gunzip handles gzip files, bunzip2 handles bzip2, and unxz handles xz archives. Mastering file extraction utilities is an essential skill for system administrators downloading cross-platform software packages, sharing documentation with client systems, and managing compressed files efficiently across enterprise Linux server and cloud infrastructure environments.<\/span><\/p>\n<h3><b>Question 279<\/b><\/h3>\n<p><b>Which utility queries and displays logs managed by the systemd journal logging subsystem?<\/b><\/p>\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">tail<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">logger<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">cat<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">journalctl<\/span><\/li>\n<\/ol>\n<p><b>Correct Answer: 4<\/b><\/p>\n<p><b>Explanation<\/b><\/p>\n<p><span style=\"font-weight: 400;\">The journalctl command is the primary query and display utility for the systemd journal logging subsystem, allowing administrators to filter system logs by time, service unit, priority level, or kernel messages with advanced search capabilities. While tail monitors text files, logger writes log entries, and cat dumps files. Mastering journalctl is an indispensable administrative skill for troubleshooting startup failures, tracking down daemon crash errors, auditing security events, and analyzing system health across modern enterprise Linux server environments.<\/span><\/p>\n<h3><b>Question 280<\/b><\/h3>\n<p><b>Which famous copyleft open-source license ensures that derivative works remain free and open source?<\/b><\/p>\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">MIT License<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">GNU General Public License<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Apache License<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">BSD License<\/span><\/li>\n<\/ol>\n<p><b>Correct Answer: 2<\/b><\/p>\n<p><b>Explanation<\/b><\/p>\n<p><span style=\"font-weight: 400;\">The GNU General Public License is a widely recognized copyleft open-source license created by the Free Software Foundation that guarantees end users the freedom to study, share, and modify software while legally mandating that any modified derivative works must also be distributed under the exact same open-source terms. In contrast, permissive licenses like MIT and Apache impose fewer restrictions. Understanding open-source licensing principles is essential for legal compliance, corporate software governance, and intellectual property management across modern enterprise software engineering projects.<\/span><\/p>\n","protected":false},"excerpt":{"rendered":"<p>View Full LPI 010-160 Exam Dumps and Practice Test Dumps. &nbsp; Question 261 Which command sets or displays the default file creation permission mask for newly created files? chmod chown umask chgrp Correct Answer: 3 Explanation The umask command is a vital shell builtin utility used in Linux to inspect or set the default permission [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":[],"categories":[1648,1647],"tags":[],"_links":{"self":[{"href":"https:\/\/www.examlabs.com\/certification\/wp-json\/wp\/v2\/posts\/12382"}],"collection":[{"href":"https:\/\/www.examlabs.com\/certification\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.examlabs.com\/certification\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.examlabs.com\/certification\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.examlabs.com\/certification\/wp-json\/wp\/v2\/comments?post=12382"}],"version-history":[{"count":1,"href":"https:\/\/www.examlabs.com\/certification\/wp-json\/wp\/v2\/posts\/12382\/revisions"}],"predecessor-version":[{"id":12395,"href":"https:\/\/www.examlabs.com\/certification\/wp-json\/wp\/v2\/posts\/12382\/revisions\/12395"}],"wp:attachment":[{"href":"https:\/\/www.examlabs.com\/certification\/wp-json\/wp\/v2\/media?parent=12382"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.examlabs.com\/certification\/wp-json\/wp\/v2\/categories?post=12382"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.examlabs.com\/certification\/wp-json\/wp\/v2\/tags?post=12382"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}