<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Free ebook and Pdf download &#187; Linux Guide</title>
	<atom:link href="http://pdfpanda.com/pdf/tag/linux-guide/feed" rel="self" type="application/rss+xml" />
	<link>http://pdfpanda.com</link>
	<description>download free ebook for your computer</description>
	<lastBuildDate>Sat, 14 Jan 2012 17:15:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>Pocket Linux Guide</title>
		<link>http://pdfpanda.com/pdf/pocket-linux-guide.html</link>
		<comments>http://pdfpanda.com/pdf/pocket-linux-guide.html#comments</comments>
		<pubDate>Sat, 27 Feb 2010 12:47:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Computer]]></category>
		<category><![CDATA[Linux Guide]]></category>
		<category><![CDATA[Pocket Linux Guide]]></category>

		<guid isPermaLink="false">http://pdfpanda.com/?p=43</guid>
		<description><![CDATA[This is pocket linux guide for you, pocket mean this guide is very easy to understand . Contents Legal Information 1. Copyright and License 2. Disclaimer Introduction 1. About Pocket Linux 2. Prerequisite Skills 3. Project Format 4. Help &#038; Support 5. Feedback Chapter 1. Project Initiation 1.1. A Brief History of GNU/Linux 1.2. The [...]]]></description>
			<content:encoded><![CDATA[<p>This is pocket linux guide for you, pocket mean this guide is very easy to understand .</p>
<p>Contents<br />
Legal Information</p>
<p>      1. Copyright and License<br />
      2. Disclaimer</p>
<p>Introduction</p>
<p>      1. About Pocket Linux<br />
      2. Prerequisite Skills<br />
      3. Project Format<br />
      4. Help &#038; Support<br />
      5. Feedback</p>
<p>Chapter 1. Project Initiation</p>
<p>      1.1. A Brief History of GNU/Linux<br />
      1.2. The Goal of Pocket Linux<br />
      1.3. Working Within The Constraints</p>
<p>Chapter 2. A Simple Prototype</p>
<p>      2.1. Analysis<br />
      2.2. Design<br />
            2.2.1. Simplification<br />
            2.2.2. Boot Disk<br />
            2.2.3. Root Disk<br />
            2.2.4. CPU Compatibility</p>
<p>      2.3. Construction<br />
            2.3.1. Prepare the boot disk media<br />
            2.3.2. Build the GRUB bootloader<br />
            2.3.3. Copy the bootloader files to diskette<br />
            2.3.4. Finish bootloader installation<br />
            2.3.5. Build the Linux kernel<br />
            2.3.6. Copy the kernel to diskette<br />
            2.3.7. Unmount the boot disk.<br />
            2.3.8. Prepare the root disk media<br />
            2.3.9. Build BASH<br />
            2.3.10. Copy BASH to the root disk<br />
            2.3.11. Create device files that BASH needs<br />
            2.3.12. Unmount the root disk</p>
<p>      2.4. Implementation<br />
            2.4.1. System startup<br />
            2.4.2. Testing what works<br />
            2.4.3. Noting what does not work<br />
            2.4.4. System shutdown </p>
<p>Chapter 3. Saving Space</p>
<p>      3.1. Analysis<br />
      3.2. Design<br />
            3.2.1. Shared Libraries<br />
            3.2.2. Stripped Binaries<br />
            3.2.3. Compressed Root Filesystem</p>
<p>      3.3. Construction<br />
            3.3.1. Create a ramdisk<br />
            3.3.2. Rebuild the BASH shell<br />
            3.3.3. Determine which libraries are required<br />
            3.3.4. Copy BASH and its libraries to the ramdisk<br />
            3.3.5. Create a console device<br />
            3.3.6. Compress the ramdisk image<br />
            3.3.7. Copy the compressed image to diskette</p>
<p>      3.4. Implementation<br />
            3.4.1. System startup<br />
            3.4.2. Verify results<br />
            3.4.3. System shutdown </p>
<p>Chapter 4. Some Basic Utilities</p>
<p>      4.1. Analysis<br />
      4.2. Design<br />
            4.2.1. Determining Required Commands<br />
            4.2.2. Locating Source Code<br />
            4.2.3. Leveraging FHS<br />
            4.2.4. Downloading Source Code</p>
<p>      4.3. Construction<br />
            4.3.1. Create a staging area<br />
            4.3.2. Copy contents of phase 2 rootdisk<br />
            4.3.3. Install binaries from GNU coreutils<br />
            4.3.4. Copy additional libraries<br />
            4.3.5. Strip binaries and libraries<br />
            4.3.6. Create a compressed root disk image<br />
            4.3.7. Write the root disk image to floppy</p>
<p>      4.4. Implementation<br />
            4.4.1. System startup<br />
            4.4.2. Testing new commands<br />
            4.4.3. System shutdown </p>
<p>Chapter 5. Checking and Mounting Disks</p>
<p>      5.1. Analysis<br />
      5.2. Design<br />
            5.2.1. Determining necessary utilities<br />
            5.2.2. Finding source code<br />
            5.2.3. Automating fsck and mount<br />
            5.2.4. File dependencies</p>
<p>      5.3. Construction<br />
            5.3.1. Install utilities from e2fsprogs<br />
            5.3.2. Install utilities from util?linux<br />
            5.3.3. Check library requirements<br />
            5.3.4. Strip binaries to save space<br />
            5.3.5. Create additional device files<br />
            5.3.6. Create the fstab and mtab files<br />
            5.3.7. Write a script to check and mount local filesystems<br />
            5.3.8. Create a compressed root disk image<br />
            5.3.9. Write the root disk image to floppy</p>
<p>      5.4. Implementation<br />
            5.4.1. System startup<br />
            5.4.2. Test the local_fs script<br />
            5.4.3. Create and mount additional filesystems<br />
            5.4.4. System shutdown </p>
<p>Chapter 6. Automating Startup &#038; Shutdown</p>
<p>      6.1. Analysis<br />
      6.2. Design<br />
            6.2.1. Determining necessary utilities<br />
            6.2.2. Obtaining source code<br />
            6.2.3. Checking dependencies<br />
            6.2.4. Designing a simple GRUB configuration file<br />
            6.2.5. Outlining start?up scripts</p>
<p>      6.3. Construction<br />
            6.3.1. Create a GRUB configuration file<br />
            6.3.2. Install sysvinit utilities<br />
            6.3.3. Create /etc/inittab file<br />
            6.3.4. Create /etc/init.d/rc script<br />
            6.3.5. Modify /etc/init.d/local_fs script<br />
            6.3.6. Create a hostname script<br />
            6.3.7. Create halt &#038; reboot scripts<br />
            6.3.8. Create rcN.d directories and links<br />
            6.3.9. Create the root disk image<br />
            6.3.10. Copy the image to diskette</p>
<p>      6.4. Implementation<br />
            6.4.1. System Startup<br />
            6.4.2. Verify success of startup scripts<br />
            6.4.3. System shutdown </p>
<p>Chapter 7. Enabling Multiple Users</p>
<p>      7.1. Analysis<br />
      7.2. Design<br />
            7.2.1. The login process<br />
            7.2.2. Obtaining source code<br />
            7.2.3. Creating support files<br />
            7.2.4. Dependencies<br />
            7.2.5. Assigning ownership and permissions</p>
<p>      7.3. Construction<br />
            7.3.1. Verify presence of getty and login<br />
            7.3.2. Modify inittab for multi?user mode<br />
            7.3.3. Create tty devices<br />
            7.3.4. Create support files in /etc<br />
            7.3.5. Copy required libraries<br />
            7.3.6. Set directory and file permissions<br />
            7.3.7. Create the root disk image<br />
            7.3.8. Copy the image to diskette</p>
<p>      7.4. Implementation<br />
            7.4.1. System Startup<br />
            7.4.2. Add a new user to the system<br />
            7.4.3. Test the new user&#8217;s ability to use the system<br />
            7.4.4. System shutdown </p>
<p>Chapter 8. Filling in the Gaps</p>
<p>      8.1. Analysis<br />
      8.2. Design.8.2.1. more<br />
            8.2.2. More device files<br />
            8.2.3. ps, sed &#038; ed</p>
<p>      8.3. Construction<br />
            8.3.1. Write a &#8220;more&#8221; script<br />
            8.3.2. Create additional device files<br />
            8.3.3. Install ps<br />
            8.3.4. Install sed<br />
            8.3.5. Install ed<br />
            8.3.6. Strip binaries to save space<br />
            8.3.7. Ensure proper permissions<br />
            8.3.8. Create the root disk image<br />
            8.3.9. Copy the image to diskette</p>
<p>      8.4. Implementation<br />
            8.4.1. System startup<br />
            8.4.2. Test the &#8220;more&#8221; script<br />
            8.4.3. Use ps to show running processes<br />
            8.4.4. Run a simple sed script<br />
            8.4.5. Test the &#8220;ed&#8221; editor<br />
            8.4.6. System shutdown </p>
<p>Chapter 9. Project Wrap Up</p>
<p>      9.1. Celebrating Accomplishments<br />
      9.2. Planning Next Steps</p>
<p>Appendix A. Hosting Applications<br />
A.1. Analysis<br />
A.2. Design</p>
<p>      A.2.1. Support for audio hardware<br />
      A.2.2. Creating space for the program<br />
      A.2.3. Accessing audio files<br />
      A.2.4. Other required files<br />
      A.2.5. Summary of tasks</p>
<p>A.3. Construction</p>
<p>      A.3.1. Create an enhanced boot disk</p>
<p>Appendix A. Hosting Applications</p>
<p>      A.3.2. Create an enhanced root disk<br />
      A.3.3. Create a compressed /usr disk for mp3blaster<br />
      A.3.4. Create a data diskette for testing</p>
<p>A.4. Implementation</p>
<p>      A.4.1. System Startup<br />
      A.4.2. Verify that the /usr diskette loaded properly<br />
      A.4.3. Check the audio device initialization<br />
      A.4.4. Test audio output<br />
      A.4.5. Play a sample file<br />
      A.4.6. System shutdown</p>
<p>Appendix B. GNU Free Documentation License</p>
<p>      B.1. PREAMBLE<br />
      B.2. APPLICABILITY AND DEFINITIONS<br />
      B.3. VERBATIM COPYING<br />
      B.4. COPYING IN QUANTITY<br />
      B.5. MODIFICATIONS<br />
      B.6. COMBINING DOCUMENTS<br />
      B.7. COLLECTIONS OF DOCUMENTS<br />
      B.8. AGGREGATION WITH INDEPENDENT WORKS<br />
      B.9. TRANSLATION<br />
      B.10. TERMINATION<br />
      B.11. FUTURE REVISIONS OF THIS LICENSE<br />
      B.12. ADDENDUM: How to use this License for your documents</p>
<p><a rel="nofollow" href='http://pdfpanda.com/goto/download_Pocket_Linux_Guide_pdf/43/1'><!--cloak-->download Pocket Linux Guide.pdf</a></p>
<div id="seo_alrp_related"><h2>Posts Related to Pocket Linux Guide</h2><ul><li><div class="seo_alrp_rl_thumb" style="float:left; margin: 0 10px 5px 0; border: 2px solid #eee ; padding: 2px;"><a href="http://pdfpanda.com/pdf/build-a-custom-wordpress-theme.html" rel="bookmark"><img src="http://pdfpanda.com/wp-content/plugins/seo-alrp/default_thumbnail.gif" alt="Build a custom WordPress theme" title="Build a custom WordPress theme" width="60" height="40"  class="seo_alrp_thumb" /></a> </div><div class="seo_alrp_rl_content"><h3><a href="http://pdfpanda.com/pdf/build-a-custom-wordpress-theme.html" rel="bookmark">Build a custom WordPress theme</a></h3><p>Creating a WordPress theme is extremely easy, as you don’t need any PHP programming skills. However, in order to create a custom theme you need ...</p></div></li><li><div class="seo_alrp_rl_thumb" style="float:left; margin: 0 10px 5px 0; border: 2px solid #eee ; padding: 2px;"><a href="http://pdfpanda.com/pdf/the-linux-kernel-module-programming-guide.html" rel="bookmark"><img src="http://pdfpanda.com/wp-content/plugins/seo-alrp/default_thumbnail.gif" alt="Linux Shell Scripting Tutorial Ver. 1.0" title="Linux Shell Scripting Tutorial Ver. 1.0" width="60" height="40"  class="seo_alrp_thumb" /></a> </div><div class="seo_alrp_rl_content"><h3><a href="http://pdfpanda.com/pdf/the-linux-kernel-module-programming-guide.html" rel="bookmark">Linux Shell Scripting Tutorial Ver. 1.0</a></h3><p>This tutorial is designed for beginners only and This tutorial explains the basics of shell programming by showing some examples of shell programs. Its not ...</p></div></li><li><div class="seo_alrp_rl_thumb" style="float:left; margin: 0 10px 5px 0; border: 2px solid #eee ; padding: 2px;"><a href="http://pdfpanda.com/pdf/iptables-basic-guide.html" rel="bookmark"><img src="http://pdfpanda.com/wp-content/plugins/seo-alrp/default_thumbnail.gif" alt="Iptables Basic Guide" title="Iptables Basic Guide" width="60" height="40"  class="seo_alrp_thumb" /></a> </div><div class="seo_alrp_rl_content"><h3><a href="http://pdfpanda.com/pdf/iptables-basic-guide.html" rel="bookmark">Iptables Basic Guide</a></h3><p>People always complain about how hard iptables are to understand and configure. I'm not saying it's an easy process but once you get the hang ...</p></div></li><li><div class="seo_alrp_rl_thumb" style="float:left; margin: 0 10px 5px 0; border: 2px solid #eee ; padding: 2px;"><a href="http://pdfpanda.com/pdf/red-hat-linux-9-red-hat-linux-reference-guide.html" rel="bookmark"><img src="http://pdfpanda.com/wp-content/plugins/seo-alrp/default_thumbnail.gif" alt="Red Hat Linux 9: Red Hat Linux Reference Guide" title="Red Hat Linux 9: Red Hat Linux Reference Guide" width="60" height="40"  class="seo_alrp_thumb" /></a> </div><div class="seo_alrp_rl_content"><h3><a href="http://pdfpanda.com/pdf/red-hat-linux-9-red-hat-linux-reference-guide.html" rel="bookmark">Red Hat Linux 9: Red Hat Linux Reference Guide</a></h3><p>The Red Hat Linux Customization Guide is designed to help explain the various ways a Red Hat Linux system can be configured to meet specific ...</p></div></li><li><div class="seo_alrp_rl_thumb" style="float:left; margin: 0 10px 5px 0; border: 2px solid #eee ; padding: 2px;"><a href="http://pdfpanda.com/pdf/windows-xp-hacks-tips-and-tools-for-optimizing-your-os.html" rel="bookmark"><img src="http://pdfpanda.com/wp-content/plugins/seo-alrp/default_thumbnail.gif" alt="Windows xp hacks- tips and tools for optimizing your OS" title="Windows xp hacks- tips and tools for optimizing your OS" width="60" height="40"  class="seo_alrp_thumb" /></a> </div><div class="seo_alrp_rl_content"><h3><a href="http://pdfpanda.com/pdf/windows-xp-hacks-tips-and-tools-for-optimizing-your-os.html" rel="bookmark">Windows xp hacks- tips and tools for optimizing your OS</a></h3><p>There’s a simple way to speed up XP startup: make your system do a boot defragment, which will put all the boot files next to ...</p></div></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://pdfpanda.com/pdf/pocket-linux-guide.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

