<?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>Text Books &#187; Linux</title>
	<atom:link href="http://www.txtbooks.net/txt/category/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.txtbooks.net</link>
	<description>Short Manuals That You Really Need!</description>
	<lastBuildDate>Sun, 13 Jun 2010 14:55:46 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>VSFTPD: Lock Users in Home Directory</title>
		<link>http://www.txtbooks.net/txt/vsftpd-lock-users-in-home-directory/</link>
		<comments>http://www.txtbooks.net/txt/vsftpd-lock-users-in-home-directory/#comments</comments>
		<pubDate>Sun, 13 Jun 2010 14:55:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[vsFTPd]]></category>
		<category><![CDATA[chroot]]></category>

		<guid isPermaLink="false">http://www.txtbooks.net/?p=56</guid>
		<description><![CDATA[To lock users in their home directory in VSFTP, you need to edit file vsftpd.conf, usually found in (/etc/vsftpd/vsftpd.conf). and add the following line
chroot_local_user=yes
]]></description>
			<content:encoded><![CDATA[<p>To <strong>lock users in their home directory in VSFTP</strong>, you need to edit file vsftpd.conf, usually found in (/etc/vsftpd/vsftpd.conf). and add the following line</p>
<p class="code">chroot_local_user=yes</p>
]]></content:encoded>
			<wfw:commentRss>http://www.txtbooks.net/txt/vsftpd-lock-users-in-home-directory/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Mount an ISO image under Linux</title>
		<link>http://www.txtbooks.net/txt/how-to-mount-an-iso-image-under-linux/</link>
		<comments>http://www.txtbooks.net/txt/how-to-mount-an-iso-image-under-linux/#comments</comments>
		<pubDate>Tue, 01 Jun 2010 09:59:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[iso image]]></category>
		<category><![CDATA[linux iso]]></category>
		<category><![CDATA[mount iso]]></category>

		<guid isPermaLink="false">http://www.txtbooks.net/?p=47</guid>
		<description><![CDATA[To Mount an ISO image under Linux, you need simply to do the following steps.
1. you must be logged in as root
2. Create a mounpoint (Folder)
mkdir -p /mnt/isodisk
3. Use mount command as follows to mount iso file called dvd1.iso
mount -o loop dvd1.iso /mnt/isodisk
4. Change directory to list files stored inside an ISO image:
cd /mnt/disk
ls -l

ISO [...]]]></description>
			<content:encoded><![CDATA[<p>To <strong>Mount an ISO image under Linux</strong>, you need simply to do the following steps.</p>
<p>1. you must be logged in as root</p>
<p>2. Create a mounpoint (Folder)</p>
<p class="code">mkdir -p /mnt/isodisk</p>
<p>3. Use mount command as follows to mount iso file called dvd1.iso</p>
<p class="code">mount -o loop dvd1.iso /mnt/isodisk</p>
<p>4. Change directory to list files stored inside an ISO image:</p>
<p class="code">cd /mnt/disk<br />
ls -l
</p>
<p><strong>ISO Image:</strong><br />
An ISO image is an archive file (disk image) of an optical disc using a conventional ISO (International Organization for Standardization) format. ISO image files typically have a file extension of .ISO. The name "ISO" is taken from the ISO 9660 file system used with CD-ROM media, but an ISO image can also contain UDF file system because UDF is backward-compatible to ISO 9660.</p>
<p>You can mount an ISO images via the loop device under Linux. It is possible to specify transfer functions (for encryption/decryption or other purposes) using loop device.</p>
<p><strong>More about loop device</strong></p>
<p>A loop device is a pseudo-device that makes a file accessible as a block device. Loop devices are often used for CD ISO images and floppy disc images. Mounting a file containing a filesystem via such a loop mount makes the files within that filesystem accessible. They appear in the mount point directory using above commands.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.txtbooks.net/txt/how-to-mount-an-iso-image-under-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to find computer serial number</title>
		<link>http://www.txtbooks.net/txt/how-to-find-computer-serial-number/</link>
		<comments>http://www.txtbooks.net/txt/how-to-find-computer-serial-number/#comments</comments>
		<pubDate>Mon, 31 May 2010 11:51:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[bios]]></category>
		<category><![CDATA[serial number]]></category>
		<category><![CDATA[system serial number]]></category>

		<guid isPermaLink="false">http://www.txtbooks.net/?p=44</guid>
		<description><![CDATA[How to find computer serial number in Windows:
From the Command line prompt type
wmic bios get serialnumber
To get the computer model
wmic csproduct get name
How to find computer serial number in Linux:
from the command line type
dmidecode  &#124; grep "System Information" -a10
]]></description>
			<content:encoded><![CDATA[<p><strong>How to find computer serial number in Windows:</strong></p>
<p>From the Command line prompt type</p>
<p class="code">wmic bios get serialnumber</p>
<p>To get the computer model</p>
<p class="code">wmic csproduct get name</p>
<p><strong>How to find computer serial number in Linux:</strong><br />
from the command line type</p>
<p class="code">dmidecode  | grep "System Information" -a10</p>
]]></content:encoded>
			<wfw:commentRss>http://www.txtbooks.net/txt/how-to-find-computer-serial-number/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>eAccelerator Best Settings</title>
		<link>http://www.txtbooks.net/txt/eaccelerator-best-settings/</link>
		<comments>http://www.txtbooks.net/txt/eaccelerator-best-settings/#comments</comments>
		<pubDate>Sun, 17 Jan 2010 11:47:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Caching]]></category>
		<category><![CDATA[eaccelerator]]></category>
		<category><![CDATA[php performace]]></category>

		<guid isPermaLink="false">http://www.txtbooks.net/?p=38</guid>
		<description><![CDATA[eaccelerator.shm_size="28"
eaccelerator.cache_dir="/var/cache/eaccelerator-php5/"
eaccelerator.enable="1"
eaccelerator.optimizer="1"
eaccelerator.debug="0"
eaccelerator.check_mtime="1"
eaccelerator.filter=""
eaccelerator.shm_max="0"
eaccelerator.shm_ttl="0"
eaccelerator.shm_prune_period="0"
eaccelerator.shm_only="0"
eaccelerator.compress="1"
eaccelerator.compress_level="9"
eaccelerator.keys="shm_and_disk"
eaccelerator.sessions="shm_and_disk"
eaccelerator.content="shm_and_disk"
]]></description>
			<content:encoded><![CDATA[<p class="code">eaccelerator.shm_size="28"<br />
eaccelerator.cache_dir="/var/cache/eaccelerator-php5/"<br />
eaccelerator.enable="1"<br />
eaccelerator.optimizer="1"<br />
eaccelerator.debug="0"<br />
eaccelerator.check_mtime="1"<br />
eaccelerator.filter=""<br />
eaccelerator.shm_max="0"<br />
eaccelerator.shm_ttl="0"<br />
eaccelerator.shm_prune_period="0"<br />
eaccelerator.shm_only="0"<br />
eaccelerator.compress="1"<br />
eaccelerator.compress_level="9"<br />
eaccelerator.keys="shm_and_disk"<br />
eaccelerator.sessions="shm_and_disk"<br />
eaccelerator.content="shm_and_disk"</p>
]]></content:encoded>
			<wfw:commentRss>http://www.txtbooks.net/txt/eaccelerator-best-settings/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[RESOLVED] compiling PHP5/Imap: configure: error: utf8_mime2text() has new signature, but U8T_CANONICAL is missing</title>
		<link>http://www.txtbooks.net/txt/resolved-compiling-php5imap-configure-error-utf8_mime2text-has-new-signature-but-u8t_canonical-is-missing/</link>
		<comments>http://www.txtbooks.net/txt/resolved-compiling-php5imap-configure-error-utf8_mime2text-has-new-signature-but-u8t_canonical-is-missing/#comments</comments>
		<pubDate>Sun, 03 Jan 2010 13:36:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.txtbooks.net/?p=17</guid>
		<description><![CDATA[if you get the following error while trying to compile php5 with imap.
configure: error: utf8_mime2text() has new signature, but U8T_CANONICAL is missing
on RedHat do the following:
yum install libc-client-devel
The try to recompile PHP
That should solve the problem.
]]></description>
			<content:encoded><![CDATA[<p>if you get the following error while trying to compile php5 with imap.</p>
<p class="code">configure: error: utf8_mime2text() has new signature, but U8T_CANONICAL is missing</p>
<p>on RedHat do the following:</p>
<p class="code">yum install libc-client-devel</p>
<p>The try to recompile PHP<br />
That should solve the problem.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.txtbooks.net/txt/resolved-compiling-php5imap-configure-error-utf8_mime2text-has-new-signature-but-u8t_canonical-is-missing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>compiling php with  modules to php with custombuild (DA)</title>
		<link>http://www.txtbooks.net/txt/compiling-php-with-modules-to-php-with-custombuild-da/</link>
		<comments>http://www.txtbooks.net/txt/compiling-php-with-modules-to-php-with-custombuild-da/#comments</comments>
		<pubDate>Sun, 03 Jan 2010 13:18:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Direct Admin]]></category>

		<guid isPermaLink="false">http://www.txtbooks.net/?p=6</guid>
		<description><![CDATA[If you want to add any extra modules to php, they'll most likely need to be compiled in. Any module that needs to be compiled in will have a --with-module type flag which will need to be used. To add this flag, run the following:
cd /usr/local/directadmin/custombuild
mkdir -p custom/ap2
cp -fp configure/ap2/configure.php5 custom/ap2/configure.php5
#add your --with-module line to [...]]]></description>
			<content:encoded><![CDATA[<p>If you want to add any extra modules to php, they'll most likely need to be compiled in. Any module that needs to be compiled in will have a --with-<strong>module</strong> type flag which will need to be used. To add this flag, run the following:</p>
<p class="code">cd /usr/local/directadmin/custombuild<br />
mkdir -p custom/ap2<br />
cp -fp configure/ap2/configure.php5 custom/ap2/configure.php5<br />
#add your <strong>--with-module</strong> line to the end of the custom/ap2/configure.php5 file,<br />
# and make sure the \ character exists at the end of all lines except the last one.<br />
./build php n</p>
<p>change configure.php5 to configure.php4 if you're using php4.<br />
If you're using suphp, the paths would be configure/suphp/configure.php5 and custom/suphp/configure.php5.</p>
<p>Restart apache:</p>
<p>RedHat:</p>
<p class="code">/sbin/service httpd restart</p>
]]></content:encoded>
			<wfw:commentRss>http://www.txtbooks.net/txt/compiling-php-with-modules-to-php-with-custombuild-da/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

