Table of Contents
If you feel you are an expert in the subject area for this LPI topic and would like to write this chapter please email the author of the LPI study guide to communicate your intentions. Authors should be LPI certified or hold a similar certification in a related subject.
Please adopt only one chapter at a time and plan to finish the chapter within thirty days of adopting it.
More information about the study guide can be found at: http://www.happy-monkey.net/LPI/
The structure of chapters within the study guide needs to be consistent. The following structure may be used as a guide. Authors are also encouraged to view the chapter covering "Hardware & Architecture" as a template.
Author Name
This is to ensure that authors get credit for their work. Please include your level of LPI certification after your name. If there are other appropriate certifications, please include these as well. For example, someone writing a chapter on networking might include the fact that they have a Cisco certification in addition to the LPI certification like this: "Joe Smith, LPIC-1, CCNA".
A Brief Look At The Objectives
Each chapter should start with a high-level look at the LPI testing objectives. Within this "Brief Look" section there should be hyperlinks to sources of additional information. For example, one might say, "The networking section of the exam requires familiarity requires familiarity with IP addresses and subnet masks." The phrases 'IP addresses' and 'subnet masks' should be hyperlinked to additional information. Wikipedia is the prefered source of external information, but it is also helpful to link to man pages for specific commands.
Detailed Discussion
Each one of the LPI exam objectives should receive a section
for more detailed coverage of the objective and how it relates to
Linux and the LPI exam. A good way to do this is by using hands-on
exercises and examples from real-world Linux systems whenever
possible. For example, when discussing a configuration file in
/etc, give a sample of what a typical file
might look like and encourage the reader to cat
the file on their own system.
Objectives may be grouped together when it is logical to do so.
Practice Questions
At the end of each chapter there should be a section dedicated to practice questions that cover the exam objectives. These should not be verbatim questions from the exam! The idea is to let readers test their mastery of the knowledge in each chapter and get a feel for the exam format, not to help them cheat. Anyone intentionally submitting verbatim questions will be reported to the LPI and risks losing their certification.
The LPI Study Guide is written using DocBook XML markup. This allows the guide to be published in HTML, PDF and other formats using the same source document. Those familiar with DocBook are encouraged to submit chapters this way. Be sure to use markup for commands and filenames in addition to sections. Use the chapter on "Hardware & Architecture" as a template.
For those not familiar with DocBook should submit chapters in plain text in a format similar to the example below.
A Brief Look At The Objectives Successful completion of the Hardware & Architecture section of the LPI exam requires familiarity with Personal Computer (PC) expansion cards [http://url-to-wikipedia/expansion-cards]... Next-Section-Title More text...
Please email the author of the LPI study guide with any other questions not covered.
Which of the following commands can be used to create an ext2 (second extended) filesystem? (choose 2)
ext2fs
mke2fs
mkfs.e2fs
mkfs.ext2
The command e2fsck can be used to check which of the following types of filesystems? (choose 2)
ext2
ext3
jfs
vfat
The correct answers are B and D, ext2 filesystems can be created with either mke2fs or mkfs.ext2 commands. These are not actually two different programs, but rather mkfs.ext2 is a link to mke2fs. Answers A and C are both incorrect as they refer to plausible looking but non-existent programs.
The correct answers are A and B, e2fsck can be used to check both ext2 (second extended) and ext3 (third extended) filesytems. Answers C and D are incorrect as jfs filesystems are checked with jfs_fsck and vfat filesystems are checked with dosfsck.