Spell Checks

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@457 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
This commit is contained in:
Gerard Beekmans 2001-04-09 17:38:08 +00:00
parent 2f86e05373
commit 4d994af419
14 changed files with 18 additions and 22 deletions

View File

@ -56,7 +56,7 @@ binary) run <userinput>strip --strip-debug filename</userinput>. Wild cards
can be used to strip debugging symbols from multiple files (use something
like <userinput>strip --strip-debug $LFS/usr/bin/*</userinput>).
Most people will probably never use a debugger on software, so by
removing those symbols a lot of diskspace can be regained.
removing those symbols a lot of disk space can be regained.
</para>
<para>

View File

@ -8,7 +8,7 @@ libraries, so there normally isn't a need for the
directories in which a user wants the system to search for paths. The
<filename class="directory">/usr/local/lib</filename> directory isn't
searched through for dynamic libraries by default, so we want to add
this path so when a user installs software he won't be suprised by them not
this path so when a user installs software he won't be surprised by them not
running for some reason.
</para>
@ -37,7 +37,7 @@ Although it's not necessary to add the
<filename class="directory">/usr/lib</filename> directories it doesn't
hurt. This way it can be seen right away what's being searched and a user
doesn't have
to remeber the default search paths if he doesn't want to.
to remember the default search paths if he doesn't want to.
</para>
</sect2>

View File

@ -7,7 +7,7 @@ Programs like login, shutdown, uptime and others want to read from and write
to the /var/run/utmp /var/log/btmp and /var/log/wtmp. These files contain
information about who is currently logged in. It also contains information
on when the computer was last booted and shutdown and a record of the
bad login attemps.
bad login attempts.
</para>
<para>

View File

@ -20,7 +20,7 @@ File in a plain text file. File internally compiles this database each time it
is run. This is not the normal type of operation for File since compiling a
plain text file each time is not the fastest way to do it. File offers an
option "-C" to compile this magic number file. The reason this isn't done
automagically is that some people like to work on the magic numbers. On the
automatically is that some people like to work on the magic numbers. On the
other hand many people didn't get it that they should compile the magic
numbers, so the author of File added a warning when the plain text magic file
is used. As we usually won't work on the plain text magic file, we

View File

@ -8,7 +8,7 @@ shared ncurses library files.
<para>
<userinput>--disable-termcap:</userinput> Disabled the compilation of
termcap fallback support.
termcap fall back support.
</para>
<para>

View File

@ -7,7 +7,7 @@ This will replace -ltermcap with -lncurses in the Makefile and pipe the
output of sed (the modified Makefile) directly to the make program. This
is an alternate and more efficient way to direct the output to a file
and tell make to use that alternate file. We do this because libtermcap
is declared obsolete in favour of libncurses.
is declared obsolete in favor of libncurses.
</para>
</sect2>

View File

@ -4,7 +4,7 @@
<para>
If a user wants to be able to directly use bzip2 files with tar, he can
use the tar
patch avaiable from the LFS FTP site. This patch will add the -y option
patch available from the LFS FTP site. This patch will add the -y option
to tar which works the same as the -z option to tar (which can be used
for gzip files).
</para>

View File

@ -2,7 +2,7 @@
<title>Installation of Textutils</title>
<para>
Install Textutuils by running the following commands:
Install Textutils by running the following commands:
</para>
<blockquote><literallayout>

View File

@ -6,9 +6,5 @@
it already was installed by Glibc.
</para>
<para><userinput>HAVE_TSORT=yes:</userinput> We don't build this program
either becuase it already was installed by Textutils.
</para>
</sect2>

View File

@ -13,7 +13,7 @@ http://cvs.linuxfromscratch.org/index.cgi/hints/editors/</ulink>
<para>
Both the vim-rt and vim-src packages need to be unpacked to install Vim.
Both packages will unpack their files into the vim-5.7 directory. This
won't overwrite any files from the other package. So it doesn't mattter
won't overwrite any files from the other package. So it doesn't matter
in which order it is done. Install Vim by running the following commands:
</para>

View File

@ -48,7 +48,7 @@ evaluate_retval()
# The print_status prints [ OK ] or [FAILED] to the screen. OK appears
# in the colour defined by the SUCCESS variable and FAILED appears in
# the colour defined by the FAILURE variable. Both are printed starting
# in the colomn defined by the COL variable.
# in the column defined by the COL variable.
#
print_status()

View File

@ -49,7 +49,7 @@ case "$1" in
#
# Remove the possible /fastboot and /forcefsck files. they are
# only
# supposed to be used during the next reboot's checkfs wich just
# supposed to be used during the next reboot's checkfs which just
# happened. If you want to fastboot or forcefsck again you'll
# have to
# recreate the files
@ -72,7 +72,7 @@ case "$1" in
stop)
#
# Deactive all the swap partitions
# Deactivate all the swap partitions
#
echo -n "Deactivating swap..."

View File

@ -2,7 +2,7 @@
<title>Creating the rc script</title>
<para>
The first main bootscript is the <filename>/etc/init.d/rc</filename> script.
The first main boot script is the <filename>/etc/init.d/rc</filename> script.
A new file <filename>/etc/init.d/rc</filename> is created containing the
following: </para>
@ -24,8 +24,8 @@ following: </para>
source /etc/init.d/functions
#
# The print_error_msg function prints an error message when an unforseen
# error occured that wasn't trapped for some reason by a evaluate_retval
# The print_error_msg function prints an error message when an unforeseen
# error occurred that wasn't trapped for some reason by a evaluate_retval
# call or error checking in different ways.
print_error_msg()
@ -34,7 +34,7 @@ print_error_msg()
echo
$FAILURE
echo -n "You should not read this error message. It means "
echo "that an unforseen error "
echo "that an unforeseen error "
echo -n "took place and subscript $i exited with "
echo "a return value "
echo -n "of $error_value for an unknown reason. If you're able "

View File

@ -2,7 +2,7 @@
<title>Creating the rcS script</title>
<para>
The second main bootscript is the <filename>rcS</filename> script. Create a
The second main boot script is the <filename>rcS</filename> script. Create a
new file <filename>/etc/init.d/rcS</filename> containing the following:
</para>