⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 003-008.html

📁 linux-unix130.linux.and.unix.ebooks130 linux and unix ebookslinuxLearning Linux - Collection of 12 E
💻 HTML
字号:
<HTML>

<HEAD>

<TITLE>Linux Unleashed, Third Edition:Introduction to Linux</TITLE>

<SCRIPT>
<!--
function displayWindow(url, width, height) {
        var Win = window.open(url,"displayWindow",'width=' + width +
',height=' + height + ',resizable=1,scrollbars=yes');
}
//-->
</SCRIPT>
</HEAD>

 -->




<!--ISBN=0672313723//-->

<!--TITLE=Linux Unleashed, Third Edition//-->

<!--AUTHOR=Tim Parker//-->

<!--PUBLISHER=Macmillan Computer Publishing//-->

<!--IMPRINT=Sams//-->

<!--CHAPTER=1//-->

<!--PAGES=003-008//-->

<!--UNASSIGNED1//-->

<!--UNASSIGNED2//-->



<CENTER>

<TABLE BORDER>

<TR>

<TD><A HREF="../ewtoc.html">Previous</A></TD>

<TD><A HREF="../ewtoc.html">Table of Contents</A></TD>

<TD><A HREF="008-010.html">Next</A></TD>

</TR>

</TABLE>

</CENTER>

<P><BR></P>

<H2 ALIGN="CENTER"><FONT COLOR="#000077"><I>Part I<BR>Introduction

</I></FONT></H2>

<DL>

<DT><B>In This Part</B>

<DT>&#149;&nbsp;&nbsp; Introduction to Linux

<DT>&#149;&nbsp;&nbsp; Types of Linux

<DT>&#149;&nbsp;&nbsp; Installing Linux

<DT>&#149;&nbsp;&nbsp; Using LILO

<DT>&#149;&nbsp;&nbsp; Wrapping Up the Installation

</DL>

<H2><A NAME="Heading1"></A><FONT COLOR="#000077">Chapter 1<BR>Introduction to Linux

</FONT></H2>

<P><I>by Tim Parker</I></P>

<DL>

<DT><B>In This Chapter</B>

<DT>&#149;&nbsp;&nbsp; What is Linux?

<DT>&#149;&nbsp;&nbsp; Linux&#146;s history

<DT>&#149;&nbsp;&nbsp; What Linux can do for you

<DT>&#149;&nbsp;&nbsp; What you need to run Linux

<DT>&#149;&nbsp;&nbsp; Minimum system requirements

<DT>&#149;&nbsp;&nbsp; Copyrights

<DT>&#149;&nbsp;&nbsp; Getting help

<DT>&#149;&nbsp;&nbsp; Usenet newsgroups

<DT>&#149;&nbsp;&nbsp; What&#146;s in this book?

</DL>

<P>You&#146;ve seen dozens of books about it. You&#146;ve read magazine articles about it. There are Usenet newsgroups with hundred of messages a day, CD-ROMs of Linux archives sold by the thousands, and even more Windows users wandering around trying to figure out what to make of this Linux phenomenon. Despite the popularity of this operating system, there are still thousands, if not millions, of users who are curious about Linux but are afraid to take the first steps: installing and playing with the system. That&#146;s what this book is intended to help with. We&#146;ll guide you step-by-step through the installation procedure, show you how to use Linux, and generally introduce you to this wonderful world of UNIX.

</P>

<P>Before we start, though, a quick word on pronouncing &#147;Linux.&#148; There are two schools of thought about the <I>i</I> sound in &#147;Linux&#148;; because Linux is similar to UNIX and was originally developed by a programmer with the first name Linus, many assume that the long <I>i,</I> as in &#147;line-ucks,&#148; is the correct pronunciation. On the other hand, Linux was actually developed to replace a UNIX workalike called Minix (with a short <I>i</I>), so the rest of the Linux community calls the operating system &#147;lih-nicks.&#148; Which is correct? The original developers use the latter pronunciation, while most North Americans prefer the former. Choose whichever you prefer. Either way, we know what you mean.</P>

<H3><A NAME="Heading2"></A><FONT COLOR="#000077">What Is Linux?</FONT></H3>

