The file that provides local name resolution is /etc/hosts. This file contains mappings of hostnames to IP addresses for hosts on the local network or hosts that are frequently accessed. The system will consult this file before querying DNS servers when resolving hostnames. This can improve performance and security, as well as provide fallback in case DNS servers are unavailable. References:
Question 2
After the Kernel has been loaded during the boot process, which component will handle hardware detection?
Options:
A.
udev
B.
devmgr
C.
initramfs
D.
hal
E.
devfsd
Answer:
A
Explanation:
Explanation:
After the kernel has been loaded during the boot process, udev will handle hardware detection. Udev is a device manager that creates device nodes and symlinks in /dev based on rules and events. It also loads kernel modules and applies persistent device names and permissions. References:
Question 3
What does the following command allow you to do? alias endear"
Options:
A.
You can type clear to run the c command.
B.
You can type c to run the clear command.
C.
Nothing, since there is not a command named alias.
D.
It launches a second Login Shell and allows you to rename the clear command to just c.
E.
It allows you to rename the clear command to just c and then deletes the clear command.
Answer:
B
Explanation:
Explanation:
The command that allows you to create an alias command is alias. The alias command can be used to define a short name or abbreviation for another command or sequence of commands. The syntax of the alias command is alias name=‘command’. For example, alias c=‘clear’ will create an alias named c for the clear command. You can then type c to run the clear command. To remove an alias, you can use unalias name. References: