Linux+ Networking Chapter 13

Reviewed by Editorial Team
The ProProfs editorial team is comprised of experienced subject matter experts. They've collectively created over 10,000 quizzes and lessons, serving over 100 million users. Our team includes in-house content moderators and subject matter experts, as well as a global network of rigorously trained contributors. All adhere to our comprehensive editorial guidelines, ensuring the delivery of high-quality content.
Learn about Our Editorial Process
| By Ajeff
A
Ajeff
Community Contributor
Quizzes Created: 39 | Total Attempts: 59,871
| Attempts: 294 | Questions: 20
Please wait...
Question 1 / 20
0 %
0/100
Score 0/100
1. When an application stops functioning, what should you try first?

Explanation

When an application stops functioning, the first step to try is to restart the application. This is because restarting the application can help resolve any temporary glitches or errors that may be causing it to stop functioning. It is a simple and quick solution that can often fix the problem without the need for further troubleshooting or research. Researching the solution using the Internet may be helpful in some cases, but it should be tried after restarting the application. Switching to Single User Mode or killing all other applications running in memory are not relevant solutions for resolving a non-functioning application.

Submit
Please wait...
About This Quiz
Linux Plus Networking Quizzes & Trivia

This quiz focuses on Linux networking, covering maintenance, system logs, memory statistics, shared libraries, kernel compilation, and ramdisk creation.

2. Which of the following steps is not a common troubleshooting procedure?

Explanation

Delegate responsibility is not a common troubleshooting procedure because troubleshooting typically involves identifying and resolving issues independently or with a team. Delegating responsibility would involve assigning the problem-solving task to someone else, which goes against the idea of troubleshooting. The other steps mentioned - testing the solution, isolating the problem, and collecting information - are all common troubleshooting procedures that help identify and resolve issues effectively.

Submit
3. On which part of the maintenance cycle do Linux administrators spend the most time?

Explanation

Linux administrators spend the most time on monitoring during the maintenance cycle. Monitoring involves constantly observing the system's performance, identifying any issues or abnormalities, and ensuring that everything is running smoothly. This includes monitoring system logs, network traffic, resource usage, and other critical metrics. By closely monitoring the system, administrators can proactively identify and address any potential problems before they escalate, preventing downtime and ensuring the overall stability and efficiency of the Linux environment.

Submit
4. Which command can increase the number of filehandles that programs can open in a shell?

Explanation

The ulimit command is used to set or display the resource limits of the current shell and any child processes. By using the ulimit command with appropriate options, the number of filehandles that programs can open in a shell can be increased. This is useful when dealing with applications that require a large number of open files, such as servers or databases.

Submit
5. Which of the following files is likely to be found in the /var/log/sa directory over time?

Explanation

The file "sa19" is likely to be found in the /var/log/sa directory over time.

Submit
6. When the fsck command cannot repair a nonroot filesystem, you should immediately restore all data from tape backup. True or False?

Explanation

When the fsck command cannot repair a nonroot filesystem, it does not necessarily mean that all data should be immediately restored from tape backup. There can be other options to recover the data, such as using data recovery tools or consulting with experts. Therefore, the statement "you should immediately restore all data from tape backup" is not always true.

Submit
7. When performing a sar –u command, you notice that %idle is consistently 10%; is this good or bad?

Explanation

The correct answer is bad, because the processor is idle 10% of the time and perhaps a faster CPU is required. A high percentage of idle time indicates that the processor is not being fully utilized and could potentially benefit from a faster CPU to improve overall performance.

Submit
8. Which command indicates the shared libraries required by a certain executable program?

Explanation

The command "ldd" is used to indicate the shared libraries required by a certain executable program. It helps to identify the dependencies of the program on shared libraries, allowing users to ensure that all necessary libraries are present and properly configured. This command is commonly used in Linux systems to troubleshoot issues related to missing or incompatible libraries.

Submit
9. Which command can be used to apply a patch to kernel source code?

Explanation

The command "patch" can be used to apply a patch to kernel source code.

Submit
10. Which of the following programs detects and installs new hardware detected at boot time?

Explanation

Kudzu is a program that detects and installs new hardware detected at boot time. It is commonly used in Linux distributions to automatically configure and set up newly detected hardware devices. Kudzu helps to simplify the process of adding new hardware to a system by automatically detecting the hardware and configuring the necessary drivers and settings. This allows users to easily install and use new hardware without the need for manual configuration.

Submit
11. Which command can be used to modify the IRQ and I/O address settings of a serial device?

