{"id":12387,"date":"2026-09-15T08:26:12","date_gmt":"2026-09-15T08:26:12","guid":{"rendered":"https:\/\/www.examlabs.com\/certification\/?p=12387"},"modified":"2026-09-15T08:26:12","modified_gmt":"2026-09-15T08:26:12","slug":"lpi-010-160-practice-test-questions-and-exam-dumps-part-19-q361-380","status":"publish","type":"post","link":"https:\/\/www.examlabs.com\/certification\/lpi-010-160-practice-test-questions-and-exam-dumps-part-19-q361-380\/","title":{"rendered":"LPI 010-160 Practice Test Questions and Exam Dumps Part 19 Q361-380"},"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 361<\/b><\/h3>\n<p><b>Which command-line utility tests network port reachability and checks if a remote TCP service is listening?<\/b><\/p>\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">ping<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">traceroute<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">nc<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">route<\/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 nc command, commonly known as netcat, is a versatile networking utility used by system administrators to read and write data across network connections, test remote TCP and UDP port reachability, and debug service availability. While ping tests basic ICMP reachability and traceroute maps routing hops, netcat actively probes specific ports to verify firewall configurations and application accessibility. Mastering netcat is an essential troubleshooting skill for diagnosing blocked service connections, verifying firewall rule deployments, and troubleshooting network communication bottlenecks across enterprise Linux server infrastructures and cloud deployment environments under daily operational workloads and administrative tasks.<\/span><\/p>\n<h3><b>Question 362<\/b><\/h3>\n<p><b>Which command displays the current disk space allocation and inode usage for all mounted filesystems?<\/b><\/p>\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">du<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">df -i<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">free<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">top<\/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 df command combined with the <\/span><span style=\"font-weight: 400;\">-i<\/span><span style=\"font-weight: 400;\"> option flag displays comprehensive inode usage statistics alongside block storage allocation for all mounted filesystems, allowing administrators to monitor metadata exhaustion limits. While standard df checks block capacity, du estimates directory sizes, and free tracks RAM. Inode exhaustion prevents file creation even when disk space remains available. Mastering inode monitoring is a crucial administrative responsibility for maintaining reliable storage performance, preventing application crashes, and ensuring robust file management across enterprise Linux servers and high-traffic production storage volumes during routine system maintenance and capacity planning operations.<\/span><\/p>\n<h3><b>Question 363<\/b><\/h3>\n<p><b>Which configuration file defines static local hostname-to-IP address mappings for the operating system?<\/b><\/p>\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">\/etc\/resolv.conf<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">\/etc\/fstab<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">\/etc\/hosts<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">\/etc\/passwd<\/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;\">\/etc\/hosts<\/span><span style=\"font-weight: 400;\"> file is a static system configuration file that maps hostnames directly to specific IP addresses, allowing the operating system to resolve local network names before querying external DNS servers. In contrast, <\/span><span style=\"font-weight: 400;\">\/etc\/resolv.conf<\/span><span style=\"font-weight: 400;\"> defines remote DNS servers, <\/span><span style=\"font-weight: 400;\">\/etc\/fstab<\/span><span style=\"font-weight: 400;\"> manages disk mounts, and <\/span><span style=\"font-weight: 400;\">\/etc\/passwd<\/span><span style=\"font-weight: 400;\"> stores user metadata. Proper maintenance of <\/span><span style=\"font-weight: 400;\">\/etc\/hosts<\/span><span style=\"font-weight: 400;\"> is vital for configuring local loopback addresses, managing offline server environments, and troubleshooting custom network routing entries across enterprise Linux server infrastructures and cloud deployments under standard operational networking rules and emergency system recovery scenarios.<\/span><\/p>\n<h3><b>Question 364<\/b><\/h3>\n<p><b>Which systemctl subcommand restarts a service daemon if it is running, or starts it if it is currently stopped?<\/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;\">stop<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">restart<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">try-restart<\/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 systemctl try-restart command instructs the systemd manager to restart a specified service daemon only if it is already actively running, leaving stopped services untouched, which prevents accidental startup of dormant daemons. While restart forces a restart regardless of state, start initiates daemons, and stop terminates execution. Mastering try-restart commands enables system administrators to apply configuration updates safely across running application suites without inadvertently launching maintenance services during scheduled administrative operations in enterprise Linux server environments and production cloud deployments under strict operational schedules and maintenance windows.<\/span><\/p>\n<h3><b>Question 365<\/b><\/h3>\n<p><b>Which shell conditional operator checks whether a specified directory path exists and is a directory?<\/b><\/p>\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">-f<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">-d<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">-z<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">-eq<\/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 <\/span><span style=\"font-weight: 400;\">-d<\/span><span style=\"font-weight: 400;\"> conditional test operator in bash scripting evaluates whether a specified path exists on the filesystem and is specifically a directory rather than a regular file, enabling scripts to validate path structures before executing traversal operations. In contrast, <\/span><span style=\"font-weight: 400;\">-f<\/span><span style=\"font-weight: 400;\"> checks for regular files, <\/span><span style=\"font-weight: 400;\">-z<\/span><span style=\"font-weight: 400;\"> tests for empty strings, and <\/span><span style=\"font-weight: 400;\">-eq<\/span><span style=\"font-weight: 400;\"> compares numeric integers. Mastering directory test operators ensures that automation scripts handle missing folders gracefully, prevent runtime exceptions, and execute robust directory checks safely across complex production Linux administrative environments and deployment automation workflows during daily script maintenance tasks.<\/span><\/p>\n<h3><b>Question 366<\/b><\/h3>\n<p><b>Which command displays active user login sessions and processes currently running on the system?<\/b><\/p>\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">who<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">w<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">uptime<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">last<\/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 w command provides a comprehensive summary of currently logged-in users, their active terminal sessions, remote source IP addresses, idle times, and the CPU load averages of processes they are running. While who displays simpler login data, uptime tracks run duration and load averages, and last audits historical logins. Mastering the w command is an essential security and monitoring habit for system administrators tracking active user activity, detecting unauthorized access attempts, and auditing system resource utilization across multi-user enterprise Linux server environments and cloud instances under daily administrative supervision and security monitoring policies.<\/span><\/p>\n<h3><b>Question 367<\/b><\/h3>\n<p><b>Which command-line utility is used to create a swap space partition or file in Linux?<\/b><\/p>\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">mkswap<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">swapon<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">swapoff<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">fdisk<\/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 mkswap utility is used to format a designated disk partition or file as swap space, initializing the swap signature structures required before the kernel can utilize it for virtual memory management. While swapon activates swap spaces and swapoff disables them, fdisk manages partition tables. Mastering mkswap is a critical storage and performance administration skill for configuring virtual memory, preventing out-of-memory kernel panics, and managing system resource limits effectively across production Linux server environments and cloud infrastructure deployments under varying computational workloads and memory utilization thresholds.<\/span><\/p>\n<h3><b>Question 368<\/b><\/h3>\n<p><b>Which configuration file defines default shell behavior and profile settings for individual user accounts?<\/b><\/p>\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">\/etc\/passwd<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">~\/.profile<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">\/etc\/environment<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">\/etc\/fstab<\/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 <\/span><span style=\"font-weight: 400;\">~\/.profile<\/span><span style=\"font-weight: 400;\"> file is a user-specific configuration script located inside each individual home directory that executes upon user login to set personal environment variables, default paths, and session configurations. In contrast, system-wide settings are governed by files in <\/span><span style=\"font-weight: 400;\">\/etc<\/span><span style=\"font-weight: 400;\">, while <\/span><span style=\"font-weight: 400;\">\/etc\/passwd<\/span><span style=\"font-weight: 400;\"> stores account metadata. Proper configuration of user profile files ensures that custom development environments, path variables, and user-specific workspace preferences initialize correctly across multi-user enterprise Linux server and desktop operating system environments during routine user provisioning and login operations.<\/span><\/p>\n<h3><b>Question 369<\/b><\/h3>\n<p><b>Which command is used to display historical records of past user login sessions and reboots?<\/b><\/p>\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">who<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">w<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">last<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">uptime<\/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 last command searches through the system login accounting log files to display a chronological list of all previous user login sessions, logout events, remote IP addresses, and system reboot histories. While who and w display currently active sessions, uptime reports current load averages. Mastering the last command is an essential security auditing skill for system administrators investigating security breaches, tracking user access timelines, and verifying system uptime records across enterprise Linux server environments and production cloud deployments during forensic analyses and security compliance audits.<\/span><\/p>\n<h3><b>Question 370<\/b><\/h3>\n<p><b>Which command-line utility extracts text patterns from files using regular expressions and displays matching lines?<\/b><\/p>\n<ol>\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;\">awk<\/span><\/li>\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;\">cut<\/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 grep utility is a powerful text search tool designed to scan plain-text input files or streams for lines matching specific regular expression patterns, printing matches to standard output. It is indispensable for log analysis and configuration auditing. While sed handles stream text editing, awk provides columnar reporting, and cut extracts specific character fields. Mastering grep remains the definitive tool for rapid pattern searching across files, making it essential for daily Linux systems administration, security audits, and troubleshooting tasks across enterprise server environments and software development deployment pipelines.<\/span><\/p>\n<h3><b>Question 371<\/b><\/h3>\n<p><b>Which command-line utility modifies the CPU priority scheduling niceness value of an already running process?<\/b><\/p>\n<ol>\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;\">top<\/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 renice command is utilized by system administrators to alter the CPU scheduling priority niceness value of an already active process running on the system, allowing adjustment of resource allocation without restarting applications. While nice launches new tasks with specific priorities, top displays processes, and kill terminates them. Mastering the renice utility is essential for managing server workload performance, mitigating CPU resource contention, and optimizing system responsiveness across production enterprise Linux server environments under heavy workloads and resource allocation constraints.<\/span><\/p>\n<h3><b>Question 372<\/b><\/h3>\n<p><b>Which system file stores group account definitions, group IDs, and member user lists on Linux systems?<\/b><\/p>\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">\/etc\/passwd<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">\/etc\/shadow<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">\/etc\/group<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">\/etc\/fstab<\/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;\">\/etc\/group<\/span><span style=\"font-weight: 400;\"> file is a core system configuration file that stores security group definitions, unique group identifiers, and lists of user accounts assigned as members of each group, facilitating collaborative access control. In contrast, <\/span><span style=\"font-weight: 400;\">\/etc\/passwd<\/span><span style=\"font-weight: 400;\"> holds user account metadata, <\/span><span style=\"font-weight: 400;\">\/etc\/shadow<\/span><span style=\"font-weight: 400;\"> secures encrypted passwords, and <\/span><span style=\"font-weight: 400;\">\/etc\/fstab<\/span><span style=\"font-weight: 400;\"> handles disk mounts. Proper understanding and auditing of <\/span><span style=\"font-weight: 400;\">\/etc\/group<\/span><span style=\"font-weight: 400;\"> are vital administrative responsibilities for managing user permissions, enforcing security boundaries, and maintaining access control standards across multi-user enterprise Linux server environments during routine administrative tasks and access control reviews.<\/span><\/p>\n<h3><b>Question 373<\/b><\/h3>\n<p><b>Which command-line utility creates new partitions on hard disks with an interactive text interface?<\/b><\/p>\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">parted<\/span><\/li>\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<\/ol>\n<p><b>Correct Answer: 2<\/b><\/p>\n<p><b>Explanation<\/b><\/p>\n<p><span style=\"font-weight: 400;\">The fdisk utility provides an interactive text user interface that allows system administrators to create, delete, resize, and inspect partition tables on storage drives supporting MBR and GPT formats. While parted supports scriptable partition manipulation, mkfs formats new filesystems, and lsblk displays block storage hierarchies. Mastering fdisk is a foundational storage management skill for preparing raw disks, configuring dual-boot systems, and managing partition layouts safely across Linux servers and cloud infrastructure environments during system deployment and storage provisioning workflows.<\/span><\/p>\n<h3><b>Question 374<\/b><\/h3>\n<p><b>Which systemd command disables a service daemon from starting automatically during boot while leaving active execution running?<\/b><\/p>\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">stop<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">disable<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">mask<\/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 disable command removes the symbolic links configuring a service daemon to start automatically during system boot initialization, ensuring the service remains inactive upon reboot while leaving any currently active running instances untouched. In contrast, stop terminates active instances immediately, mask blocks the service entirely, and status checks operational health. Mastering disable commands is essential for optimizing system boot times, managing startup targets, and maintaining precise administrative control over server operational states across enterprise environments during routine maintenance and system configuration management.<\/span><\/p>\n<h3><b>Question 375<\/b><\/h3>\n<p><b>Which command-line utility displays kernel ring buffer log messages generated during system boot initialization?<\/b><\/p>\n<ol>\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<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;\">modprobe<\/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 dmesg command outputs the contents of the kernel ring buffer, displaying real-time diagnostic messages, hardware detection notices, driver initialization logs, and bootup status reports generated by the Linux kernel. While lsmod lists loaded modules, uname reports kernel versions, and modprobe loads drivers. Mastering dmesg is an essential troubleshooting skill for system administrators diagnosing hardware recognition failures, resolving device driver conflicts, and verifying system startup events across enterprise Linux server environments and cloud deployments during boot troubleshooting and hardware diagnostics operations.<\/span><\/p>\n<h3><b>Question 376<\/b><\/h3>\n<p><b>Which network configuration file defines static hostname settings on systemd-based Linux distributions?<\/b><\/p>\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">\/etc\/resolv.conf<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">\/etc\/hosts<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">\/etc\/hostname<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">\/etc\/fstab<\/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;\">\/etc\/hostname<\/span><span style=\"font-weight: 400;\"> file is a simple system configuration file used on systemd-based Linux distributions to store the static host name of the local machine, which is read by the kernel during boot initialization. In contrast, <\/span><span style=\"font-weight: 400;\">\/etc\/hosts<\/span><span style=\"font-weight: 400;\"> handles IP-to-hostname mappings, <\/span><span style=\"font-weight: 400;\">\/etc\/resolv.conf<\/span><span style=\"font-weight: 400;\"> defines DNS servers, and <\/span><span style=\"font-weight: 400;\">\/etc\/fstab<\/span><span style=\"font-weight: 400;\"> manages disk mounts. Proper configuration of <\/span><span style=\"font-weight: 400;\">\/etc\/hostname<\/span><span style=\"font-weight: 400;\"> is vital for identifying servers correctly within local subnets, configuring network environments, and maintaining accurate identification across enterprise Linux infrastructures and cloud deployments under standard operational networking rules and configuration management standards.<\/span><\/p>\n<h3><b>Question 377<\/b><\/h3>\n<p><b>Which shell redirection operator redirects both standard output and standard error streams to a file simultaneously?<\/b><\/p>\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">&amp;&gt;<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">2&gt;<\/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;\">&amp;&gt;<\/span><span style=\"font-weight: 400;\"> redirection operator combines standard output and standard error streams, redirecting both data types simultaneously into a specified destination file without requiring separate file descriptor declarations. In contrast, the single greater-than sign handles standard output, double greater-than appends standard output, and 2&gt; handles errors exclusively. Mastering combined output redirection is essential for capturing complete diagnostic logs, recording script execution summaries, and automating administrative reporting tasks across Linux systems and deployment automation scripts during daily administrative workflows and error tracking operations.<\/span><\/p>\n<h3><b>Question 378<\/b><\/h3>\n<p><b>Which command lists block storage devices, partitions, and their hierarchical relationships in a tree-like format?<\/b><\/p>\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">df<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">du<\/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;\">free<\/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 lsblk command stands for list block devices and displays all available storage drives, partitions, and dependent mount points in a clean, hierarchical tree-like format, showing device major and minor numbers. While df reports filesystem storage capacities, du estimates directory sizes, and free tracks RAM usage. Mastering lsblk is an essential storage administration skill for identifying physical disk layouts, verifying partition assignments, and planning storage expansions safely across enterprise Linux servers and cloud infrastructure environments during storage provisioning and system auditing operations.<\/span><\/p>\n<h3><b>Question 379<\/b><\/h3>\n<p><b>Which command displays current system uptime, load averages, and logged-in user counts?<\/b><\/p>\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">who<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">w<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">uptime<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">top<\/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 uptime command provides a quick, concise report showing how long the system has been running, the number of currently logged-in users, and system load averages over one, five, and fifteen-minute intervals. While who and w display detailed user session information and top provides a continuous real-time process list, uptime offers a rapid system health overview. Monitoring uptime metrics is an essential habit for system administrators detecting performance slowdowns, evaluating server load conditions, and ensuring operational stability across enterprise Linux server environments and production cloud infrastructure deployments under varying computational workloads.<\/span><\/p>\n<h3><b>Question 380<\/b><\/h3>\n<p><b>Which command-line utility formats a specified disk partition with a new filesystem type?<\/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;\">parted<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">mount<\/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 mkfs command stands for make filesystem and is the primary utility used in Linux to format storage partitions with specific filesystem types\u2014such as ext4, xfs, or btrfs\u2014preparing raw storage volumes to store files and directories. While fdisk and parted manage partition tables, mount attaches filesystems to the directory tree. Mastering mkfs is a foundational storage administration skill for provisioning new disk partitions, configuring server storage pools, and setting up reliable file storage volumes across enterprise Linux server environments and cloud deployments during system setup and storage expansion projects.<\/span><\/p>\n","protected":false},"excerpt":{"rendered":"<p>View Full LPI 010-160 Exam Dumps and Practice Test Dumps. &nbsp; Question 361 Which command-line utility tests network port reachability and checks if a remote TCP service is listening? ping traceroute nc route Correct Answer: 3 Explanation The nc command, commonly known as netcat, is a versatile networking utility used by system administrators to read [&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\/12387"}],"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=12387"}],"version-history":[{"count":1,"href":"https:\/\/www.examlabs.com\/certification\/wp-json\/wp\/v2\/posts\/12387\/revisions"}],"predecessor-version":[{"id":12390,"href":"https:\/\/www.examlabs.com\/certification\/wp-json\/wp\/v2\/posts\/12387\/revisions\/12390"}],"wp:attachment":[{"href":"https:\/\/www.examlabs.com\/certification\/wp-json\/wp\/v2\/media?parent=12387"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.examlabs.com\/certification\/wp-json\/wp\/v2\/categories?post=12387"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.examlabs.com\/certification\/wp-json\/wp\/v2\/tags?post=12387"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}