<?xml version="1.0" encoding="UTF-8"?><!-- generator="WordPress/2.9" -->
<rss version="0.92">
<channel>
	<title>Text Books</title>
	<link>http://www.txtbooks.net</link>
	<description>Short Manuals That You Really Need!</description>
	<lastBuildDate>Sun, 13 Jun 2010 14:55:46 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>VSFTPD: Lock Users in Home Directory</title>
		<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>
		<link>http://www.txtbooks.net/txt/vsftpd-lock-users-in-home-directory/</link>
			</item>
	<item>
		<title>MacOS X Leopard Cool Wallpaper</title>
		<description><![CDATA[I love the MacOS X Leopard snow wallpaper, but the problem with it tooo much bright, so can hardly see my icons, i've just created one which is half balck / half white. and i'm sharing it with you guys.

]]></description>
		<link>http://www.txtbooks.net/txt/macos-x-leopard-cool-wallpaper/</link>
			</item>
	<item>
		<title>How to Mount an ISO image under Linux</title>
		<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>
		<link>http://www.txtbooks.net/txt/how-to-mount-an-iso-image-under-linux/</link>
			</item>
	<item>
		<title>How to find computer serial number</title>
		<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>
		<link>http://www.txtbooks.net/txt/how-to-find-computer-serial-number/</link>
			</item>
	<item>
		<title>The Session Is Not Authenticated</title>
		<description><![CDATA[While trying to convert a VM from one location to  another you get the  error: The Session is not authenticated
SOLUTION:
Exit the standalone converter and open your  services (Start&#62;Run and then type in services.msc and press enter.)
Locate following services and stop them in this  order:

VMWare vCenter Converter Server
VMWare vCenter Converter Agent

Now start [...]]]></description>
		<link>http://www.txtbooks.net/txt/the-session-is-not-authenticated/</link>
			</item>
	<item>
		<title>eAccelerator Best Settings</title>
		<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>
		<link>http://www.txtbooks.net/txt/eaccelerator-best-settings/</link>
			</item>
	<item>
		<title>Snow Leopard Java problems (and fix)</title>
		<description><![CDATA[

This workaround, will fix Zend Development Environment issues on Mac OS X Leopard Snow.
In the terminal:
Get the java 5 that was included in 10.5 "leopard" and unpack
cd /tmp/
curl -o java.1.5.0-leopard.tar.gz http://www.cs.washington.edu/homes/isdal/snow_leopard_workaround/java.1.5.0-leopard.tar.gz
tar -xvzf java.1.5.0-leopard.tar.gz
Move it to your System java folder (password needed)
sudo mv 1.5.0 /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0-leopard
Tell OS X that java 5 actually is java 5
cd /System/Library/Frameworks/JavaVM.framework/Versions/
sudo rm [...]]]></description>
		<link>http://www.txtbooks.net/txt/snow-leopard-java-problems-and-fix/</link>
			</item>
	<item>
		<title>Salifert Nitrite (NO2) Test Kit Instructions</title>
		<description><![CDATA[NO2 (Nitrite) Profi-Test

 In a properly cycled aquarium, nitrite is converted to nitrate and then, if there are areas deprived of oxygen such as in live rock and other filter materials, this nitrate is converted back to nitrite and then transformed into harmless nitrogen gas.
If this cycle breaks down then nitrites, which are extremely toxic [...]]]></description>
		<link>http://www.txtbooks.net/txt/salifert-nitrite-no2-test-kit-instructions/</link>
			</item>
	<item>
		<title>[RESOLVED] compiling PHP5/Imap: configure: error: utf8_mime2text() has new signature, but U8T_CANONICAL is missing</title>
		<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>
		<link>http://www.txtbooks.net/txt/resolved-compiling-php5imap-configure-error-utf8_mime2text-has-new-signature-but-u8t_canonical-is-missing/</link>
			</item>
	<item>
		<title>compiling php with  modules to php with custombuild (DA)</title>
		<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>
		<link>http://www.txtbooks.net/txt/compiling-php-with-modules-to-php-with-custombuild-da/</link>
			</item>
</channel>
</rss>