Explanation

The command "setserial" can be used to modify the IRQ and I/O address settings of a serial device.

Submit
12. Which directory stores most modules on a Linux system?

Explanation

The correct answer is /lib/modules/(kernel-version). This directory stores most modules on a Linux system. Modules are small pieces of code that can be added or removed from the running kernel without the need to restart the system. The /lib/modules directory contains subdirectories for different kernel versions, allowing for easy management and organization of modules.

Submit
13. What will the command sar –W 3 50 do?

Explanation

The command "sar -W 3 50" will collect 50 swap statistics every 3 seconds. The "sar" command is used for system activity reporting, and the "-W" option specifically collects swap space statistics. The numbers following the "-W" option indicate the interval (3 seconds) and the count (50) for collecting the statistics.

Submit
14. Which command can be used to create a ramdisk that will be used at boot time to load SCSI support?

Explanation

The command "mkinitrd" can be used to create a ramdisk that will be used at boot time to load SCSI support.

Submit
15. Which command can be used to create a system boot disk?

Explanation

The command "mkbootdisk" can be used to create a system boot disk.

Submit
16. Which directory must you be in to compile the Linux kernel?

Explanation

To compile the Linux kernel, you must be in the "/usr/src/linux" directory. This directory contains the source code for the Linux kernel, which is necessary for compiling and building the kernel. Being in this directory allows you to access and modify the necessary files and configurations required for compiling the kernel successfully.

Submit
17. Which command can be used to insert a module into the Linux kernel? (Choose all that apply.)

Explanation

The commands "insmod" and "modprobe" can be used to insert a module into the Linux kernel. "insmod" is used to insert a module directly into the kernel, while "modprobe" is used to automatically load any dependencies and insert the module into the kernel.

Submit
18. You can recompile the kernel to ________________. (Choose all that apply.)

Explanation

The correct answer is that you can recompile the kernel to add support for a certain hardware device, remove support for a certain hardware device, change kernel features, and improve system performance. Recompiling the kernel allows you to modify its configuration and settings, enabling you to add or remove support for specific hardware devices. It also allows you to make changes to the kernel's features and functionalities, as well as optimize its performance for your specific system requirements.

Submit
19. Which of the following commands can be used to display memory statistics? (Choose all that apply.)

Explanation

The commands "free", "sar", and "vmstat" can be used to display memory statistics. The "free" command shows the amount of free and used memory in the system. The "sar" command provides system activity reports, including memory usage. The "vmstat" command displays virtual memory statistics, including information about memory usage, paging, and swapping. The "iostat" command, on the other hand, is used to display input/output statistics and is not directly related to memory statistics.

Submit
20. Which files can be used to load modules upon system startup? (Choose all that apply.)

Explanation

The files /etc/modprobe.conf and /etc/rc.d/rc.local can be used to load modules upon system startup. The /etc/modprobe.conf file is used to configure kernel modules, including loading them at system startup. The /etc/rc.d/rc.local file is a script that is executed during the boot process, and it can be used to run commands or scripts, including loading modules. The other options (/etc/fstab and /etc/modtab) are not used for loading modules at system startup.

Submit
View My Results

Quiz Review Timeline (Updated): Mar 20, 2023 +

Our quizzes are rigorously reviewed, monitored and continuously updated by our expert board to maintain accuracy, relevance, and timeliness.

  • Current Version
  • Mar 20, 2023
    Quiz Edited by
    ProProfs Editorial Team
  • Jul 09, 2009
    Quiz Created by
    Ajeff
Cancel
  • All
    All (20)
  • Unanswered
    Unanswered ()
  • Answered
    Answered ()
When an application stops functioning, what should you try first?
Which of the following steps is not a common ...
On which part of the maintenance cycle do Linux ...
Which command can increase the number of ...
Which of the following files is likely to be ...
When the fsck ...
When performing a sar –u command, you notice that ...
Which command indicates the shared libraries ...
Which command can be used to apply a patch to kernel source code?
Which of the following programs detects and ...
Which command can be used to modify the IRQ and ...
Which directory stores most modules on a Linux system?
What will the command sar –W 3 50 do?
Which command can be used to create a ramdisk ...
Which command can be used to create a system boot disk?
Which directory must you be in to compile the Linux kernel?
Which command can be used to insert a module into ...
You can recompile the kernel to ________________. ...
Which of the following commands can be used to ...
Which files can be used to load modules upon ...
Alert!

Advertisement