<?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>Admins eHow</title>
	<atom:link href="http://www.adminsehow.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.adminsehow.com</link>
	<description>Guides and Tricks for Administrators</description>
	<lastBuildDate>Sat, 03 Nov 2012 00:10:57 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>The proper way to benchmark disk write performance in Linux</title>
		<link>http://www.adminsehow.com/2012/10/the-proper-way-to-benchmark-disk-write-performance-in-linux/</link>
		<comments>http://www.adminsehow.com/2012/10/the-proper-way-to-benchmark-disk-write-performance-in-linux/#comments</comments>
		<pubDate>Wed, 24 Oct 2012 07:46:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CentOS]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[benchmark]]></category>
		<category><![CDATA[dd]]></category>
		<category><![CDATA[disk]]></category>
		<category><![CDATA[performance]]></category>

		<guid isPermaLink="false">http://www.adminsehow.com/?p=672</guid>
		<description><![CDATA[The result is something like this : 512+0 records in 512+0 records out 536870912 bytes (537 MB) copied, 1.43334 s, 375 MB/s]]></description>
				<content:encoded><![CDATA[<pre class="brush: bash; title: ; notranslate">dd bs=1M count=512 if=/dev/zero of=test conv=fdatasync</pre>
<p>The result is something like this :<br />
512+0 records in<br />
512+0 records out<br />
536870912 bytes (537 MB) copied, 1.43334 s, <strong>375 MB/s</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.adminsehow.com/2012/10/the-proper-way-to-benchmark-disk-write-performance-in-linux/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to enable AHCI support for Windows on an iMac, MacBook or etc</title>
		<link>http://www.adminsehow.com/2012/10/how-to-enable-ahci-support-for-windows-on-an-imac-macbook-or-etc/</link>
		<comments>http://www.adminsehow.com/2012/10/how-to-enable-ahci-support-for-windows-on-an-imac-macbook-or-etc/#comments</comments>
		<pubDate>Sun, 14 Oct 2012 09:18:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[AHCI]]></category>
		<category><![CDATA[ATA]]></category>
		<category><![CDATA[iMac]]></category>
		<category><![CDATA[MacBook]]></category>
		<category><![CDATA[MBR]]></category>
		<category><![CDATA[Patch]]></category>
		<category><![CDATA[SSD]]></category>

		<guid isPermaLink="false">http://www.adminsehow.com/?p=666</guid>
		<description><![CDATA[Apple does all the dirty tricks to show the iSheeps that Apple is a superior brand and provides superior performance compared to competition, the last one I found is that it disables AHCI support for Windows on its hardware. By disabling AHCI (which you have already paid for it and Apple hardware has this feature) [...]]]></description>
				<content:encoded><![CDATA[<p>Apple does all the dirty tricks to show the iSheeps that Apple is a superior brand and provides superior performance compared to competition, the last one I found is that it disables AHCI support for Windows on its hardware. By disabling AHCI (which you have already paid for it and Apple hardware has this feature) it forces Windows to use ATA controller disk drivers which is considerably slower than AHCI and has less features. for example you wont have TRIM support on your SSD disk on your Windows.<br />
By doing so, Apple gives you this feeling that Windows is slower than Mac OSX on the same hardware.<br />
Hopefully there is a workaround for this fraud of Apple. You will need to modify the Master Boot Record of your Windows drive.<br />
This workaround only works for Macs with Intel disk controllers. If you have Nvidia chipset, it will not work for you. You may confirm it in device manager of Windows.<br />
First step is to make sure windows tries to load AHCI drivers after AHCI is enabled in boot loader. if you miss this step you will get a BSOD on booting windows and you will need to restore old MBR for windows too boot up.<br />
Open your Windows registry editor and make sure &#8220;Start&#8221; Value in the following keys are set to 0.</p>
<pre class="brush: plain; title: ; notranslate">
HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\Msahci
HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\IastorV
HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\Iastor
</pre>
<p>Also we need the modified MBR which you can download from here : <a href='http://www.adminsehow.com/wp-content/uploads/2012/10/patchedcode.bin'>patchedcode.bin</a><br />
Put the patchedcode.bin on a USB stick which we can use later.<br />
OK, We are done in Windows. Now we need to boot using a Linux Live CD or MacOSX Install Disk. both will work.<br />
Put the bootable CD or USB stick into your computer and reboot.<br />
When you hear the boot sound (the white screen appears) hold down the option (alt) key. you should get the option to boot from CD or USB stick.<br />
Boot from CD or USB stick and Open a Terminal Window.<br />
First lets get a backup from current MBR so in case of any problems we can roll back to it.<br />
Also please note I am assuming your windows disk is /dev/disk0. if yours is different you may need to change it.<br />
Put in your USB stick, change directory to it and run the following command :</p>
<pre class="brush: bash; title: ; notranslate">dd if=/dev/disk0 of=backup.bin bs=512 count=1</pre>
<p>it will make a backup from your MBR to backup.bin<br />
now it is time to write the new MBR to disk :</p>
<pre class="brush: bash; title: ; notranslate">diskutil umountdisk /dev/disk0
dd if=patchedcode.bin of=/dev/disk0 bs=440 count=1</pre>
<p>All done ! now reboot into windows :</p>
<pre class="brush: bash; title: ; notranslate">shutdown -r now</pre>
<p>In Windows you should see windows installs the new AHCI drivers. also you may check that by looking into device manager.<br />
Also I recommend you to download and install &#8220;Intel Matrix Storage Manager&#8221; to update your AHCI drivers to intel&#8217;s ones.<br />
If anything goes wrong, you can revert back to old MBR by following commands in Terminal :</p>
<pre class="brush: bash; title: ; notranslate">diskutil umountdisk /dev/disk0
dd if=backup.bin of=/dev/disk0 bs=440 count=1</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.adminsehow.com/2012/10/how-to-enable-ahci-support-for-windows-on-an-imac-macbook-or-etc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to install transmission 2.71 on Debian 6.0 Squeeze</title>
		<link>http://www.adminsehow.com/2012/10/how-to-install-transmission-2-71-on-debian-6-0-squeeze/</link>
		<comments>http://www.adminsehow.com/2012/10/how-to-install-transmission-2-71-on-debian-6-0-squeeze/#comments</comments>
		<pubDate>Fri, 12 Oct 2012 06:41:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.adminsehow.com/?p=662</guid>
		<description><![CDATA[Installing transmission 2.71 on Debian 6 is a little tricky and is not as straight forward as installing by apt-get. Here is how you can do it. First you need to manually install libevent 2.0 : then some prerequisite packages for later installation : now it is time to download and configure transmission : now [...]]]></description>
				<content:encoded><![CDATA[<p>Installing transmission 2.71 on Debian 6 is a little tricky and is not as straight forward as installing by apt-get.<br />
Here is how you can do it.</p>
<p>First you need to manually install libevent 2.0 :</p>
<pre class="brush: bash; title: ; notranslate">
apt-get install make gcc
wget https://github.com/downloads/libevent/libevent/libevent-2.0.20-stable.tar.gz 
tar zxvf libevent-2.0.20-stable.tar.gz 
cd libevent-2.0.20-stable
./configure
make
make install
</pre>
<p>then some prerequisite packages for later installation :</p>
<pre class="brush: bash; title: ; notranslate">
apt-get install libssl-dev pkg-config libcurl4-openssl-dev intltool tar bzip2
</pre>
<p>now it is time to download and configure transmission :</p>
<pre class="brush: bash; title: ; notranslate">
wget http://download.transmissionbt.com/files/transmission-2.71.tar.bz2
tar jxvf transmission-2.71.tar.bz2
cd transmission-2.71
./configure --enable-lightweight --enable-daemon
</pre>
<p>now if you try to compile (make) the package you will get the following error :</p>
<p>tr-utp.c:65: error: conflicting types for &#8216;UTP_Write&#8217;<br />
../third-party/libutp/utp.h:116: note: previous declaration of &#8216;UTP_Write&#8217; was here<br />
make[1]: *** [tr-utp.o] Error 1<br />
make[1]: Leaving directory `/root/transmission-2.71/libtransmission&#8217;<br />
make: *** [all-recursive] Error 1</p>
<p>in order to fix this error open this file in transmission directory :</p>
<pre class="brush: bash; title: ; notranslate">
nano ./third-party/libutp/utypes.h
</pre>
<p>and comment following lines :</p>
<pre class="brush: cpp; title: ; notranslate">
// #ifndef __cplusplus
// typedef uint8 bool;
// #endif
</pre>
<p>and add following line just after above lines :</p>
<pre class="brush: cpp; title: ; notranslate"> 
#ifndef __cplusplus
#ifdef HAVE_STDBOOL_H
#include &lt;stdbool.h&gt;
#else
typedef uint8 bool;
#endif
#endif
</pre>
<p>save file and exit. return to transmission root directory and make and install.</p>
<pre class="brush: bash; title: ; notranslate">
make
make install
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.adminsehow.com/2012/10/how-to-install-transmission-2-71-on-debian-6-0-squeeze/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to verify mod_deflate, gzip working ?</title>
		<link>http://www.adminsehow.com/2012/09/how-to-verify-mod_deflate-gzip-working/</link>
		<comments>http://www.adminsehow.com/2012/09/how-to-verify-mod_deflate-gzip-working/#comments</comments>
		<pubDate>Wed, 05 Sep 2012 12:42:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[deflate]]></category>
		<category><![CDATA[gzip]]></category>
		<category><![CDATA[mod_deflate]]></category>
		<category><![CDATA[verify]]></category>

		<guid isPermaLink="false">http://www.adminsehow.com/?p=655</guid>
		<description><![CDATA[Lets say you have enabled compression in your web server by mod_deflate, gzip and now want to verify if the content is really compressed, here is how to do it : 1.Easy way : Go to this link : http://www.gidnetwork.com/tools/gzip-test.php Enter your website URL inside &#8220;Web Page URL&#8221; and click on &#8220;Check&#8221; 2.Technical way : [...]]]></description>
				<content:encoded><![CDATA[<p>Lets say you have enabled compression in your web server by mod_deflate, gzip and now want to verify if the content is really compressed, here is how to do it :</p>
<p><strong>1.Easy way :</strong><br />
Go to this link : <a href="http://www.gidnetwork.com/tools/gzip-test.php" target="_blank">http://www.gidnetwork.com/tools/gzip-test.php</a><br />
Enter your website URL inside &#8220;Web Page URL&#8221; and click on &#8220;Check&#8221; </p>
<p><strong>2.Technical way :</strong><br />
Make sure curl is installed on your server. then run following command (change yoursite.com to your own domain) :</p>
<pre class="brush: bash; title: ; notranslate">curl -I -H 'Accept-Encoding: gzip,deflate' http://yoursite.com</pre>
<p>what you should look for in output is this line :</p>
<pre class="brush: plain; title: ; notranslate">Content-Encoding: gzip</pre>
<p>if it is not there, the content is not compressed.<br />
here is the output for AdminseHow :</p>
<pre class="brush: plain; title: ; notranslate">
root@x~# curl -I -H 'Accept-Encoding: gzip,deflate' http://www.adminsehow.com

HTTP/1.1 406 Not Acceptable
Server: ApacheBooster/1.3
Date: Wed, 05 Sep 2012 12:39:22 GMT
Content-Type: text/html; charset=UTF-8
Content-Length: 8740
Connection: keep-alive
X-Pingback: http://www.adminsehow.com/xmlrpc.php
Vary: Accept-Encoding,Cookie,User-Agent
X-Powered-By: W3 Total Cache/0.9.2.4
Content-Encoding: gzip
Last-Modified: Wed, 05 Sep 2012 12:39:22 GMT
X-Cacheable: YES
Accept-Ranges: bytes
X-Varnish: 1984902025
Via: 1.1 varnish
age: 0
X-Cache: MISS</pre>
<p>The content is compressed. YAY <img src='http://www.adminsehow.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /><br />
PS : I know the response is &#8220;HTTP/1.1 406 Not Acceptable&#8221;, it is because of mod_security installed on server which prevents such simple automated requests to be served. but it doesn&#8217;t matter for our test.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.adminsehow.com/2012/09/how-to-verify-mod_deflate-gzip-working/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install SNMP on Debian</title>
		<link>http://www.adminsehow.com/2012/09/install-snmp-on-debian/</link>
		<comments>http://www.adminsehow.com/2012/09/install-snmp-on-debian/#comments</comments>
		<pubDate>Mon, 03 Sep 2012 10:15:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Debian]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[snmp]]></category>
		<category><![CDATA[snmpd]]></category>

		<guid isPermaLink="false">http://www.adminsehow.com/?p=652</guid>
		<description><![CDATA[The following easy steps will install snmp daemon on your Debian server : now snmpd simple configuration ( change SECRET_NAME to a complex string ) : restart snmpd : last step to check snmpd is working ( change SECRET_NAME to the string you have chose before ) : you should get an output like below [...]]]></description>
				<content:encoded><![CDATA[<p>The following easy steps will install snmp daemon on your Debian server :</p>
<pre class="brush: bash; title: ; notranslate">apt-get install snmpd snmp</pre>
<p>now snmpd simple configuration ( change SECRET_NAME to a complex string ) :</p>
<pre class="brush: bash; title: ; notranslate">echo rocommunity SECRET_NAME &gt; /etc/snmp/snmpd.conf</pre>
<p>restart snmpd :</p>
<pre class="brush: bash; title: ; notranslate">/etc/init.d/snmpd restart</pre>
<p>last step to check snmpd is working ( change SECRET_NAME to the string you have chose before ) :</p>
<pre class="brush: bash; title: ; notranslate">snmpwalk -v 1 -c SECRET_NAME -O e 127.0.0.1</pre>
<p>you should get an output like below :</p>
<pre class="brush: plain; title: ; notranslate">
iso.3.6.1.2.1.1.1.0 = STRING: &quot;Linux debian 2.6.32-5-686 #1 SMP Sun May 6 04:01:19 UTC 2012 i686&quot;
iso.3.6.1.2.1.1.2.0 = OID: iso.3.6.1.4.1.8072.3.2.10
iso.3.6.1.2.1.1.3.0 = Timeticks: (7026) 0:01:10.26
iso.3.6.1.2.1.1.4.0 = STRING: &quot;root&quot;
iso.3.6.1.2.1.1.5.0 = STRING: &quot;debian&quot;
iso.3.6.1.2.1.1.6.0 = STRING: &quot;Unknown&quot;
iso.3.6.1.2.1.1.8.0 = Timeticks: (0) 0:00:00.00
iso.3.6.1.2.1.1.9.1.2.1 = OID: iso.3.6.1.6.3.10.3.1.1
iso.3.6.1.2.1.1.9.1.2.2 = OID: iso.3.6.1.6.3.11.3.1.1
iso.3.6.1.2.1.1.9.1.2.3 = OID: iso.3.6.1.6.3.15.2.1.1
iso.3.6.1.2.1.1.9.1.2.4 = OID: iso.3.6.1.6.3.1
iso.3.6.1.2.1.1.9.1.2.5 = OID: iso.3.6.1.2.1.49
iso.3.6.1.2.1.1.9.1.2.6 = OID: iso.3.6.1.2.1.4
iso.3.6.1.2.1.1.9.1.2.7 = OID: iso.3.6.1.2.1.50
iso.3.6.1.2.1.1.9.1.2.8 = OID: iso.3.6.1.6.3.16.2.2.1
iso.3.6.1.2.1.1.9.1.3.1 = STRING: &quot;The SNMP Management Architecture MIB.&quot;
iso.3.6.1.2.1.1.9.1.3.2 = STRING: &quot;The MIB for Message Processing and Dispatching.&quot;
iso.3.6.1.2.1.1.9.1.3.3 = STRING: &quot;The management information definitions for the SNMP User-based Security Model.&quot;
iso.3.6.1.2.1.1.9.1.3.4 = STRING: &quot;The MIB module for SNMPv2 entities&quot;
iso.3.6.1.2.1.1.9.1.3.5 = STRING: &quot;The MIB module for managing TCP implementations&quot;
iso.3.6.1.2.1.1.9.1.3.6 = STRING: &quot;The MIB module for managing IP and ICMP implementations&quot;
iso.3.6.1.2.1.1.9.1.3.7 = STRING: &quot;The MIB module for managing UDP implementations&quot;
iso.3.6.1.2.1.1.9.1.3.8 = STRING: &quot;View-based Access Control Model for SNMP.&quot;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.adminsehow.com/2012/09/install-snmp-on-debian/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to auth Squid by Radius through PAM in Debian</title>
		<link>http://www.adminsehow.com/2012/07/how-to-auth-squid-by-radius-through-pam-in-debian/</link>
		<comments>http://www.adminsehow.com/2012/07/how-to-auth-squid-by-radius-through-pam-in-debian/#comments</comments>
		<pubDate>Mon, 16 Jul 2012 09:20:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Debian]]></category>
		<category><![CDATA[auth]]></category>
		<category><![CDATA[authentication]]></category>
		<category><![CDATA[pam]]></category>
		<category><![CDATA[radius]]></category>
		<category><![CDATA[squid]]></category>

		<guid isPermaLink="false">http://www.adminsehow.com/?p=643</guid>
		<description><![CDATA[install libpam-radius-auth open /etc/pam_radius_auth.conf and add the following lines into it. Your_IP and PORT are the IP address and Port of Radius sever. SecretKey is the Secret of radius server. 3 is the timeout in seconds. Change the permissions : create /etc/pam.d/squid : and add the following lines : Now install Squid if you have [...]]]></description>
				<content:encoded><![CDATA[<p>install libpam-radius-auth</p>
<pre class="brush: bash; title: ; notranslate">apt-get install libpam-radius-auth</pre>
<p>open /etc/pam_radius_auth.conf</p>
<pre class="brush: bash; title: ; notranslate">nano /etc/pam_radius_auth.conf</pre>
<p>and add the following lines into it. Your_IP and PORT are the IP address and Port of Radius sever. SecretKey is the Secret of radius server. 3 is the timeout in seconds.</p>
<pre class="brush: plain; title: ; notranslate"># server[:port] shared_secret      timeout (s)
YOUR_IP:PORT SecretKey 3</pre>
<p>Change the permissions :</p>
<pre class="brush: bash; title: ; notranslate">chown root /etc/pam_radius_auth.conf
chmod +r /etc/pam_radius_auth.conf</pre>
<p>create /etc/pam.d/squid :</p>
<pre class="brush: bash; title: ; notranslate">nano /etc/pam.d/squid</pre>
<p>and add the following lines :</p>
<pre class="brush: plain; title: ; notranslate">auth sufficient pam_radius_auth.so
account sufficient pam_radius_auth.so</pre>
<p>Now install Squid if you have not installed it yet :</p>
<pre class="brush: bash; title: ; notranslate">apt-get install squid</pre>
<p>Lets try and see if Squid PAM works successfully through Radius auth, run the following command and enter username and password with a space between them :</p>
<pre class="brush: bash; title: ; notranslate">/usr/lib/squid/pam_auth
username password
OK</pre>
<p>OK means radius server has accepted the authentication details. ERR means there is a problem.<br />
Now configure Squid to use pam_ath, open /etc/squid/squid.conf :</p>
<pre class="brush: bash; title: ; notranslate">nano /etc/squid/squid.conf</pre>
<p>Add the following lines to the begging of the file :</p>
<pre class="brush: plain; title: ; notranslate">auth_param basic program /usr/lib/squid/pam_auth
auth_param basic children 5
auth_param basic realm REALM
auth_param basic credentialsttl 2 hours</pre>
<p>Add following line in acl section :</p>
<pre class="brush: plain; title: ; notranslate">acl password proxy_auth REQUIRED</pre>
<p>Add following line before http_access deny all :</p>
<pre class="brush: plain; title: ; notranslate">http_access allow password</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.adminsehow.com/2012/07/how-to-auth-squid-by-radius-through-pam-in-debian/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to create a mirror of a site using wget</title>
		<link>http://www.adminsehow.com/2012/04/how-to-create-a-mirror-of-a-site-using-wget/</link>
		<comments>http://www.adminsehow.com/2012/04/how-to-create-a-mirror-of-a-site-using-wget/#comments</comments>
		<pubDate>Tue, 17 Apr 2012 07:33:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[mirror]]></category>
		<category><![CDATA[offline]]></category>
		<category><![CDATA[site]]></category>
		<category><![CDATA[wget]]></category>

		<guid isPermaLink="false">http://www.adminsehow.com/?p=636</guid>
		<description><![CDATA[First you need to make sure you have the latest version of wget, some distros are still being released with older versions of wget which has some bugs regarding mirroring functionality. currently the latest version is 1.13.4, so if you don&#8217;t have the latest version, you can download and build it from following link : [...]]]></description>
				<content:encoded><![CDATA[<p>First you need to make sure you have the latest version of wget, some distros are still being released with older versions of wget which has some bugs regarding mirroring functionality. currently the latest version is 1.13.4, so if you don&#8217;t have the latest version, you can download and build it from following link :</p>
<pre class="brush: plain; title: ; notranslate">ftp://ftp.gnu.org/gnu/wget/</pre>
<p>after building the wget, make sure the latest version is being used :</p>
<pre class="brush: bash; title: ; notranslate">wget -V</pre>
<p>output :</p>
<pre class="brush: plain; title: ; notranslate">
GNU Wget 1.13.4 built on linux-gnu.

+digest +https +ipv6 -iri +large-file +nls -ntlm +opie +ssl/gnutls 

Wgetrc: 
    /usr/local/etc/wgetrc (system)
Locale: /usr/local/share/locale 
Compile: gcc -DHAVE_CONFIG_H -DSYSTEM_WGETRC=&quot;/usr/local/etc/wgetrc&quot; 
    -DLOCALEDIR=&quot;/usr/local/share/locale&quot; -I. -I../lib -I../lib -O2 
    -Wall 
Link: gcc -O2 -Wall -lgnutls -lgcrypt -lgpg-error -lz -lrt ftp-opie.o 
    gnutls.o ../lib/libgnu.a 

Copyright (C) 2009 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later
&lt;http://www.gnu.org/licenses/gpl.html&gt;.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Originally written by Hrvoje Niksic &lt;hniksic@xemacs.org&gt;.
Please send bug reports and questions to &lt;bug-wget@gnu.org&gt;.
</pre>
<p>OK, you are good to go now, just execute the following command and relax <img src='http://www.adminsehow.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<pre class="brush: bash; title: ; notranslate">wget -mkp -e robots=off http://site</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.adminsehow.com/2012/04/how-to-create-a-mirror-of-a-site-using-wget/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My favorite smartphone wallpapers</title>
		<link>http://www.adminsehow.com/2012/04/my-favorite-smartphone-wallpapers/</link>
		<comments>http://www.adminsehow.com/2012/04/my-favorite-smartphone-wallpapers/#comments</comments>
		<pubDate>Wed, 11 Apr 2012 18:36:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[galaxy]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[phone]]></category>
		<category><![CDATA[SII]]></category>
		<category><![CDATA[smartphone]]></category>
		<category><![CDATA[wallpaper]]></category>

		<guid isPermaLink="false">http://www.adminsehow.com/?p=625</guid>
		<description><![CDATA[These are my favorite wallpapers on my SGSII, I hope you enjoy them You can download them here : SGSII-Wallpapers]]></description>
				<content:encoded><![CDATA[<p>These are my favorite wallpapers on my SGSII, I hope you enjoy them <img src='http://www.adminsehow.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<table>
<tr>
<td><a href="http://www.adminsehow.com/wp-content/uploads/2012/04/wallpaper_escape.jpg"><img src="http://www.adminsehow.com/wp-content/uploads/2012/04/wallpaper_escape-150x150.jpg" alt="" title="Motorcycle Details" width="150" height="150" class="alignnone size-thumbnail wp-image-626" /></a></td>
<td><a href="http://www.adminsehow.com/wp-content/uploads/2012/04/wallpaper_kepler.jpg"><img src="http://www.adminsehow.com/wp-content/uploads/2012/04/wallpaper_kepler-150x150.jpg" alt="" title="wallpaper_kepler" width="150" height="150" class="alignnone size-thumbnail wp-image-628" /></a></td>
<td><a href="http://www.adminsehow.com/wp-content/uploads/2012/04/wallpaper_leaf.jpg"><img src="http://www.adminsehow.com/wp-content/uploads/2012/04/wallpaper_leaf-150x150.jpg" alt="" title="wallpaper_leaf" width="150" height="150" class="alignnone size-thumbnail wp-image-629" /></a></td>
<td><a href="http://www.adminsehow.com/wp-content/uploads/2012/04/wallpaper_noir.jpg"><img src="http://www.adminsehow.com/wp-content/uploads/2012/04/wallpaper_noir-150x150.jpg" alt="" title="wallpaper_noir" width="150" height="150" class="alignnone size-thumbnail wp-image-630" /></a></td>
</table>
</tr>
<p>You can download them here : <a href='http://www.adminsehow.com/wp-content/uploads/2012/04/SGSII-Wallpapers.zip'>SGSII-Wallpapers</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.adminsehow.com/2012/04/my-favorite-smartphone-wallpapers/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to make (remount) system partition writable in android</title>
		<link>http://www.adminsehow.com/2012/04/how-to-make-remount-system-partition-writable-in-android/</link>
		<comments>http://www.adminsehow.com/2012/04/how-to-make-remount-system-partition-writable-in-android/#comments</comments>
		<pubDate>Sat, 07 Apr 2012 07:51:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[mount]]></category>
		<category><![CDATA[rw]]></category>
		<category><![CDATA[system]]></category>
		<category><![CDATA[writable]]></category>
		<category><![CDATA[write]]></category>

		<guid isPermaLink="false">http://www.adminsehow.com/?p=621</guid>
		<description><![CDATA[Very useful command which should work on all versions of android :]]></description>
				<content:encoded><![CDATA[<p>Very useful command which should work on all versions of android :</p>
<pre class="brush: bash; title: ; notranslate">grep &quot; /system &quot; /proc/mounts | awk '{system(&quot;mount -o rw,remount -t &quot;$3&quot; &quot;$1&quot; &quot;$2)}'</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.adminsehow.com/2012/04/how-to-make-remount-system-partition-writable-in-android/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simple Timer Utility</title>
		<link>http://www.adminsehow.com/2012/03/simple-timer-utility/</link>
		<comments>http://www.adminsehow.com/2012/03/simple-timer-utility/#comments</comments>
		<pubDate>Mon, 19 Mar 2012 18:15:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[countdown]]></category>
		<category><![CDATA[simple]]></category>
		<category><![CDATA[timer]]></category>
		<category><![CDATA[tool]]></category>
		<category><![CDATA[utility]]></category>

		<guid isPermaLink="false">http://www.adminsehow.com/?p=616</guid>
		<description><![CDATA[This is another utility which I wrote for myself use, it is a simple countdown timer which beeps when it reaches zero. You can download it here : Timer]]></description>
				<content:encoded><![CDATA[<p>This is another utility which I wrote for myself use, it is a simple countdown timer which beeps when it reaches zero.<br />
You can download it here : <a href='http://www.adminsehow.com/wp-content/uploads/2012/03/Timer.exe'>Timer</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.adminsehow.com/2012/03/simple-timer-utility/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
