📄 098-100.html
字号:
<HTML>
<HEAD>
<TITLE>Linux Unleashed, Third Edition:Wrapping Up the Installation</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=5//-->
<!--PAGES=098-100//-->
<!--UNASSIGNED1//-->
<!--UNASSIGNED2//-->
<CENTER>
<TABLE BORDER>
<TR>
<TD><A HREF="095-098.html">Previous</A></TD>
<TD><A HREF="../ewtoc.html">Table of Contents</A></TD>
<TD><A HREF="../ch06/101-106.html">Next</A></TD>
</TR>
</TABLE>
</CENTER>
<P><BR></P>
<H4 ALIGN="LEFT"><A NAME="Heading14"></A><FONT COLOR="#000077">Changing CDs</FONT></H4>
<P>Whenever a CD-ROM is to be made available to the system, it is mounted on the file system with a command like this:
</P>
<!-- CODE SNIP //-->
<PRE>
mount type device mount_point
</PRE>
<!-- END CODE SNIP //-->
<P><TT>type</TT> is any special instruction that applies to the CD-ROM (such as USO9660 file system or read-only), <TT>device</TT> is the device name, and <TT>mount_point</TT> is where the CD-ROM contents are to be placed in the Linux file system. For example, to mount an ISO9660 (which is the standard for CD-ROM contents) CD on the first CD device <TT>/dev/cd0</TT> to the mount point <TT>/usr/cdrom</TT>, you would issue this command:</P>
<!-- CODE SNIP //-->
<PRE>
mount -t ISO9660 /dev/cd0 /usr/cdrom
</PRE>
<!-- END CODE SNIP //-->
<P>From then on, all queries to the <TT>/usr/cdrom</TT> directory and its subdirectories are steered to the CD-ROM and its contents. When you want to change the CD to another one, you should not just eject the first and insert the second (in fact, many CD-ROM drives will not allow you to do this if the disk is in use). Instead, you have to unmount the CD with the <TT>umount</TT> command, specifying either the mount point or the device. One of these two commands would unmount the CD-ROM mounted with the preceding command:</P>
<!-- CODE SNIP //-->
<PRE>
umount /dev/cd0
umount /usr/cdrom
</PRE>
<!-- END CODE SNIP //-->
<P>Both commands accomplish the same task.
</P>
<H3><A NAME="Heading15"></A><FONT COLOR="#000077">Summary</FONT></H3>
<P>This chapter has looked at a few issues, including using the package management tools to add new software to your system and using multiple CD-ROM drives. This chapter rounds out the installation section of this book. From here, we move on to look at how you can use the Linux system you’ve just installed. You may want to bounce around and look up other useful information, instead of continuing on in sequence.
</P>
<DL>
<DD>To learn how to install sound cards and use them in conjunction with your system for multimedia applications, see Chapter 21, “Multimedia Linux.”
<DD>To learn how to install and configure XFree86, the X server that provides you with a GUI interface to Linux, see Chapter 22, “Installing and Configuring XFree86.”
<DD>To learn about CD-ROM devices, major and minor device numbers, and how to add new devices such as multiple CD-ROMs, see Chapter 33, “Devices.”
</DL>
<P><BR></P>
<CENTER>
<TABLE BORDER>
<TR>
<TD><A HREF="095-098.html">Previous</A></TD>
<TD><A HREF="../ewtoc.html">Table of Contents</A></TD>
<TD><A HREF="../ch06/101-106.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 + -