<P>Linux, for those who haven&#146;t figured it out by now, is a freely distributed multitasking multiuser operating system that behaves like UNIX. Linux was designed specifically for the PC (Intel CPU) platform and takes advantage of its architecture to give you performance similar to high-end UNIX workstations. A number of ports of Linux to other hardware platforms have also appeared, and they work much like the PC version that we&#146;ll concentrate on here.

</P>

<P>To begin, let&#146;s look at the Linux operating system as a package. When you install Linux, what do you get? Here&#146;s a quick list, most of which is expanded in future chapters.</P>

<H4 ALIGN="LEFT"><A NAME="Heading3"></A><FONT COLOR="#000077">Linux&#146;s Kernel</FONT></H4>

<P>Linux is a complete multitasking, multiuser operating system that behaves like the UNIX operating system in terms of kernel behavior and peripheral support. Linux has all the features of UNIX, plus several recent extensions that add new versatility to Linux. All source code for Linux and its utilities is freely available.

</P>

<P>The Linux kernel was originally developed for the Intel 80386 CPU&#146;s protected mode. The 80386 was originally designed with multitasking in mind (despite the fact that most of the Intel CPUs are used with single-tasking DOS), and Linux makes good use of the advanced features built into the CPU&#146;s instruction set. Memory management is especially strong with the 80386 (compared to earlier CPUs). A floating point emulation routine allows Linux to function on machines that do not have math coprocessors.</P>

<P>Linux allows shared executables, so that if more than one copy of a particular application is loaded (either by one user running several identical tasks or several users running the same task), all the tasks can share the same memory. This process, called copy-on-write pages, makes for much more efficient use of RAM.</P>

<P>The Linux kernel also supports <I>demand paging</I>, which means that only the sections of a program that are necessary are read into RAM. To further optimize memory usage, Linux uses a unified memory pool. This enables all free memory on the system to be used as disk cache, effectively speeding access to frequently used programs and data. As memory usage increases, the amount of cache is automatically adjusted.</P>

<P>To support large memory requirements when only small amounts of physical RAM are available, Linux supports <I>swap space</I>. Swap space (which is somewhat of a misnomer) allows pages of memory to be written to a reserved area of a disk and treated as an extension of physical memory. By moving pages back and forth between the swap space and RAM, Linux can effectively behave as if it had much more physical RAM than it does, albeit at the cost of some speed due to the hard drive&#146;s slower access.</P>

<P>Linux uses <I>dynamically shared libraries</I> extensively. Dynamically shared libraries use a common library section for many different applications, effectively reducing the size of each application. Linux does allow full library linking (called <I>statically linked libraries</I>) for portability to machines that may not have the dynamic libraries.</P>

<P>To make Linux widely acceptable, it supports a number of different file systems, including those compatible with DOS and OS/2. Linux&#146;s own file system, called <TT>ext2fs</TT>, is designed for optimal use of the disk.</P>

<P>Linux is ideally suited for application development and experimentation with new languages. As part of the distribution software there are several different compilers, including C, C&#43;&#43;, Fortran, Pascal, LISP, Ada, BASIC, and Smalltalk. Many of the Linux compilers, tools, debuggers, and editors are from the Free Software Foundation&#146;s GNU project.</P>

<H4 ALIGN="LEFT"><A NAME="Heading4"></A><FONT COLOR="#000077">GNU Software</FONT></H4>

<P>GNU (a recursive acronym for <I>Gnu&#146;s Not UNIX</I>) was developed by the Free Software Foundation (FSF) to provide royalty-free software to programmers and developers. Since it was created, many programmer packages and toolkits have been developed and assigned to FSF for distribution. Most of the GNU software mirrors commercially available software (which usually has a hefty licensing fee attached), and in many cases is an improvement.</P>

<P>Linux includes many GNU utilities, including the languages mentioned earlier, debuggers, compiler tools, and more. Text processing, print utilities, and other GNU tools are also included with most Linux distributions.</P><P><BR></P>

<CENTER>

<TABLE BORDER>

<TR>

<TD><A HREF="../ewtoc.html">Previous</A></TD>

<TD><A HREF="../ewtoc.html">Table of Contents</A></TD>

<TD><A HREF="008-010.html">Next</A></TD>

</TR>

</TABLE>

</CENTER>





</td>
</tr>
</table>

<!-- begin footer information -->





</body></html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -