READ Free Dumps For LPI- 117-201
Question ID 21506 | After configuring a new 2.4 series kernel, all dependencies, such as included files, need to be created. How can
this be achieved?
|
Option A | make dependencies
|
Option B | make clean
|
Option C | make mrproper
|
Option D | make dep
|
Option E | make test
|
Correct Answer | D |
Explanation Explanation: /usr/src/linux# make clean If you've already built the system and are making minor changes, not wanting to re-compile all the objects again, skip this step. If you want to be a purist and make sure you're starting absolutely fresh, do this step./usr/ src/linux# make mrproper This completely cleans out your binary directories. I only do this if I've really screwed something up. Note that this deletes your .config file, so you might want to rename it first! I hardly ever do this. /usr/src/linux# make dep This determines all the header file dependencies. Do this whenever you've made a change to the configuation.
Question ID 21507 | Considering the following kernel IP routing table now, which of the following commands must be remove the
route to the network 10.10.1.0/24?
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
200.207.199.162 0.0.0.0 255.255.255.255 UH 0 0 0 ppp0
172.16.87.0 0.0.0.0 255.255.255.0 U 0 0 0 eth0
192.168.246.0 0.0.0.0 255.255.255.0 U 0 0 0 eth1
10.10.1.0 192.168.246.11 255.255.255.0 UG 0 0 0 eth1
127.0.0.0 0.0.0.0 255.0.0.0 U 0 0 0 lo
0.0.0.0 200.207.199.162 0.0.0.0 UG 0 0 0 ppp0
|
Option A | route del 10.10.1.0
|
Option B | route del 10.10.1.0/24
|
Option C | route del -net 10.10.1.0/24
|
Option D | route del 10.10.1.0/24 gw 192.168.246.11
|
Option E | route del -net 10.10.1.0
|
Correct Answer | C |
Explanation Explanation: Either specify net in CIDR notation or specify parameter netmask