<?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/"
	xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>aremacyber.co.nr</title>
	<atom:link href="http://aremacyber.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://aremacyber.wordpress.com</link>
	<description>Exploring The Cyber World</description>
	<lastBuildDate>Wed, 09 Apr 2008 03:06:24 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='aremacyber.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/2098514716e60187f65285b8a2481acf?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>aremacyber.co.nr</title>
		<link>http://aremacyber.wordpress.com</link>
	</image>
			<item>
		<title>Linux: Setup a transparent proxy with Squid in three easy steps</title>
		<link>http://aremacyber.wordpress.com/2008/04/09/linux-setup-a-transparent-proxy-with-squid-in-three-easy-steps/</link>
		<comments>http://aremacyber.wordpress.com/2008/04/09/linux-setup-a-transparent-proxy-with-squid-in-three-easy-steps/#comments</comments>
		<pubDate>Wed, 09 Apr 2008 03:06:24 +0000</pubDate>
		<dc:creator>aremacyber</dc:creator>
				<category><![CDATA[Tak Berkategori]]></category>

		<guid isPermaLink="false">http://aremacyber.wordpress.com/?p=13</guid>
		<description><![CDATA[Y&#8217;day I got a chance to play with Squid and iptables. My job was simple : Setup Squid proxy as a transparent server.
Main benefit of setting transparent proxy is you do not have to setup up individual browsers to work with proxies.
My Setup:
i) System: HP dual Xeon CPU system with 8 GB RAM (good for [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aremacyber.wordpress.com&blog=3423363&post=13&subd=aremacyber&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Y&#8217;day I got a chance to play with Squid and iptables. My job was simple : Setup Squid proxy as a transparent server.</p>
<p>Main benefit of setting transparent proxy is you do not have to setup up individual browsers to work with proxies.</p>
<h3>My Setup:</h3>
<p>i) System: HP dual Xeon CPU system with 8 GB RAM (good for squid).<br />
ii) Eth0: IP:192.168.1.1<br />
iii) Eth1: IP: 192.168.2.1 (192.168.2.0/24 network (around 150 windows XP systems))<br />
iv) OS: Red Hat Enterprise Linux 4.0 (Following instruction should work with Debian and all other Linux distros)</p>
<p>Eth0 connected to internet and eth1 connected to local lan i.e. system act as router.</p>
<h3>Server Configuration</h3>
<ul>
<li>Step #1 : Squid configuration so that it will act as a transparent proxy</li>
<li>Step #2 : Iptables configuration
<ul>
<li>a)	Configure system as router</li>
<li>b)	Forward all http requests to 3128 (DNAT)</li>
</ul>
</li>
<li>Step #3: Run scripts and start squid service</li>
</ul>
<p>First, Squid server installed (use up2date squid) and configured by adding following directives to file:<br />
<code># vi /etc/squid/squid.conf</code></p>
<p>Modify or add following squid directives:<br />
<code>httpd_accel_host <span style="color:#ff0000;">virtual</span><br />
httpd_accel_port <span style="color:#ff0000;">80</span><br />
httpd_accel_with_proxy <span style="color:#ff0000;">on</span><br />
httpd_accel_uses_host_header <span style="color:#ff0000;">on</span><br />
acl lan src <span style="color:#ff0000;">192.168.1.1 192.168.2.0/24</span><br />
http_access allow <span style="color:#ff0000;">localhost</span><br />
http_access allow <span style="color:#ff0000;">lan</span></code></p>
<p>Where,</p>
<ul>
<li>httpd_accel_host <span style="color:#ff0000;">virtual</span>: Squid as an httpd accelerator</li>
<li>httpd_accel_port <span style="color:#ff0000;">80</span>: 80 is port you want to act as a proxy</li>
<li>httpd_accel_with_proxy <span style="color:#ff0000;">on</span>: Squid act as both a local httpd accelerator and as a proxy.</li>
<li>httpd_accel_uses_host_header <span style="color:#ff0000;">on</span>: Header is turned on which is the hostname from the URL.</li>
<li>acl lan src <span style="color:#ff0000;">192.168.1.1 192.168.2.0/24</span>: Access control list, only allow LAN computers to use squid</li>
<li>http_access allow <span style="color:#ff0000;">localhost</span>: Squid access to LAN and localhost ACL only</li>
<li>http_access allow <span style="color:#ff0000;">lan</span>: &#8212; same as above &#8211;</li>
</ul>
<p>Here is the complete listing of squid.conf for your reference (grep will remove all comments and sed will remove all empty lines, thanks to David Klein for quick hint ):<br />
<code># grep -v "^#" /etc/squid/squid.conf | sed -e '/^$/d'</code></p>
<p>OR, try out sed (thanks to <a href="http://www.cyberciti.biz/tips/linux-setup-transparent-proxy-squid-howto.html#comment-144">kotnik</a> for small sed trick)<br />
<code># cat /etc/squid/squid.conf | sed '/ *#/d; /^ *$/d'</code></p>
<p>Output:<br />
<code>hierarchy_stoplist cgi-bin ?<br />
acl QUERY urlpath_regex cgi-bin \?<br />
no_cache deny QUERY<br />
hosts_file /etc/hosts<br />
refresh_pattern ^ftp:           1440    20%     10080<br />
refresh_pattern ^gopher:        1440    0%      1440<br />
refresh_pattern .               0       20%     4320<br />
acl all src 0.0.0.0/0.0.0.0<br />
acl manager proto cache_object<br />
acl localhost src 127.0.0.1/255.255.255.255<br />
acl to_localhost dst 127.0.0.0/8<br />
acl purge method PURGE<br />
acl CONNECT method CONNECT<br />
cache_mem 1024 MB<br />
http_access allow manager localhost<br />
http_access deny manager<br />
http_access allow purge localhost<br />
http_access deny purge<br />
http_access deny !Safe_ports<br />
http_access deny CONNECT !SSL_ports<br />
acl lan src 192.168.1.1  192.168.2.0/24<br />
http_access allow localhost<br />
http_access allow lan<br />
http_access deny all<br />
http_reply_access allow all<br />
icp_access allow all<br />
visible_hostname myclient.hostname.com<br />
httpd_accel_host virtual<br />
httpd_accel_port 80<br />
httpd_accel_with_proxy on<br />
httpd_accel_uses_host_header on<br />
coredump_dir /var/spool/squid</code></p>
<h3>Iptables configuration</h3>
<p>Next, I had added following rules to forward all http requests (coming to port 80) to the Squid server port 3128 :<br />
<code>iptables -t nat -A PREROUTING -i  <span style="color:#ff0000;">eth1</span> -p tcp --dport <span style="color:#ff0000;">80</span> -j DNAT --to 192.168.1.1:3128<br />
iptables -t nat -A PREROUTING -i  <span style="color:#ff0000;">eth0</span> -p tcp --dport  <span style="color:#ff0000;">80 -j REDIRECT --to-port 3128</span></code></p>
<p>Here is complete shell script. Script first configure Linux system as router and forwards all http request to port 3128 (Download the <a href="http://www.cyberciti.biz/tips/wp-content/uploads/2006/06/fw.proxy.txt">fw.proxy</a> shell script):<br />
<code><em><span style="color:#9a1900;">#!/bin/sh</span></em><br />
<em><span style="color:#9a1900;"># squid server IP</span></em><br />
SQUID_SERVER<span style="color:#990000;">=</span><span style="color:#ff0000;">"192.168.1.1"</span><br />
<em><span style="color:#9a1900;"># Interface connected to Internet</span></em><br />
INTERNET<span style="color:#990000;">=</span><span style="color:#ff0000;">"eth0"</span><br />
<em><span style="color:#9a1900;"># Interface connected to LAN</span></em><br />
LAN_IN<span style="color:#990000;">=</span><span style="color:#ff0000;">"eth1"</span><br />
<em><span style="color:#9a1900;"># Squid port</span></em><br />
SQUID_PORT<span style="color:#990000;">=</span><span style="color:#ff0000;">"3128"</span><br />
<em><span style="color:#9a1900;"># DO NOT MODIFY BELOW</span></em><br />
<em><span style="color:#9a1900;"># Clean old firewall</span></em><br />
iptables <span style="color:#990000;">-</span>F<br />
iptables <span style="color:#990000;">-</span>X<br />
iptables <span style="color:#990000;">-</span>t nat <span style="color:#990000;">-</span>F<br />
iptables <span style="color:#990000;">-</span>t nat <span style="color:#990000;">-</span>X<br />
iptables <span style="color:#990000;">-</span>t mangle <span style="color:#990000;">-</span>F<br />
iptables <span style="color:#990000;">-</span>t mangle <span style="color:#990000;">-</span>X<br />
<em><span style="color:#9a1900;"># Load IPTABLES modules for NAT and IP conntrack support</span></em><br />
modprobe ip_conntrack<br />
modprobe ip_conntrack_ftp<br />
<em><span style="color:#9a1900;"># For win xp ftp client</span></em><br />
<em><span style="color:#9a1900;">#modprobe ip_nat_ftp</span></em><br />
echo <span style="color:#993399;">1</span> <span style="color:#990000;">&gt;</span> /proc/sys/net/ipv4/<strong><span style="color:#0000ff;">ip_forward</span></strong><br />
<em><span style="color:#9a1900;"># Setting default filter policy</span></em><br />
iptables <span style="color:#990000;">-</span>P INPUT DROP<br />
iptables <span style="color:#990000;">-</span>P OUTPUT ACCEPT<br />
<em><span style="color:#9a1900;"># Unlimited access to loop back</span></em><br />
iptables <span style="color:#990000;">-</span>A INPUT <span style="color:#990000;">-</span>i lo <span style="color:#990000;">-</span>j ACCEPT<br />
iptables <span style="color:#990000;">-</span>A OUTPUT <span style="color:#990000;">-</span>o lo <span style="color:#990000;">-</span>j ACCEPT<br />
<em><span style="color:#9a1900;"># Allow UDP, DNS and Passive FTP</span></em><br />
iptables <span style="color:#990000;">-</span>A INPUT <span style="color:#990000;">-</span>i <span style="color:#009900;">$INTERNET</span> <span style="color:#990000;">-</span><strong><span style="color:#0000ff;">m</span></strong> state <span style="color:#990000;">-</span><span style="color:#990000;">-</span>state ESTABLISHED<span style="color:#990000;">,</span>RELATED <span style="color:#990000;">-</span>j ACCEPT<br />
<em><span style="color:#9a1900;"># set this system as a router for Rest of LAN</span></em><br />
iptables <span style="color:#990000;">-</span><span style="color:#990000;">-</span>table nat <span style="color:#990000;">-</span><span style="color:#990000;">-</span>append POSTROUTING <span style="color:#990000;">-</span><span style="color:#990000;">-</span>out<span style="color:#990000;">-</span>interface <span style="color:#009900;">$INTERNET</span> <span style="color:#990000;">-</span>j MASQUERADE<br />
iptables <span style="color:#990000;">-</span><span style="color:#990000;">-</span>append FORWARD <span style="color:#990000;">-</span><span style="color:#990000;">-</span>in<span style="color:#990000;">-</span>interface <span style="color:#009900;">$LAN_IN</span> <span style="color:#990000;">-</span>j ACCEPT<br />
<em><span style="color:#9a1900;"># unlimited access to LAN</span></em><br />
iptables <span style="color:#990000;">-</span>A INPUT <span style="color:#990000;">-</span>i <span style="color:#009900;">$LAN_IN</span> <span style="color:#990000;">-</span>j ACCEPT<br />
iptables <span style="color:#990000;">-</span>A OUTPUT <span style="color:#990000;">-</span>o <span style="color:#009900;">$LAN_IN</span> <span style="color:#990000;">-</span>j ACCEPT<br />
<em><span style="color:#9a1900;"># DNAT port 80 request comming from LAN systems to squid 3128 ($SQUID_PORT) aka transparent proxy</span></em><br />
iptables <span style="color:#990000;">-</span>t nat <span style="color:#990000;">-</span>A PREROUTING <span style="color:#990000;">-</span>i <span style="color:#009900;">$LAN_IN</span> <span style="color:#990000;">-</span>p tcp <span style="color:#990000;">-</span><span style="color:#990000;">-</span>dport <span style="color:#993399;">80</span> <span style="color:#990000;">-</span>j DNAT <span style="color:#990000;">-</span><span style="color:#990000;">-</span>to <span style="color:#009900;">$SQUID_SERVER</span><span style="color:#990000;">:</span><span style="color:#009900;">$SQUID_PORT</span><br />
<em><span style="color:#9a1900;"># if it is same system</span></em><br />
iptables <span style="color:#990000;">-</span>t nat <span style="color:#990000;">-</span>A PREROUTING <span style="color:#990000;">-</span>i <span style="color:#009900;">$INTERNET</span> <span style="color:#990000;">-</span>p tcp <span style="color:#990000;">-</span><span style="color:#990000;">-</span>dport <span style="color:#993399;">80</span> <span style="color:#990000;">-</span>j REDIRECT <span style="color:#990000;">-</span><span style="color:#990000;">-</span>to<span style="color:#990000;">-</span>port <span style="color:#009900;">$SQUID_PORT</span><br />
<em><span style="color:#9a1900;"># DROP everything and Log it</span></em><br />
iptables <span style="color:#990000;">-</span>A INPUT <span style="color:#990000;">-</span>j LOG<br />
iptables <span style="color:#990000;">-</span>A INPUT <span style="color:#990000;">-</span>j DROP</code></p>
<p>Save shell script. Execute script so that system will act as a router and forward the ports:<br />
<code># chmod +x /etc/fw.proxy<br />
# /etc/fw.proxy<br />
# service iptables save<br />
# chkconfig iptables on</code></p>
<p>Start or Restart the squid:<br />
<code># /etc/init.d/squid restart<br />
# chkconfig squid on</code></p>
<h3>Desktop / Client computer configuration</h3>
<p>Point all desktop clients to your eth1 IP address (192.168.2.1) as Router/Gateway (use DHCP to distribute this information). You do not have to setup up individual browsers to work with proxies.</p>
<h3>How do I test my squid proxy is working correctly?</h3>
<p>See access log file /var/log/squid/access.log:<br />
<code># tail -f /var/log/squid/access.log</code></p>
<p>Above command will monitor all incoming request and log them to /var/log/squid/access_log file. Now if somebody accessing a website through browser, squid will log information.</p>
<h3>Problems and solutions</h3>
<h4>(a) Windows XP FTP Client</h4>
<p>All Desktop client FTP session request ended with an error:<br />
Illegal PORT command.</p>
<p>I had loaded the ip_nat_ftp kernel module. Just type the following command press Enter and voila!<br />
<code># modprobe ip_nat_ftp</code></p>
<p>Please note that modprobe command is already added to a shell script (above).</p>
<h4>(b) Port 443 redirection</h4>
<p>I had block out all connection request from our router settings except for our proxy (192.168.1.1) server. So all ports including 443 (https/ssl) request denied. You cannot redirect port 443, from <a href="http://lists.debian.org/debian-user/2004/05/msg01434.html">debian mailing list</a>, &#8220;<em>Long answer: SSL is specifically designed to prevent &#8220;man in the middle&#8221; attacks, and setting up squid in such a way would be the same as such a &#8220;man in the middle&#8221; attack. You might be able to successfully achive this, but not without breaking the encryption and certification that is the point behind SSL</em>&#8220;.</p>
<p>Therefore, I had quickly reopen port 443 (router firewall) for all my LAN computers and problem was solved.</p>
<h4>(c) Squid Proxy authentication in a transparent mode</h4>
<p>You cannot use Squid authentication with a transparently intercepting proxy.</p>
<h3>Further reading:</h3>
<ul>
<li><a href="http://www.cyberciti.biz/nixcraft/vivek/blogger/2005/10/how-do-i-use-iptables-connection.html">How do I use Iptables connection tracking feature? </a></li>
<li><a href="http://www.cyberciti.biz/nixcraft/vivek/blogger/2005/10/how-do-i-build-simple-linux-firewall.html">How do I build a Simple Linux Firewall for DSL/Dial-up connection? </a></li>
<li><strong>Update:</strong> <a href="http://www.cyberciti.biz/nixcraft/forum/viewtopic.php?t=457">Forum topic discussion: Setting up a transparent proxy with Squid peering to ISP squid server</a></li>
<li><a href="http://squid-docs.sourceforge.net/latest/html/book1.html">Squid, a user&#8217;s guide</a></li>
<li><a href="http://www.squid-cache.org/Doc/FAQ/">Squid FAQ</a></li>
<li><a href="http://tldp.org/HOWTO/TransparentProxy.html">Transparent Proxy with Linux and Squid mini-HOWTO</a></li>
</ul>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/aremacyber.wordpress.com/13/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/aremacyber.wordpress.com/13/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/aremacyber.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/aremacyber.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/aremacyber.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/aremacyber.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/aremacyber.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/aremacyber.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/aremacyber.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/aremacyber.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/aremacyber.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/aremacyber.wordpress.com/13/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aremacyber.wordpress.com&blog=3423363&post=13&subd=aremacyber&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://aremacyber.wordpress.com/2008/04/09/linux-setup-a-transparent-proxy-with-squid-in-three-easy-steps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a4a496b894d841765488a0507b7421bd?s=96&#38;d=identicon" medium="image">
			<media:title type="html">aremacyber</media:title>
		</media:content>
	</item>
		<item>
		<title>Setting up a Squid-Proxy Server</title>
		<link>http://aremacyber.wordpress.com/2008/04/09/setting-up-a-squid-proxy-server/</link>
		<comments>http://aremacyber.wordpress.com/2008/04/09/setting-up-a-squid-proxy-server/#comments</comments>
		<pubDate>Wed, 09 Apr 2008 03:02:21 +0000</pubDate>
		<dc:creator>aremacyber</dc:creator>
				<category><![CDATA[Tak Berkategori]]></category>

		<guid isPermaLink="false">http://aremacyber.wordpress.com/?p=12</guid>
		<description><![CDATA[Is Squid Installed ?
Squid&#8217;s rpm comes bundled with the RedHat 7.1 and is installed     automatically with the Network OS installation option. One can     check whether it is installed or not with the following rpm command:
rpm -q squid
The latest version of Squid can always be obtained from the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aremacyber.wordpress.com&blog=3423363&post=12&subd=aremacyber&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><h2>Is Squid Installed ?</h2>
<p>Squid&#8217;s rpm comes bundled with the RedHat 7.1 and is installed     automatically with the Network OS installation option. One can     check whether it is installed or not with the following rpm command:</p>
<pre>rpm -q squid</pre>
<p>The latest version of Squid can always be obtained from the <a href="http://www.squid-cache.org/">Squid Homepage</a> and other <a href="http://www.squid-cache.org/mirrors.html">mirror sites</a>.     Squid can be installed on the desired system by using the following     rpm command:</p>
<pre>rpm -ivh squid-2.3.STABLE4-10.i386.rpm</pre>
<p><a name="235lfindex1"> </a></p>
<h2>Configuring Squid</h2>
<p>The working and behavior of the Squid is controlled by the     configuration details given in it&#8217;s configuration file i.e.     squid.conf; this file is usually found in directory the /etc/squid.     The configuration file squid.conf is a mile long affair, it just     keeps on going for pages after pages, but the good point is     that it has all options listed out clearly with explanation.</p>
<p>The first thing that has to be edited is the http_port, which     specifies the socket address where the Squid will listen to the     client&#8217;s request; by default this is set to 3128, but can be     changed to a user defined value also. Along with the port     value, one can also give the IP address of the machine on which     Squid is running ; this can be changed to:</p>
<p class="code">http_port 192.168.0.1:8080</p>
<p>With above declaration Squid is bounded to the IP address of     192.168.0.1 and port address of 8080. Any port address can be     given; but make sure that no other application is running at     set port value. With similar configuration lines other service&#8217;s request ports     can also be set.      <a name="235lfindex2"> </a></p>
<h2>Access Control</h2>
<p>Through access control features the access to Internet can be     controlled in terms of access during particular time interval,     caching, access to particular or group of sites, etc.. Squid     access control has two different components i.e. ACL elements     and access list. An access list infact allows or deny the access     to the service.</p>
<p>A few important type of ACL elements are listed below</p>
<ul>
<li>src : Source i.e. client&#8217;s IP addresses</li>
<li>dst : Destination i.e. server&#8217;s IP addresses</li>
<li>srcdomain : Source i.e. client&#8217;s domain name</li>
<li>dstdomain : Destination i.e. server&#8217;s domain name</li>
<li>time : Time of day and day of week</li>
<li>url_regex : URL regular expression pattern matching</li>
<li>urlpath_regex: URL-path regular expression pattern       matching, leaves out the protocol and hostname</li>
<li>proxy_auth : User authentication through external       processes</li>
<li>maxconn : Maximum number of connections limit from a       single client IP address</li>
</ul>
<p>To apply the controls, one has to first define set of ACL and     then apply rules on them. The format of an ACL statement is</p>
<p class="code">acl   acl_element_name   type_of_acl_element     values_to_acl</p>
<p>Note :</p>
<ol>
<li>acl_element_name can be any user defined name given to an       ACL element.</li>
<li>No two ACL elements can have the same name.</li>
<li>Each ACL consists of list of values. When checking for a       match, the multiple values use OR logic. In other words, an       ACL element is matched when any one of its values       matches.</li>
<li>Not all of the ACL elements can be used with all types of       access lists.</li>
<li>Different ACL elements are given on different lines and       Squid combines them together into one list.</li>
</ol>
<p>A number of different access lists are available. The ones which we     are going to use here are listed below</p>
<ul>
<li><strong>http_access:</strong> Allows HTTP clients to access the       HTTP port. This is the primary access control list.</li>
<li><strong>no_cache:</strong> Defines the caching of request&#8217;s       responses</li>
</ul>
<p>An access list rule consists of keywords like allow or deny     ; which allows or denies the service to a particular ACL     element or to a group of them.<br />
Note:</p>
<ol>
<li>The rules are checked in the order in which they are written       and it terminates as soon as rule is matched.</li>
<li>An access list can consists of multiple rules.</li>
<li>If none of the rules is matched, then the default action is       opposite to the last rule in the list; thus it is good to be       explicit with the default action.</li>
<li>All elements of an access entry are AND&#8217;ed together and       executed in following manner<br />
http_access Action statement1 AND statement2 AND statement       OR.<br />
http_access Action statement3<br />
Multiple http_access statements are OR&#8217;ed whereas elements of       an access entry are AND&#8217;ed together</li>
<li>Do remember that rules are always read from top to       bottom.</li>
</ol>
<p><a name="235lfindex3"> </a></p>
<h2>Back to Configuration</h2>
<p>By default, Squid will not give any access to clients and     access controls have to modified for this purpose. One has to     list out one&#8217;s own rules to allow the access. Scroll down in     the squid.conf and enter the following lines just above the     http_access deny all line</p>
<p class="code">acl mynetwork 192.168.0.1/255.255.255.0<br />
http_access allow mynetwork</p>
<p>mynetwork is the acl name and the next line is the rule applicable to a     particular acl i.e. mynetwork. 192.168.0.1 refers to the     address of the network whose netmask is 255.255.255.0..     mynetwork basically gives a name to group of machines in the     network and the following rule allows the access to clients. The     above changes along with http_port is good enough to put Squid     into gear. After the changes Squid can be started by the following     command</p>
<p class="code">service squid start</p>
<p>Note :<br />
Squid can also be started automatically at boot time by     enabling it in ntsysv or setup (System Service Menu). After     each and every change in the configuration file, the present Squid     process has to be stopped and for new configuration changes to     take effect, Squid has to be started once again. These two     steps can be achieved by following commands</p>
<ol>
<li>service squid restart or</li>
<li>/etc/rc.d/init.d/squid restart</li>
</ol>
<p><a name="235lfindex4"> </a></p>
<h2>Client Machine Configuration</h2>
<p>Since the client request will be placed at a particular port of     the proxy server, client machine&#8217;s have to be configured for     the same purpose. It is taken at this point that these machines     are already connected to LAN ( with valid IP address) and are     able to ping the Linux sever.<br />
For Internet Explorer</p>
<ol>
<li>Go to Tools -&gt; Internet Options</li>
<li>Select Connection Tab and click LAN Setting</li>
<li>Check Proxy Server box and enter IP address of proxy       server and port address where request are being handled       (http_port address).</li>
</ol>
<p>For Netscape Navigator</p>
<ol>
<li>Go to Edit -&gt; Preference -&gt; Advanced -&gt;       Proxies.</li>
<li>Select Manual Proxy Configuration radio button.</li>
<li>Click on View Button &amp;</li>
<li>Enter enter IP address of proxy server and port address       where request are being handled (http_port address).</li>
</ol>
<p><a name="235lfindex5"> </a></p>
<h2>Using Access Control</h2>
<p>Multiple Access controls and rules offer a very good and     flexible way of controlling client&#8217;s access to Internet.     Examples of most commonly used control are given below; this by     no means should be taken as the only controls available.</p>
<ol>
<li> Allowing selected machines to have access to the Internet
<p class="code">acl allowed_clients src 192.168.0.10         192.168.0.20 192.168.0.30<br />
http_access allow allowed_clients<br />
http_access deny !allowed_clients</p>
<p>This allows only machine whose IPs are 192.168.0.10,         192.168.0.20 and 192.168.0.30 to have access to Internet         and the rest of IP addresses (not listed ) are denied the service.</li>
<li> Restrict the access during particular duration only
<p class="code">acl allowed_clients src         192.168.0.1/255.255.255.0<br />
acl regular_days time MTWHF 10:00-16:00<br />
http_access allow allowed_clients regular_days<br />
http_access deny allowed_clients</p>
<p>This allows the access to all the clients in network         192.168.0.1 to access the  net from Monday to Friday from         10:00am to 4:00 pm.</li>
<li> Multipletime access to different clients
<p class="code">acl hosts1 src192.168.0.10<br />
acl hosts2 src 192.168.0.20<br />
acl hosts3 src 192.168.0.30<br />
acl morning time 10:00-13:00<br />
acl lunch time 13:30-14:30<br />
acl evening time 15:00-18:00<br />
http_access allow host1 morning<br />
http_access allow host1 evening<br />
http_access allow host2 lunch<br />
http_access allow host3 evening<br />
http_access deny all</p>
<p>The above rule will allow host1 access during both morning         as well as evening hours; where as host2 and host3 will be         allowed access only during lunch and evening hours         respectively.</p>
<p>Note:<br />
All elements of an access entry are AND&#8217;ed together and         executed in following manner</p>
<p class="code">http_access Action statement1 AND staement2         AND statement OR.</p>
<p>multiple http_access statements are OR&#8217;ed whereas elements         of an access entries are AND&#8217;ed together; due to this reason         the</p>
<p class="code">http_access allow host1 morning evening</p>
<p>would have never worked as time morning and evening         (morning AND evening ) would never ever be TRUE and hence         no action would have taken place.</li>
<li> Blocking sites<br />
Squid can prevent the access to a particular site or to         sites which contain a particular word. This can be         implemented in the following way</p>
<p class="code">acl allowed_clients src         192.168.0.1/255.255.255.0<br />
acl banned_sites url_regex abc.com *()(*.com<br />
http_access deny banned_sites<br />
http_access allow allowed_clients</p>
<p>The same can also be used to prevent access to sites containing         a particular word i.e. dummy , fake</p>
<p class="code">acl allowed_clients src         192.168.0.1/255.255.255.0<br />
acl banned_sites url_regex dummy fake<br />
http_access deny banned_sites<br />
http_access allow allowed_machines</p>
<p>It is not practical to list all the words list or sites         names to whom the access is to be prevented; these can be         listed out in the file (say banned.list in /etc directory)         and ACL can pick up this information from this file and         prevent the access to the banned sites.</p>
<p class="code">acl allowed_clients src         192.168.0.1/255.255.255.0<br />
acl banned_sites url_regex &#8220;/etc/banned.list&#8221;<br />
http_access deny banned_sites<br />
http_access allow allowed_clients</p>
</li>
<li> To optimize the use<br />
Squid can limit number the of connections         from the client machine and this is possible through        the  maxconn element. To use this option, client_db feature         should be enabled first.</p>
<p class="code">acl mynetwork 192.168.0.1/255.255.255.0<br />
acl numconn maxconn 5<br />
http_access deny mynetwork numconn</p>
<p>Note:<br />
maxconn ACL uses less-than comparison. This ACL is         matched when the number of connections is greater than the         specified value. This is the main reason for which this ACL is         not used with  the http_access allow rule.</li>
<li> Caching the data<br />
Response of the request are cached immediately, this is         quite good for static pages. There is no need to cache         cgi-bin or Servlet and this can be prevented by using the no_cache ACL         element.</p>
<p class="code">acl cache_prevent1 url_regex cgi-bin /?<br />
acl cache_prevent2 url_regex Servlet<br />
no_cache deny cache_prevent1<br />
no_cache deny cache_prevent2</p>
</li>
<li> Creating Your Own Error Messages<br />
It is possible to create your own error message with a deny         rule and this is possible with the deny_info option. All the         Squid error messages by default are placed in         the /etc/squid/errors directory. The error directory can be         configured with the  error_directory option. You can even         customize the existing error messages.</p>
<p class="code">acl allowed_clients src 192.168.0.1/255.255.255.0<br />
acl banned_sites url_regex abc.com *()(*.com<br />
http_access deny banned_sites<br />
deny_info ERR_BANNED_SITE banned_sites<br />
http_access allow allowed_clients</p>
<p>In the above example, a special message will be displayed         when ever users try to access the sites with above banned         words.The file name in the option i.e.ERR_BANNED_SITE must         exist in the above error directory. This error message file         should be in HTML format. The above listed out examples are         just a few of the options, facilities and capabilities of         ACL. One can read through the <a href="http://www.squid-cache.org/Doc/FAQ">FAQ section</a> at        the Squid Home Page for more extensive usage and explanation of         other ACL elements and access elements.</li>
</ol>
<p><a name="235lfindex6"> </a></p>
<h2>Log Files</h2>
<p>All log files of Squid are contained in directory     /var/log/squid; these contain cache log, access logs and     store.log. File access.log maintains the information about the     clients request, activity and maintains entry for each HTTP     &amp; ICP queries received by the proxy server, clients IP,     request method, requested URL, etc.. The data of this file can     be used to analyze the access information. Many programs like     <a href="http://web.onda.com.br/orso/%20index.html">sarg</a>, <a href="http://calamaris.cord.de/">calamaris</a>, <a href="http://squidlog.sourceforge.net/">Squid-Log-Analyzer</a> are     available which can analyze this data and generate reports (in     HTML format). The reports can be generated in terms of users,     IP numbers, site visited, etc..</p>
<p>The destination of these log files can also be changed by     following options</p>
<pre>cache_access_log      For access.log
cache_log             For cache.log
cache_store_log       For store.log (Store manager)
pid_filename          Squid process ID file name</pre>
<p><a name="235lfindex7"> </a></p>
<h2>Authentication Methods</h2>
<p>Squid in the default configuration allows any user to have access     without any authentication process. To authenticate the users     i.e. to allow only valid users (from any machine in the     network) to access the Internet, Squid provides for     authentication process but via an external program, for this a     valid username and password is required. This is achieved by     using proxy_auth ACL and authenticate_program; which forces a     user to verify the username and password before the access is     given. Several authentication programs are available which     Squid can use and these are</p>
<ol>
<li>LDAP : Uses Linux Lightweight Directory Access       Protocol</li>
<li>NCSA : Uses NCSA style username and password file</li>
<li>SMB : Uses SMB server like SAMBA or Windows NT</li>
<li>MSNT : Uses Windows NT authentication domain</li>
<li>PAM : Uses Linux Pluggable Authentication Modules</li>
<li>getpwam : Uses Linux password file.</li>
</ol>
<p>One needs to specify the authentication program being used and     this can be specified by using the authenticate_program option.     Make sure that the authentication program being used for the     purpose is installed and working.</p>
<p>The changes in the squid.conf file now should also reflect the     same authenticate_program /usr/local/bin/pam_auth</p>
<p class="code">acl pass proxy_auth REQUIRED<br />
acl mynetwork src 192.168.0.1/255.255.255.0<br />
http_access deny !mynetwork<br />
http_access allow pass<br />
http_access deny all</p>
<p>This uses the PAM authentication program and all users need to     authenticate before accessing the Internet.</p>
<p>Options like authenticate_ttl and authenticate_ip_ttl can also     be used to change the behavior of the authentication process     i.e. revalidation of username and password.      <a name="235lfindex8"> </a></p>
<h2>References</h2>
<p>This article just touches the tip of the Squid iceberg; for     further reference visit the following Web sites</p>
<ul>
<li><a href="http://www.squid-cache.org/">Squid Home,       www.squid-cache.org</a></li>
<li><a href="http://squid-docs.sourceforge.net/">Squid       Documentation Project, squid-docs.sourceforge.net</a></li>
<li><a href="http://www.visolve.com/">visolve.com</a></li>
<li><a href="http://home.iae.nl/users/devet/squid/proxy_auth/">For Proxy       Authentication,       home.iae.nl/users/devet/squid/proxy_auth</a></li>
</ul>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/aremacyber.wordpress.com/12/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/aremacyber.wordpress.com/12/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/aremacyber.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/aremacyber.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/aremacyber.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/aremacyber.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/aremacyber.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/aremacyber.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/aremacyber.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/aremacyber.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/aremacyber.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/aremacyber.wordpress.com/12/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aremacyber.wordpress.com&blog=3423363&post=12&subd=aremacyber&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://aremacyber.wordpress.com/2008/04/09/setting-up-a-squid-proxy-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a4a496b894d841765488a0507b7421bd?s=96&#38;d=identicon" medium="image">
			<media:title type="html">aremacyber</media:title>
		</media:content>
	</item>
		<item>
		<title>7 Ways to Speed up and Optimize Windows XP</title>
		<link>http://aremacyber.wordpress.com/2008/04/09/7-ways-to-speed-up-and-optimize-windows-xp/</link>
		<comments>http://aremacyber.wordpress.com/2008/04/09/7-ways-to-speed-up-and-optimize-windows-xp/#comments</comments>
		<pubDate>Wed, 09 Apr 2008 02:59:46 +0000</pubDate>
		<dc:creator>aremacyber</dc:creator>
				<category><![CDATA[Tak Berkategori]]></category>

		<guid isPermaLink="false">http://aremacyber.wordpress.com/?p=11</guid>
		<description><![CDATA[
Quick and easy
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;
After seeing how popular Blifaloo&#8217;s guide to virus removal and prevention           has become, I decided to write some more articles about taking care           of your computer.
The following is a list of easy tweaks [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aremacyber.wordpress.com&blog=3423363&post=11&subd=aremacyber&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><h1></h1>
<h3>Quick and easy<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</h3>
<p>After seeing how popular Blifaloo&#8217;s guide to virus removal and prevention           has become, I decided to write some more articles about taking care           of your computer.</p>
<p>The following is a list of easy tweaks you can do             to speed up the overall performance of your PC with Windows XP.</p>
<h2>1. Disable File Indexing</h2>
<p><img class="inline" src="http://www.blifaloo.com/info/winxp/indexing.gif" alt="file indexing" width="100" height="100" /><br />
<strong>Huh? </strong>This indexing service gets info from files on the hard drive           and creates a &#8220;searchable keyword         index.&#8221;</p>
<p>If you don&#8217;t use the XP search feature often to look for documents,           you can turn this feature off, and the  difference you&#8217;ll notice           is a slight increase in the time it takes for your computer to find           a file, but an overall increase in general speed for everything else.</p>
<p><strong>How to </strong>:    From My Computer &gt; right-click on the C: Drive &gt; select Properties.<br />
Uncheck &#8220;Allow Indexing Service to index this disk for fast file searching.&#8221;   Apply changes to &#8220;C: sub folders and files,&#8221; and click OK.</p>
<h2>2. Clean Up Prefetch, temp, and cache files</h2>
<p><img class="inline" src="http://www.blifaloo.com/info/winxp/cleanup.gif" alt="clean up hard drive" width="100" height="100" /><br />
<strong>Huh? </strong>Windows stores a lot of temporary files that         can be safely cleaned out once a month or so. This is also good to do             before running virus or spyware scans, as it clears many things out             of your system that would need to be scanned.</p>
<p><strong>How to </strong>: <a href="http://www.stevengould.org/software/cleanup/" target="_blank"><strong>Download             CleanUp!</strong></a><br />
How to use CleanUp! : Download, Install, and Run.</p>
<h2>3. Install some RAM</h2>
<p><img class="inline" src="http://www.blifaloo.com/info/winxp/ram.gif" alt="install ram" width="100" height="100" /><br />
<strong>Huh? </strong>If you are running 128mb or 256mb of Ram, it&#8217;s             pretty cheap and easy to upgrade to 512mb. This is the only suggestion             I will make that will actually cost money, but it&#8217;s also the one             that will best improve performance.</p>
<p><strong>How to </strong>: Not               sure how to install Ram, or even what kind you need or where to         get it from?</p>
<p><a href="http://www.blifaloo.com/info/winxp_speed.php#"><strong>Check out Blifaloo&#8217;s article on how to Add Ram to                 your PC. </strong></a></p>
<h2>4. Remove Programs &amp; files you no longer need or use</h2>
<p><img class="inline" src="http://www.blifaloo.com/info/winxp/remove.gif" alt="remove unused programs" width="100" height="100" /><br />
<strong>Huh? </strong>Having old games or other software you no longer             use can take up a lot of space on your hard drive, which can lead         to an overall decrease in your PC&#8217;s performance.</p>
<p><strong>How to </strong>: Removing               old programs is easy. From the Control Panel click on the &#8220;Add           or Remove Programs&#8221; Icon. You can safely remove programs like games,           demos, and other software you no longer use. If you are not sure what           a program is&#8230; don&#8217;t delete it just yet. You can do an internet search           to find out more about any mystery programs installed on your PC to           decide to delete them or not.</p>
<p><strong>Remember: </strong>Mp3 music files and videos you download           can take up a lot of space. Go through your media files once a month           or so and delete the ones you no longer use.</p>
<h2>5. Turn off Windows Animations and Visual Effects</h2>
<p><img class="inline" src="http://www.blifaloo.com/info/winxp/effects.gif" alt="remove animations and visual effects" width="100" height="100" /><br />
<strong>Huh? </strong>Fancy sliding, fading and animated effects             that windows uses by default are easily turned off, and will make             the reaction time of simple tasks like opening and moving windows,             taskbars, etc&#8230; much quicker.</p>
<p><strong>How to </strong>: From the Control Panel, click on the &#8220;System&#8221;           icon. Click on the Advanced tab. Click the &#8220;Settings&#8221; button           underneath           &#8220;Performance&#8221;. Uncheck the options related to animations,           and other unneeded visual effects.</p>
<p>Personally,             I only have 3 items checked in here: &#8220;smooth edges of screen fonts&#8221;,             &#8220;use common tasks in folders&#8221;, and &#8220;use visual styles on windows           and buttons&#8221;. You can uncheck all of them if you like. But, just getting             rid of all the animated features will help the responsiveness of           your PC.</p>
<h2>6. Remove unused Fonts</h2>
<p><img class="inline" src="http://www.blifaloo.com/info/winxp/remove_fonts.gif" alt="remove fonts" width="100" height="100" /><br />
<strong>Huh? </strong>Having too many fonts can realllllllly slow             down how fast programs start up. Some people say have no more than             500 fonts installed on WinXP, but I personally try to keep the number             of fonts below 200. The less you have the faster your programs that         use them (office software, graphic programs etc..) will load.</p>
<p><strong>How to </strong>: From the Control Panel, click on the &#8220;Fonts&#8221; icon.           You can delete the fonts you don&#8217;t use here.</p>
<p><strong>Remember: </strong>to keep the basics:             Verdana, Arial, Times, Trebuchet, Courier, serif, sans-serif, Georgia,           etc&#8230; Along with any fonts related to your business.</p>
<h2>7. Get a Virus, Spyware and Malware Clean System</h2>
<p><img class="inline" src="http://www.blifaloo.com/info/winxp/virus.gif" alt="remove viruses" width="100" height="100" /><br />
<strong>Huh? </strong>Chances are you have some sort of virus, spyware         or malware on your computer.</p>
<p><strong>How to </strong>: Get Adware and Spybot S&amp;D in addition to           a Firewall and Antivirus program. See <a href="http://www.blifaloo.com/info/virus_removal.php" target="_blank"><strong>our           guide to virus removal and protection</strong></a> for more ifno.</p>
<p><strong>Remember: </strong>Keep your anti-virus programs up-to-date.           And always research any software you plan on downloading to &#8220;help&#8221;           your PC. Some anti-virus / anti-spyware software actually have spyware.</p>
<p>Hope you found at least a few helpful pieces of information in this           article. Thanks for stopping by Blifaloo.com, and don&#8217;t forget to check           out some of the other stuff on the site.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/aremacyber.wordpress.com/11/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/aremacyber.wordpress.com/11/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/aremacyber.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/aremacyber.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/aremacyber.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/aremacyber.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/aremacyber.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/aremacyber.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/aremacyber.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/aremacyber.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/aremacyber.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/aremacyber.wordpress.com/11/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aremacyber.wordpress.com&blog=3423363&post=11&subd=aremacyber&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://aremacyber.wordpress.com/2008/04/09/7-ways-to-speed-up-and-optimize-windows-xp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a4a496b894d841765488a0507b7421bd?s=96&#38;d=identicon" medium="image">
			<media:title type="html">aremacyber</media:title>
		</media:content>

		<media:content url="http://www.blifaloo.com/info/winxp/indexing.gif" medium="image">
			<media:title type="html">file indexing</media:title>
		</media:content>

		<media:content url="http://www.blifaloo.com/info/winxp/cleanup.gif" medium="image">
			<media:title type="html">clean up hard drive</media:title>
		</media:content>

		<media:content url="http://www.blifaloo.com/info/winxp/ram.gif" medium="image">
			<media:title type="html">install ram</media:title>
		</media:content>

		<media:content url="http://www.blifaloo.com/info/winxp/remove.gif" medium="image">
			<media:title type="html">remove unused programs</media:title>
		</media:content>

		<media:content url="http://www.blifaloo.com/info/winxp/effects.gif" medium="image">
			<media:title type="html">remove animations and visual effects</media:title>
		</media:content>

		<media:content url="http://www.blifaloo.com/info/winxp/remove_fonts.gif" medium="image">
			<media:title type="html">remove fonts</media:title>
		</media:content>

		<media:content url="http://www.blifaloo.com/info/winxp/virus.gif" medium="image">
			<media:title type="html">remove viruses</media:title>
		</media:content>
	</item>
		<item>
		<title>Make Your Own registry</title>
		<link>http://aremacyber.wordpress.com/2008/04/09/make-your-own-registry/</link>
		<comments>http://aremacyber.wordpress.com/2008/04/09/make-your-own-registry/#comments</comments>
		<pubDate>Wed, 09 Apr 2008 02:57:28 +0000</pubDate>
		<dc:creator>aremacyber</dc:creator>
				<category><![CDATA[Tak Berkategori]]></category>

		<guid isPermaLink="false">http://aremacyber.wordpress.com/?p=10</guid>
		<description><![CDATA[What is a Registry File?
A registry file is really just a text file  			(.txt made with notepad). It becomes a registry file (.reg) when you  			change the extension from .txt to .reg. For example you have a text  			file called test.txt, you right click on it and select &#8220;rename&#8221; and  			change [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aremacyber.wordpress.com&blog=3423363&post=10&subd=aremacyber&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p style="margin:0;"><strong>What is a Registry File?</strong></p>
<p style="margin:0;">A registry file is really just a text file  			(.txt made with notepad). It becomes a registry file (.reg) when you  			change the extension from .txt to .reg. For example you have a text  			file called test.txt, you right click on it and select &#8220;rename&#8221; and  			change it to test.reg. If properly configured, when you click on it  			and answer yes to the pop-up screen, it will make immediate changes  			directly to your registry. It is a fast and easy method to tweak  			your computer, save the customizations you made, and apply tweaks to  			an installation.</p>
<p style="margin:0;">
<p style="margin:0;">How do I make a .reg file?</p>
<p style="margin:0;">Lets try this first. Open your registry,  			press the <strong>Windows</strong> + <strong>R</strong> keys &gt; in the resulting windows  			type <strong>regedit</strong> and then click <strong>OK</strong>.</p>
<p style="text-align:center;margin:0;" align="center"><img src="http://www.tweakhound.com/xp/xptweaks/images/regedit.gif" border="0" alt="" width="347" height="179" /></p>
<p style="text-align:center;margin:0;" align="center">
<p style="margin:0;">Now that we have Registry Editor open, lets  			navigate to a popular key: HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced  			.</p>
<p style="margin:0;">
<p style="margin:0;">Click on the &#8220;<strong>+</strong>&#8221; sign next to <strong> HKEY_CURRENT_USER</strong>, next do the same for <strong>SOFTWARE</strong>, scroll  			down and do the same for <strong>Microsoft</strong>, then <strong>Windows</strong>, <strong> CurrentVersion</strong>, <strong>Explorer</strong>.</p>
<p style="margin:0;">
<p style="text-align:center;margin:0;" align="center"><img src="http://www.tweakhound.com/xp/xptweaks/images/regedit2.gif" border="0" alt="" width="591" height="437" /></p>
<p style="margin:0;">
<p style="margin:0;">
<p style="margin:0;">Now click on <strong>Advanced</strong>. You should be  			here:</p>
<p style="text-align:center;margin:0;" align="center"><img src="http://www.tweakhound.com/xp/xptweaks/images/regedit3.gif" border="0" alt="" width="591" height="437" /></p>
<p style="text-align:center;margin:0;" align="center">
<p style="margin:0;">
<p style="margin:0;">Now, right-click on <strong>Advanced</strong> and  			choose <strong>Export</strong>. Navigate to your desktop to save the file  			there, name it <strong>test</strong> and click <strong>Save</strong>.</p>
<p style="margin:0;">
<p style="text-align:center;margin:0;" align="center"><img src="http://www.tweakhound.com/xp/xptweaks/images/regedit4.gif" border="0" alt="" width="500" height="452" /></p>
<p style="text-align:center;margin:0;" align="center">
<p style="margin:0;">You should now have a file on your desktop  			that looks like this:</p>
<p style="margin:0;">
<p style="text-align:center;margin:0;" align="center"><img src="http://www.tweakhound.com/xp/xptweaks/images/regedit5.gif" border="0" alt="" width="48" height="53" /></p>
<p style="text-align:center;margin:0;" align="center">
<p style="margin:0;">Right-click on it and choose <strong>Open with</strong>,  			and then <strong>Notepad</strong>. If Notepad isn&#8217;t readily available then  			select <strong>Choose Program </strong>and find Notepad in the list. Once open  			you should see something similar to the picture below. This is a .reg  			file. There are 2 keys here. The first is the line, <strong>Windows  			Registry Editor Version 5.00</strong> which tells XP &#8220;I&#8217;m a .reg file&#8221;.  			The second is syntax, which tells XP what key to change (or add) and  			what to set the value to. Whole books have been written on this.</p>
<p style="text-align:center;margin:0;" align="center"><img src="http://www.tweakhound.com/xp/xptweaks/images/regedit6.gif" border="0" alt="" width="600" height="472" /></p>
<p style="margin:0;">
<p style="margin:0;">So, we now have an example of a .reg file.  			I&#8217;ve showed you this method because it the simplest way to start  			making your own .reg files, in fact, it&#8217;s the way I started. To work  			from here I change the extension from .reg to .txt to make it safer  			to work with. Simply right-click on test.reg and rename it to  			test.txt. I add/remove keys and change values then rename it back to  			a .reg file, noballontips.reg for example. Hope this helps you  			understand what a .reg file is.</p>
<p style="margin:0;">Let&#8217;s move one to my registry settings&#8230;</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/aremacyber.wordpress.com/10/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/aremacyber.wordpress.com/10/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/aremacyber.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/aremacyber.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/aremacyber.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/aremacyber.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/aremacyber.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/aremacyber.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/aremacyber.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/aremacyber.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/aremacyber.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/aremacyber.wordpress.com/10/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aremacyber.wordpress.com&blog=3423363&post=10&subd=aremacyber&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://aremacyber.wordpress.com/2008/04/09/make-your-own-registry/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a4a496b894d841765488a0507b7421bd?s=96&#38;d=identicon" medium="image">
			<media:title type="html">aremacyber</media:title>
		</media:content>

		<media:content url="http://www.tweakhound.com/xp/xptweaks/images/regedit.gif" medium="image" />

		<media:content url="http://www.tweakhound.com/xp/xptweaks/images/regedit2.gif" medium="image" />

		<media:content url="http://www.tweakhound.com/xp/xptweaks/images/regedit3.gif" medium="image" />

		<media:content url="http://www.tweakhound.com/xp/xptweaks/images/regedit4.gif" medium="image" />

		<media:content url="http://www.tweakhound.com/xp/xptweaks/images/regedit5.gif" medium="image" />

		<media:content url="http://www.tweakhound.com/xp/xptweaks/images/regedit6.gif" medium="image" />
	</item>
		<item>
		<title>Bad Tweak</title>
		<link>http://aremacyber.wordpress.com/2008/04/09/bad-tweak/</link>
		<comments>http://aremacyber.wordpress.com/2008/04/09/bad-tweak/#comments</comments>
		<pubDate>Wed, 09 Apr 2008 02:56:32 +0000</pubDate>
		<dc:creator>aremacyber</dc:creator>
				<category><![CDATA[Tak Berkategori]]></category>

		<guid isPermaLink="false">http://aremacyber.wordpress.com/?p=9</guid>
		<description><![CDATA[The  			following is a list of XP tweaks that either do not work, do not  			work as advertised, or that are better left alone.
Many of these once worked in some version of Windows and virtually  			every tweak guide and program use these tweaks. My guide also used  			to contain some of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aremacyber.wordpress.com&blog=3423363&post=9&subd=aremacyber&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>The  			following is a list of XP tweaks that either do not work, do not  			work as advertised, or that are better left alone.</p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;">Many of these once worked in some version of Windows and virtually  			every tweak guide and program use these tweaks. My guide also used  			to contain some of them. It has  			taken a considerable amount of research and testing to come to these  			conclusions. While others have incorporated these into other  			guides and tried to pass it on as their own work I’ve done the  			investigation and benchmarking (and AFAIK I was the first to publish  			these en masse on the web). I’ve Googled up one side of the net and down the  			other. Sometimes I think I’ve seen every page at Microsoft. I’ve  			hosed installs, applied and removed settings, and spent more time  			tracking the registry than I care to admit (far more than I would  			like my wife to know about!).</p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;">
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;"><strong> Memory Optimizers</strong></p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;">I’ve  			long railed against these things. The only thing that these programs  			can do is harm real system performance. My advice, <strong>stay away from  			any “memory optimizer” programs.</strong> Don’t believe me? How about  			taking renowned Windows guru 			<a href="http://www.sysinternals.com/aboutus.shtml" target="_blank"> Mark Russinovich’s</a><span style="color:black;"> </span>word for it?  			In his article entitled “<span style="color:black;"><a href="http://www.winntmag.com/Article/ArticleID/41095/41095.html" target="_blank">The  			Memory-Optimization Hoax, <em>RAM optimizers make false promises</em></a></span>”  			he lays out the argument better than I ever could. 			<span style="font-size:10pt;">(I can’t reprint the article because  			of copyright.)</span> His conclusion is that these programs are  			“fraudware” and he has “yet to see a RAM optimizer that lives up to  			any of its claims.”…’Nuff said!</p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;">
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;"><strong> Prefetch Parameters</strong></p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;">[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session  			Manager\Memory Management\PrefetchParameters]</p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;">&#8220;EnablePrefetcher&#8221;=dword:00000005</p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;">
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;">First,  			I fail to see where any advantage is gained by messing with the  			prefetch settings. While disabling the prefetch service (or only  			using setting 1 or 2) can speed boot times it only hurts overall  			system performance.</p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;">Most  			tweak guides and popular tweaking programs use a setting of “5”.  			There is no documentation to suggest that this setting works. MS  			states that valid values are 0,1,2,3 and that this setting is “anded”.  			The default value is “3”. I tested using a setting of “5” on 3  			occasions and there was no real improvement in boot times and hard  			drive activity was longer at boot.*</p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;"><a href="http://64.233.161.104/search?q=cache:ckLCOnicRSAJ:msdn.microsoft.com/msdnmag/issues/01/12/XPKernel/default.aspx++prefetch+site:microsoft.com&amp;hl=en" target="_blank">Prefetching is a good thing</a>, leave it alone. In addition well  			written disk defrag utilities such as Raxco’s Perfect Disk use the  			layout.ini information for its optimizations.</p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;">
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;"><strong>Clean The Prefetch Folder</strong></p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;">As stated above, 			Prefetching is a good thing, leave it alone. In addition well  			written disk defrag utilities such as Raxco’s Perfect Disk use the  			layout.ini information for its optimizations. There is one possible  			and optional exception to this, see the &#8221; 			<a href="http://www.tweakhound.com/xp/xptweaks/supertweaks12.htm" target="_blank"> Clean, Defrag, Optimize</a> &#8221; section of this guide for more info.</p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;">
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;"><strong>More about Prefetching</strong></p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;">It still amazes me that anyone suggests messing with Prefetch  			settings and files. They often quote their own &#8220;benchmarks&#8221; as a  			source of info as to why you should mess with the settings. I&#8217;ve  			spent over 3 years researching, using, testing, and tweaking XP. I  			can guarantee you that the default settings for Prefetch and the way  			XP manages it is the way to go. Anyone who suggests otherwise simply  			does not understand the process.</p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;">Wanna research it yourself?</p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;"><a href="http://www.google.com/search?as_q=prefetch&amp;num=50&amp;hl=en&amp;btnG=Google+Search&amp;as_epq=windows+xp&amp;as_oq=&amp;as_eq=&amp;lr=lang_en&amp;as_ft=i&amp;as_filetype=&amp;as_qdr=all&amp;as_occt=any&amp;as_dt=i&amp;as_sitesearch=microsoft.com&amp;safe=images" target="_blank"> Google search: prefetch+&#8221;windows xp&#8221; at microsoft.com</a></p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;"><a href="http://msdn.microsoft.com/msdnmag/issues/01/12/XPKernel/default.aspx"> http://msdn.microsoft.com/msdnmag/issues/01/12/XPKernel/default.aspx</a></p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;"><a href="http://bink.nu/Article1460.bink" target="_blank">Windows XP  			Prefetch, clean it? NO !</a></p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;">
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;"><strong>Superfetch</strong></p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;">There has been much ado of late about the existence of a &#8221;  			Superfetch &#8221; or &#8221; Superprefetch &#8221; setting. There is no such setting  			in XP.</p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;"><a href="http://www.edbott.com/weblog/archives/000863.html" target="_blank"> http://www.edbott.com/weblog/archives/000863.html</a></p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;"><a href="http://bink.nu/Article4556.bink" target="_blank"> http://bink.nu/Article4556.bink</a></p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;">
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;"><strong> Always Unload Dll’s</strong></p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;">[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer]</p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;">&#8220;AlwaysUnloadDLL&#8221;=dword:00000001</p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;">
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;">Here is  			the first and most important point. I can find no evidence  			whatsoever that this setting works in Windows XP.** In fact, the  			only <strong><em>official</em></strong> Microsoft technical documentation I can  			find on this is 			<a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/shellcc/platform/shell/programmersguide/shell_basics/shell_basics_programming/debugging.asp"> here</a>. It clearly and unequivocally states,</p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;">“For  			operating systems <strong><em>prior to Windows 2000</em></strong>, you can  			shorten the inactive period by adding the following information to  			the registry.</p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;">HKEY_LOCAL_MACHINE Software Microsoft Windows CurrentVersion  			Explorer AlwaysUnloadDll”</p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;">
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;">For  			arguments sake, let’s just say that this setting does work in XP.  			Windows XP uses a complex and efficient process to manage memory  			operations. It keeps the dll loaded in case you need it again. For  			example, if you open XYZ and then close it the dll remains in  			memory. If you open XYZ again it will launch quicker because the dll  			is already in memory. When/if XP needs the space in memory for  			something else it will make the space by unloading the dll(s) that  			aren’t being used. If this setting actually did work, you have hurt  			your overall performance because you unloaded a dll when it didn&#8217;t  			need to be and caused the system to have to load it again when  			called upon.</p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;">note &#8211;  			For those who state that this tweak would only work in IE. The key  			is “Explorer” as in the shell, not “InternetExplorer” the browser.  			Also, whether you make a new key, sub key, entry, or any combination  			makes no difference.</p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;">
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;"><strong>Set  			Irq Priority</strong></p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;">[HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\PriorityControl]</p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;">&#8220;IRQ8Priority&#8221;=dword:00000001</p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;">I can  			find no documentation that XP supports this setting. I can find no  			evidence that this setting works in XP.** If it did work I fail to  			understand any advantages you might gain. I’m not even sure if it’s  			possible to reassign IRQ priorities in this manner XP and if you  			could I’m pretty sure that this key wouldn’t be how you do it (XP  			uses/accesses/manages IRQ’s differently than previous versions of  			Windows).**** They use irq 8 because it’s (usually) the CMOS/real  			time clock.</p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;">
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;"><strong> Disable Paging of Kernel</strong></p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;">[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session  			Manager\Memory Management]</p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;">&#8220;DisablePagingExecutive&#8221;=dword:00000001</p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;">
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;">Under  			all but the most very extreme circumstances it does nothing. What  			this setting does is force XP to keep the kernel (the core of the  			operating system) in RAM. This means that the kernel will reside in  			the fastest storage area in your computer. Sounds great right? Guess  			what? <strong>XP does this anyway</strong> unless the system comes under such  			an extremely heavy load that it needs the space. The very  			millisecond that the system has free memory, it will put the kernel  			right back into RAM. If the system is in such dire straights that it  			needs to use the space that the kernel is using I would say you are  			on your way to a crash and you better let whatever wants the space  			have it. You also better add more memory ASAP.</p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;">
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;"><strong> Large System Cache</strong></p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;">[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session  			Manager\Memory Management]</p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;">&#8220;LargeSystemCache&#8221;=dword:000000001</p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;">
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;">This  			setting is also achieved by going to Start &gt; Settings &gt; Control  			Panel &gt; System &gt; Advanced &gt; Performance Settings &gt; Advanced &gt; Memory  			usage = System Cache.</p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;">
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;">Under  			XP this tweak could be of some value under various odd  			circumstances. However, it causes problems with many  			drivers/hardware/applications.***  This tweak is really designed for  			machines running as a server. If you use this tweak and have  			problems don’t be whining at the driver/application writers for  			writing code that takes advantage of the way XP uses memory. They  			didn’t ask you to turn your machine into a server.</p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;">
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;"><strong> IoPageLockLimit</strong></p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;">[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session  			Manager\Memory Management]</p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;">&#8220;IoPageLockLimit&#8221;=dword:<em>somevalue</em></p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;">I can  			find no official documentation on this regarding XP. Suggestions  			seem to indicate that this setting doesn’t work on any NT based OS  			from W2K SP1 and beyond. I can find no evidence that this setting  			works in XP.**</p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;">
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;"><strong> Optimize Boot Files</strong></p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;">There  			are 3 keys related to “tweaks” about optimizing boot files:</p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;">1:</p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;">[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Dfrg\BootOptimizeFunction]</p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;">&#8220;Enable&#8221;=&#8221;N&#8221;</p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;">Quote  			from MS:</p>
<div>
<table id="table145" class="MsoNormalTable" style="width:300pt;border-collapse:collapse;" border="1" cellspacing="0" cellpadding="0" width="400" bgcolor="#ebebeb">
<tbody>
<tr>
<td style="padding:0;">
<p style="text-align:center;margin-top:0;margin-bottom:0;" align="center"><span style="font-size:10pt;">“Accepted values for this  						entry are Y or N. If the entry is set to Y, Windows  						automatically optimizes the file location for boot  						optimization. This optimization occurs automatically if  						the system is idle for 10 minutes. Boot optimization  						improves startup time by locating startup files in  						contiguous clusters on the volume, reducing the movement  						of the disk head when reading the volume.”</span></p>
</td>
</tr>
</tbody>
</table>
</div>
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;">
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;">2:</p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;">[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\OptimalLayout]</p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;">&#8220;EnableAutoLayout&#8221;=dword:00000000</p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;">Found  			in TweakUI under the “General” section, “Optimize hard disk when  			idle”. XP already does this by default but this key is not in the  			registry. Either you or some application has to put this key in. The  			key exists so that a non-Windows disk defragger can manage the  			process.</p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;">
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;">3: [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows  			NT\CurrentVersion\Prefetcher]<br />
&#8220;BootFilesOptimized&#8221;=dword:00000001</p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;"><strong> First and most important</strong>, as far as I can tell this is an  			informational key, not a program setting key. Second, lets say it  			does change the program behavior, the default is to have XP optimize  			the boot files. So, why wouldn&#8217;t you want this? Third, if you use a  			3rd party defrag program it may/will modify or delete this value.  			Changing the existing settings may/will screw things up.</p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;">
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;"><a href="http://64.233.161.104/search?q=cache:Wkfy9DAFiXwJ:download.microsoft.com/download/1/6/1/161ba512-40e2-4cc9-843a-923143f3456c/Fast%20System%20Startup%20for%20PCs%20Running%20Windows.doc+%22The%20Windows%20XP%20defrag%20utility%20does%20not%20und" target="_blank">These  			keys have NOTHING to do with how the full/manual disk defragmenter  			works</a>, as in when you run the Windows GUI disk defragmenter program 			<span style="font-size:10pt;">(see note #5)</span>, this despite  			what many XP “experts” have opined. XP is set up by default to:</p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;">1 &#8211;  			Rearrange boot files when idle for a period of time (10 minutes).</p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;">and</p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;">2 &#8211; To  			do a “partial defrag” of files every 3 days (what bootvis does).</p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;">The  			“rearrange” part is where it finds all the files needed for boot and  			places them in one spot on the disk.<span style="font-size:10pt;"> (Prefetch value 1)</span></p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;">The  			partial defrag is where it does the same thing for all the items in  			the prefetch folder layout.ini file. (Combines Prefetch value 1  			(boot) and 2 (apps) = value 3)</p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;">For  			best performance leave these settings alone, these are features not  			bugs. Well written disk defrag utilities such as Raxco’s Perfect  			Disk may/will adjust these settings because it is now managing your  			drives defragmenting process.</p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;">
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;">
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;"><strong> *****Conclusion</strong></p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;">I’m  			sure some will argue with my conclusions. I&#8217;m always looking for  			information about new tweaks and why tweaks either do or do not  			work. I will entertain arguments about this information but I will  			require a few things:</p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;">1 – You  			must submit documentation for your argument from a legitimate  			source. In matters involving the registry it should be from  			Microsoft or from some entity of equal weight.</p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;">2 &#8211; I  			hear things like “my benchmarking” and “my tests”. That, to be quite  			frank, is a load of crap. What “benchmarks”? What “tests”? Any  			benchmarks/tests used in your argument must be fully documented.  			They must also be able to be replicated and if your argument has any  			merit, I will attempt to do just that. If it can’t be replicated it  			fails the scientific method and the argument is null. I’ve already  			benchmarked/tested these settings extensively.</p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;">I  			know this sounds rather harsh but I get email from people wanting to  			argue this without anything to back up their argument.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/aremacyber.wordpress.com/9/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/aremacyber.wordpress.com/9/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/aremacyber.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/aremacyber.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/aremacyber.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/aremacyber.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/aremacyber.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/aremacyber.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/aremacyber.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/aremacyber.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/aremacyber.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/aremacyber.wordpress.com/9/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aremacyber.wordpress.com&blog=3423363&post=9&subd=aremacyber&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://aremacyber.wordpress.com/2008/04/09/bad-tweak/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a4a496b894d841765488a0507b7421bd?s=96&#38;d=identicon" medium="image">
			<media:title type="html">aremacyber</media:title>
		</media:content>
	</item>
		<item>
		<title>Registry Hacks</title>
		<link>http://aremacyber.wordpress.com/2008/04/09/registry-hacks/</link>
		<comments>http://aremacyber.wordpress.com/2008/04/09/registry-hacks/#comments</comments>
		<pubDate>Wed, 09 Apr 2008 02:52:58 +0000</pubDate>
		<dc:creator>aremacyber</dc:creator>
				<category><![CDATA[Tak Berkategori]]></category>

		<guid isPermaLink="false">http://aremacyber.wordpress.com/?p=8</guid>
		<description><![CDATA[ 

 Warning: Backup the  			registry or you may be sorry! If you hose your machine it&#8217;s on you.  			Keep track of where you were in the registry. When editing an item,  			go up to the Favorites option and add where you are to your  			favorites!

I try to keep this section [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aremacyber.wordpress.com&blog=3423363&post=8&subd=aremacyber&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p style="text-align:center;margin:0;" align="center"><strong> <span style="color:#666666;font-size:medium;"><br />
</span></strong></p>
<p style="margin:0;"><strong><em><span style="font-size:10pt;"> Warning</span></em></strong><span style="font-size:10pt;">: Backup the  			registry or you may be sorry! If you hose your machine it&#8217;s on you.  			Keep track of where you were in the registry. When editing an item,  			go up to the Favorites option and add where you are to your  			favorites!</span></p>
<p style="margin:0;">
<p style="margin:0;">I try to keep this section as small as  			possible as I feel the average user is better off using a GUI to  			manage registry changes. If you want to see more registry hacks see  			the 			<a href="http://www.tweakhound.com/xp/xptweaks/regfiles.htm" target="_blank"> Creating Your Own Registry Files</a> section later in this guide.</p>
<p style="margin:0;">
<p style="margin:0;">These tweaks assume you are using NTFS 			<span style="font-size:10pt;">(if you aren&#8217;t, you should be)</span>.  			I also <em>highly recommend</em> 512mb of ram.</p>
<p style="margin:0;">
<p style="margin:0;">Those who know how can pick the tweaks you  			desire, save them (copy and paste) as a .reg file and import into  			the registry. If you don&#8217;t know how to do that you can download the  			following files. You can use the file as is or edit it to fit your  			needs. To edit the file, right click and open with notepad. To  			launch the file simply double-click on it. 			<span style="font-size:10pt;">(<strong>Please do not link directly to  			these files</strong>.)</span></p>
<p style="margin:0;">
<p style="margin:0;"><em><span style="color:#800000;">Action:</span></em><strong> Set CPU Priority</strong><span style="color:#ff6600;"> Levels 3</span> <span style="color:red;">&amp; 4 only</span></p>
<p style="margin:0;"><span style="color:#000080;">Purpose:</span> Performance</p>
<p style="margin:0;"><a href="http://www.microsoft.com/mspress/books/sampchap/4354c.asp" target="_blank"> <span style="color:#00ccff;">More Info</span></a> * I do not use this tweak.</p>
<p style="margin:0;">This setting gives a boost to priority of  			foreground applications. In very overly-simplified terms, what you  			see on the screen gets more attention from the CPU than what you  			can&#8217;t.</p>
<p style="margin:0;">[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\PriorityControl]<br />
&#8220;Win32PrioritySeparation&#8221;=dword:00000026</p>
<p style="margin:0;">Download <strong> <a href="http://www.tweakhound.com/files/priority_sep.zip">priority_sep.reg</a></strong></p>
<p style="margin:0;">
<p style="margin:0;"><em><span style="color:#800000;">Action:</span></em><strong> These allow you to end tasks  			faster, shut down faster and speed up the menu display. </strong> <span style="color:purple;">*All Levels</span><br />
<span style="color:#000080;">Purpose:</span> Performance, responsiveness</p>
<p style="margin:0;"><span style="color:#00ccff;">More Info: </span> <a href="http://www.microsoft.com/resources/documentation/Windows/2000/server/reskit/en-us/Default.asp?url=/resources/documentation/Windows/2000/server/reskit/en-us/regentry/55200.asp" target="_blank"> <span style="color:#00ccff;">ForegroundLockTimeout</span></a><span style="color:#00ccff;">, </span> <a href="http://www.microsoft.com/resources/documentation/Windows/2000/server/reskit/en-us/Default.asp?url=/resources/documentation/Windows/2000/server/reskit/en-us/regentry/34625.asp" target="_blank"> <span style="color:#00ccff;">HungAppTimeout</span></a><span style="color:#00ccff;">, </span> <a href="http://support.microsoft.com/?id=216445" target="_blank"> <span style="color:#00ccff;">MenuShowDelay</span></a><span style="color:#00ccff;">, </span> <a href="http://www.microsoft.com/resources/documentation/Windows/2000/server/reskit/en-us/Default.asp?url=/resources/documentation/Windows/2000/server/reskit/en-us/regentry/34637.asp" target="_blank"> <span style="color:#00ccff;">WaitToKillAppTimeout</span></a><span style="color:#00ccff;">, </span> <a href="http://www.microsoft.com/resources/documentation/Windows/2000/server/reskit/en-us/Default.asp?url=/resources/documentation/Windows/2000/server/reskit/en-us/regentry/26734.asp" target="_blank"> <span style="color:#00ccff;">WaitToKillServiceTimeout</span></a></p>
<p style="margin:0;">
<p style="margin:0;">[HKEY_CURRENT_USER\Control Panel\Desktop]<br />
&#8220;ForegroundLockTimeout&#8221;=dword:00000000<br />
&#8220;HungAppTimeout&#8221;=&#8221;4000&#8243;<br />
&#8220;MenuShowDelay&#8221;=&#8221;200&#8243;<br />
&#8220;WaitToKillAppTimeout&#8221;=&#8221;5000&#8243;</p>
<p>[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control]<br />
&#8220;WaitToKillServiceTimeout&#8221;=&#8221;5000&#8243;</p>
<p style="margin:0;">
<p style="margin:0;">Download <strong> <a href="http://www.tweakhound.com/files/app_menu_speed.zip">app_menu_speed.reg</a></strong></p>
<p style="margin:0;">
<p style="margin:0;">*note &#8211; I have changed the &#8220;MenuShowDelay&#8221;  			from 0 to 200. 0 was simply too fast for some people (my wife gave  			me some grief about it too 			<img src="http://www.tweakhound.com/images/wink1.gif" border="0" alt="" width="15" height="15" />). You can  			edit this as you see fit. The default is 400.</p>
<p style="margin:0;">
<p style="margin:0;">These next 2 tweaks I consider to be  			optional. One could argue about whether or not they actually have  			any speed advantage and you may or may not like the result. I  			strongly recommend you do these two entries manually so that you can  			easily undo them if you do not like them but you can also copy and  			paste them into the .reg file.</p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;"><em><span style="color:#800000;">Action:</span></em> <strong>Disable User Tracking </strong><span style="color:#ff6600;"> Levels 3</span> <span style="color:red;">&amp; 4 only</span><br />
<span style="color:#000080;">Purpose:</span> Free system resources.</p>
<p class="MsoNormal" style="margin-top:0;margin-bottom:0;"><a href="http://www.microsoft.com/resources/documentation/Windows/2000/server/reskit/en-us/Default.asp?url=/resources/documentation/Windows/2000/server/reskit/en-us/regentry/93173.asp" target="_blank"> <span style="color:#00ccff;">More Info</span></a></p>
<p style="margin:0;">&#8220;A value of 1 prevents the system from  			tracking the programs users run, the paths they navigate, and the  			documents they open. The system uses this information to customize  			Windows features. As a result, the system disables customized menus  			and other features that require user tracking information.&#8221;<span style="font-size:10pt;"> (from 			<a href="http://www.microsoft.com/windows2000/techinfo/reskit/en-us/default.asp?url=/windows2000/techinfo/reskit/en-us/regentry/93173.asp" target="_blank"> this page</a>)</span></p>
<p style="margin:0;">
<p style="margin:0;">[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer]<br />
&#8220;NoInstrumentation&#8221;=dword:00000001</p>
<p style="margin:0;">
<p style="margin:0;">Download <strong> <a href="http://www.tweakhound.com/files/user_track.zip">user_track.reg</a></strong></p>
<p style="margin:0;">
<p style="margin:0;"><em><span style="color:#800000;">Action:</span></em><strong> Make Google Your Default Search  			Tool</strong>. (in IE) From <strong>Google</strong>.</p>
<p style="margin:0;"><span style="color:#000080;">Purpose:</span> User preference</p>
<p style="margin:0;"><a href="http://www.google.com/options/defaults.html" target="_blank"> <span style="color:#00ccff;">More Info</span></a></p>
<p style="margin:0;">Download <strong><span style="color:maroon;"><a href="http://www.tweakhound.com/files/google.zip" target="_blank">Google.reg</a></span></strong></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/aremacyber.wordpress.com/8/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/aremacyber.wordpress.com/8/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/aremacyber.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/aremacyber.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/aremacyber.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/aremacyber.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/aremacyber.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/aremacyber.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/aremacyber.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/aremacyber.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/aremacyber.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/aremacyber.wordpress.com/8/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aremacyber.wordpress.com&blog=3423363&post=8&subd=aremacyber&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://aremacyber.wordpress.com/2008/04/09/registry-hacks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a4a496b894d841765488a0507b7421bd?s=96&#38;d=identicon" medium="image">
			<media:title type="html">aremacyber</media:title>
		</media:content>

		<media:content url="http://www.tweakhound.com/images/wink1.gif" medium="image" />
	</item>
		<item>
		<title>Tweak your Internet Connection</title>
		<link>http://aremacyber.wordpress.com/2008/04/09/tweak-your-internet-connection/</link>
		<comments>http://aremacyber.wordpress.com/2008/04/09/tweak-your-internet-connection/#comments</comments>
		<pubDate>Wed, 09 Apr 2008 02:50:33 +0000</pubDate>
		<dc:creator>aremacyber</dc:creator>
				<category><![CDATA[Tak Berkategori]]></category>

		<guid isPermaLink="false">http://aremacyber.wordpress.com/?p=7</guid>
		<description><![CDATA[ Broadband Tweaks
This is mostly a where to find tools &#38;  			information guide than a how-to guide. The simple truth is that  			there is no one-size-fits-all way to tweak a broadband connection.  			Anyone who tells you that a certain tweak will absolutely work for  			you is mistaken. These tweaks take some [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aremacyber.wordpress.com&blog=3423363&post=7&subd=aremacyber&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p style="text-align:center;margin:0;" align="center"><strong> <span style="color:#666666;font-size:medium;">Broadband Tweaks</span></strong></p>
<p style="margin:0;">This is mostly a where to find tools &amp;  			information guide than a how-to guide. The simple truth is that  			there is no one-size-fits-all way to tweak a broadband connection.  			Anyone who tells you that a certain tweak will absolutely work for  			you is mistaken. These tweaks take some effort on your part.  			Fortunately there are 2 great place to go for info and discussions, 			<a href="http://www.speedguide.net/" target="_blank"> SpeedGuide.net</a> and 			<a href="http://www.broadbandreports.com/" target="_blank"> Broabdandreports.com</a>. I actually like SpeedGuide a little better  			but you should check them both out. If you get all you want from  			your connection, my best advice is to <strong>leave it alone</strong>. For  			those of you who, like me, never leave well enough alone, read on!</p>
<p style="margin:0;">The first thing you need to do is  			download the latest drivers/firmware for whatever equipment is  			involved in your connection. Everything that is in the chain should  			be updated. This may include: NIC or onboard LAN drivers, 802.11x  			device drivers, USB drivers, and Router and/or Cable/DSL/Satellite  			Modem firmware. Only update firmware if needed. Routers often have  			updates to fix security holes.</p>
<p style="margin:0;">If you are on a home network or are part  			of an Internet Connection Sharing (ICS) network, all the machines on  			that network should have the exact same settings.</p>
<p style="margin:0;">About the QOS &#8220;tweaks&#8221; floating around  			the net. Ignore them, they don&#8217;t work!</p>
<p style="margin:0;">
<p style="margin:0;"><strong>Tweaking with SpeedGuide.net</strong></p>
<p style="margin:0;">1 – Download 			<a href="http://www.speedguide.net/downloads.php" target="_blank"> TCP Optimizer</a>. Then bookmark the 			<a href="http://www.speedguide.net/faq.php" target="_blank"> FAQ page</a>.</p>
<p style="margin:0;">2 – Take the 			<a href="http://www.speedguide.net/sg_tools.php" target="_blank"> Speed Test</a> (requires registration) or use the 			<a href="http://www.broadbandreports.com/stest" target="_blank"> Speed Test</a> at Broadbandreports. Write down your results.</p>
<p style="margin:0;">3 – Use the TCP Analyzer. Write down or  			print the results.</p>
<p style="margin:0;">4 – Run TCP Optimizer. Either apply the  			recommendations from TCP Analyzer or try the “Optimal Settings”  			button. Reboot.</p>
<p style="margin:0;">5 – Run Speed Test again. Faster? Sweet!  			No? Use TCP Analyzer again. Repeat as needed until desired results  			are achieved. Be sure to check how your web browsing feels too.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/aremacyber.wordpress.com/7/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/aremacyber.wordpress.com/7/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/aremacyber.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/aremacyber.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/aremacyber.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/aremacyber.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/aremacyber.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/aremacyber.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/aremacyber.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/aremacyber.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/aremacyber.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/aremacyber.wordpress.com/7/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aremacyber.wordpress.com&blog=3423363&post=7&subd=aremacyber&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://aremacyber.wordpress.com/2008/04/09/tweak-your-internet-connection/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a4a496b894d841765488a0507b7421bd?s=96&#38;d=identicon" medium="image">
			<media:title type="html">aremacyber</media:title>
		</media:content>
	</item>
		<item>
		<title>Optimize Your Windows</title>
		<link>http://aremacyber.wordpress.com/2008/04/09/optimize-your-windows/</link>
		<comments>http://aremacyber.wordpress.com/2008/04/09/optimize-your-windows/#comments</comments>
		<pubDate>Wed, 09 Apr 2008 02:38:50 +0000</pubDate>
		<dc:creator>aremacyber</dc:creator>
				<category><![CDATA[Tak Berkategori]]></category>

		<guid isPermaLink="false">http://aremacyber.wordpress.com/?p=6</guid>
		<description><![CDATA[Step 1 &#8211; Malware Removal
Malware Infection which includes Viruses, Worms, Trojans, Spyware, Adware and Rootkits are the #1 cause of system slowdowns. These must be cleaned for optimal system performance.
FACT: 89% of consumer PCs are infected with spyware
  Malware Removal 1-2-3 Guide &#8211; Malware is short for &#8220;Malicious Software&#8221;. It is a general term [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aremacyber.wordpress.com&blog=3423363&post=6&subd=aremacyber&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><h1>Step 1 &#8211; Malware Removal</h1>
<p><strong>Malware Infection which includes Viruses, Worms, Trojans, Spyware, Adware and Rootkits are the #1 cause of system slowdowns. These must be cleaned for optimal system performance.</strong></p>
<p><strong>FACT: <a href="http://www.webroot.com/resources/stateofspyware/excerpt.html" target="_blank">89% of consumer PCs are infected with spyware</a></strong></p>
<p><a href="http://home.comcast.net/%7ESupportCD/MalwareRemoval.html" target="_blank"> <img src="http://home.comcast.net/%7ESupportCD/Icons/Malware.jpg" border="0" alt="Malware" /></a> <a href="http://home.comcast.net/%7ESupportCD/MalwareRemoval.html" target="_blank">Malware Removal 1-2-3 Guide</a> &#8211; Malware is short for &#8220;Malicious Software&#8221;. It is a general term that refers to any software or program code designed to infiltrate or damage a computer system without the owner&#8217;s informed consent. This includes Viruses, Worms, Trojans, Spyware, Adware and Rootkits. This 3 step guide will show you how to remove these infections and protect yourself from future infections for free using free software.</p>
<p><a class="topOfPage" title="Go to the top of this page" href="http://home.comcast.net/%7ESupportCD/OptimizeXP.html#top">^ TOP</a></p>
<h1>Step 2 &#8211; Windows Update</h1>
<p><a href="http://www.microsoft.com/windowsxp/sp2/default.mspx" target="_blank"> <img src="http://home.comcast.net/%7ESupportCD/Icons/SP2.jpg" border="0" alt="SP2" /></a> <strong>SP2 Installation Advisory</strong> &#8211; <a href="http://www.microsoft.com/windowsxp/sp2/default.mspx" target="_blank">Home Page</a><br />
<a href="http://support.microsoft.com/?kbid=811113" target="_blank">KB811113</a> lists all the fixes included in <acronym title="Service Pack Version 2">SP2</acronym>. Before installing <acronym title="Service Pack Version 2">SP2</acronym> make sure all of your <strong>Data is backed up</strong> and you have consulted with your PC manufacturer for any potential problems. Viruses and Spyware can cause the <acronym title="Service Pack Version 2">SP2</acronym> installation to fail, make sure you have run through steps 1 and 2 <strong>completely</strong> before proceeding. The changes included in <acronym title="Service Pack Version 2">SP2</acronym> can cause Windows XP and your Applications to stop working, crash or behave differently &#8211;  	 <a href="http://support.microsoft.com/default.aspx?kbid=884130&amp;product=windowsxpsp2" target="_blank">KB884130</a>. If the <acronym title="Service Pack Version 2">SP2</acronym> installation fails you can use these instructions to restore your system: 	 <a href="http://support.microsoft.com/default.aspx?kbid=875355&amp;product=windowsxpsp2" target="_blank">How to recover your computer if the Windows XP Service Pack 2 setup program is not completed successfully</a> (print these out).</p>
<p><em>Notes</em> &#8211; After following the above advisory, it is recommended that you install <acronym title="Service Pack Version 2">SP2</acronym>. The updated security features are well worth it.<br />
- <a href="http://www.microsoft.com/windowsxp/using/web/sp2_popupblocker.mspx" target="_blank">Internet Explorer Pop-up Blocker</a> (I still recommend installing the Google Toolbar if you use <acronym title="Internet Explorer">IE</acronym>)<br />
- <a href="http://www.microsoft.com/windowsxp/using/web/sp2_infobar.mspx" target="_blank">Internet Explorer Download Monitoring</a> (Warns you about potentially harmful downloads i.e.. Spyware and Viruses)<br />
- <a href="http://www.microsoft.com/windowsxp/using/security/internet/sp2_wfintro.mspx" target="_blank">Windows Firewall Update</a> (Much better application management and enhanced boot time security)<br />
- <a href="http://www.microsoft.com/windowsxp/using/security/internet/sp2_wscintro.mspx" target="_blank">Windows Security Center</a> (Notifies you of your AntiVirus, Firewall and Windows Update Status)<br />
- <a href="http://www.microsoft.com/technet/community/columns/cableguy/cg0804.mspx" target="_blank">Improved Wireless Support</a> (Improves and simplifies the process of discovering and connecting to wireless networks)<br />
- <a href="http://support.microsoft.com/default.aspx?scid=kb;en-us;875352" target="_blank">Data Execution Prevention</a> (Help prevents code execution from data pages)</p>
<p><a href="http://windowsupdate.microsoft.com/" target="_blank"> <img src="http://home.comcast.net/%7ESupportCD/Icons/WinUpdate.jpg" border="0" alt="WinUpdate" /></a> <strong>Windows Update</strong> &#8211; <a href="http://windowsupdate.microsoft.com/" target="_blank">Home Page</a><br />
Install <strong>All</strong> of the updates. Not just the critical ones. This may have to be run multiple times. Run it over again until it says <strong>0</strong> updates available. Non-critical updates are essential for improved performance, compatibility and enhanced features. They are all very safe to install.</p>
<p><img src="http://home.comcast.net/%7ESupportCD/Icons/WinXP.jpg" border="0" alt="Windows XP" /> <em>Notes</em> &#8211; Windows Update requires the following services be enabled in Windows XP:</p>
<p><strong>- Automatic Updates</strong> &#8211; Automatic<br />
<strong>- Background Intelligent Transfer Service</strong> &#8211; Manual or Automatic</p>
<p><em>Driver Notes</em> &#8211; If a Driver issue arises that Windows Update insists upon installing a Driver version older then one you have updated, do not install the one from Windows Update. Use the manufacturers latest version instead and just ignore that Windows Driver Update. With Drivers, the Hardware manufacturer is the one who is correct not Microsoft. Windows Update will sometimes show a Driver is outdated if it is not &#8220;Microsoft Certified&#8221;. It is quite ok to use non-certified drivers. <strong>Official</strong> non-certified driver versions will have been thoroughly tested by the component manufacturer.</p>
<p><em>Update</em> &#8211;  	 <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=fad44098-8b73-4e06-96d4-d1eb70eacb44&amp;DisplayLang=en" target="_blank">Microsoft Windows Journal Viewer</a> can sometimes conflict with Adobe Acrobat Reader when you open .PDF files, Error: &#8220;An installation package for the product Microsoft Windows Journal Viewer cannot be found.&#8221; If this is happening uninstall The Microsoft Windows Journal Viewer, go to &#8220;Start&#8221;, &#8220;Settings&#8221;, &#8220;Add or Remove Programs&#8221;. The Journal Viewer is only needed to read Journal files created on a Windows XP Tablet Edition PC. It is highly unlikely you will ever need to read these.</p>
<p><a href="http://support.microsoft.com/kb/157730" target="_blank"> <img src="http://home.comcast.net/%7ESupportCD/Icons/DirectX.jpg" border="0" alt="DirectX" /></a> <strong>DirectX</strong> &#8211; <a href="http://www.microsoft.com/downloads/Browse.aspx?displaylang=en&amp;categoryid=2" target="_blank">Download</a><br />
Windows Update will install the latest version of DirectX. It is still a good idea to check what version you are running and make sure you have the latest version of DirectX installed prior to installing any Drivers. Got to &#8220;Start&#8221;, &#8220;Run&#8221;, type in &#8220;Dxdiag&#8221; and select &#8220;OK&#8221;. Under the &#8220;System&#8221; tab, &#8220;DirectX Version&#8221; check that you have the <a href="http://en.wikipedia.org/wiki/DirectX#Release_history" target="_blank">latest version</a> that is available for Windows XP. 	 &#8211; <a href="http://support.microsoft.com/kb/157730" target="_blank">Source</a></p>
<p><em>Notes</em> &#8211; DirectX 10 is only available for Windows Vista.</p>
<p><a class="topOfPage" title="Go to the top of this page" href="http://home.comcast.net/%7ESupportCD/OptimizeXP.html#top">^ TOP</a></p>
<h1>Step 3 &#8211; Drivers</h1>
<p>Installing the latest Drivers improves system performance and application compatibility. Updated drivers include numerous bug fixes as well as system optimizations. It is recommended for optimal system stability to only use <strong>Official</strong> drivers and not Beta or Prerelease versions. Performance differences between driver versions including Beta or Prereleased drivers is negligible. The only time Beta or Prerelease drivers should be considered is when a serious application bug is fixed in the Beta or Prerelease version and the component manufacturer has not yet released the <strong>Official</strong> driver version that includes the bug fix.</p>
<p><a href="http://home.comcast.net/%7ESupportCD/DriverXP.html" target="_blank"> <img src="http://home.comcast.net/%7ESupportCD/Icons/Device_Manager.jpg" border="0" alt="Driver XP" /></a> <strong>Driver XP</strong> &#8211; <a href="http://home.comcast.net/%7ESupportCD/DriverXP.html" target="_blank">Home Page</a><br />
A Windows Driver Guide that includes component links and instructions.</p>
<p><em>Notes</em> &#8211; Windows Update will install very common driver updates, however these will not always be the latest versions and sometimes can even be an older version of one you have already updated, example: nVidia forceware drivers. It is perfectly safe to install the Windows Driver Updates but if you want the very best system performance you have to check for and install the latest drivers manually. If you are having trouble identifying your hardware use:</p>
<p><a href="http://www.cpuid.com/pcwizard.php#directions" target="_blank"> <img src="http://home.comcast.net/%7ESupportCD/Icons/PC_Wizard.jpg" border="0" alt="PC Wizard" /></a> <strong>PC Wizard</strong> &#8211; <a href="http://www.cpuid.com/pcwizard.php#directions" target="_blank">Download</a> &#8211; <a href="http://www.cpuid.com/pcwizard.php" target="_blank">Home Page</a><br />
An advanced system information utility designed for detection of hardware, analysis and benchmarking. Quickly identify components based on their model and manufacturer, allowing you to download and install the correct drivers.</p>
<p><a class="topOfPage" title="Go to the top of this page" href="http://home.comcast.net/%7ESupportCD/OptimizeXP.html#top">^ TOP</a></p>
<h1>Step 4 &#8211; Tweaks</h1>
<p><img src="http://home.comcast.net/%7ESupportCD/Icons/System.jpg" border="0" alt="System" /> <strong>1. Visual Effects</strong><br />
Default Windows XP visual settings may look nice but they slow down system responsiveness. Here is how to keep the &#8220;look&#8221; of Windows XP while losing the sluggish feel.</p>
<p><em>Instructions</em> &#8211; Go to &#8220;Start&#8221;, &#8220;Settings&#8221;, &#8220;Control Panel&#8221;, &#8220;System&#8221;, &#8220;Advanced&#8221; tab, in the &#8220;Performance&#8221; section select &#8220;Settings&#8221;. Leave only the following checked:</p>
<p><strong>√ Show shadows under menus</strong><br />
<strong>√ Show shadows under mouse pointer</strong><br />
<strong>√ Show translucent selection rectangle</strong><br />
<strong>√ Smooth edges of screen fonts</strong><br />
<strong>√ Use drop shadows for icons labels on the desktop</strong><br />
<strong>√ Use visual styles on windows and buttons</strong></p>
<p>Then select &#8220;Apply&#8221; and &#8220;OK&#8221;.  	 &#8211; <a href="http://www.microsoft.com/windowsxp/using/setup/personalize/performance.mspx" target="_blank">Source</a></p>
<p><em>ClearType</em> &#8211; If you have a Flat Panel Display (Notebook, LCD, Plasma) you will notice improved font display quality enabling ClearType over traditional forms of font smoothing or anti-aliasing. ClearType improves readability on color LCD displays with a digital interface, such as those in laptops and high-quality flat panel displays.</p>
<p><em>Instructions</em> &#8211; Go to &#8220;Start&#8221;, &#8220;Settings&#8221;, &#8220;Control Panel&#8221;, &#8220;Display&#8221;, &#8220;Appearance&#8221; Tab, &#8220;Effects&#8221; button, check &#8220;Use the following method to smooth edges of screen fonts&#8221;, select &#8220;ClearType&#8221;.</p>
<p><img src="http://home.comcast.net/%7ESupportCD/Icons/Paging_File.jpg" border="0" alt="Paging File" /> <strong>2. The Paging File</strong><br />
Windows XP by default uses a System managed paging file that works well and it is highly recommended to <strong>leave it alone</strong>.</p>
<p>&#8220;In modern operating systems, including Windows, application programs and many system processes always reference memory using virtual memory addresses which are automatically translated to real (<acronym title="Random Access Memory">RAM</acronym>) addresses by the hardware. Only core parts of the operating system kernel bypass this address translation and use real memory addresses directly. <strong>Virtual Memory is always in use, even when the memory required by all running processes does not exceed the amount of <acronym title="Random Access Memory">RAM</acronym> installed on the system.</strong> All processes (e.g. application executables) running under 32 bit Windows gets virtual memory addresses (a Virtual Address Space) going from 0 to 4,294,967,295 (2*32-1 = 4 GB), no matter how much <acronym title="Random Access Memory">RAM</acronym> is actually installed on the computer. In the default Windows OS configuration, 2 GB of this virtual address space are designated for each process&#8217; private use and the other 2 GB are shared between all processes and the operating system. Normally, applications (e.g. Notepad, Word, Excel, Acrobat Reader) use only a small fraction of the 2GB of private address space. The operating system only assigns <acronym title="Random Access Memory">RAM</acronym> page frames to virtual memory pages that are in use. <acronym title="Random Access Memory">RAM</acronym> is a limited resource, whereas virtual memory is, for most practical purposes, unlimited. There can be a large number of processes each with its own 2 GB of private virtual address space. When the memory in use by all the existing processes exceeds the amount of <acronym title="Random Access Memory">RAM</acronym> available, the operating system will move pages (4 KB pieces) of one or more virtual address spaces to the computer&#8217;s hard disk, thus freeing that <acronym title="Random Access Memory">RAM</acronym> frame for other uses. In Windows systems, these &#8220;paged out&#8221; pages are stored in one or more files called pagefile.sys in the root of a partition.&#8221; &#8211; <a href="http://support.microsoft.com/default.aspx?scid=kb;en-us;555223" target="_blank">Source</a></p>
<p><em>Default</em> &#8211; Windows XP will automatically set the paging file to the following size based on how much <acronym title="Random Access Memory">RAM</acronym> is in your system:</p>
<p><strong>- Initial size (<acronym title="Megabyte">MB</acronym>): 1.5 x</strong> the amount of <acronym title="Random Access Memory">RAM</acronym> in your system<br />
<strong>- Maximum size (<acronym title="Megabyte">MB</acronym>): 3.0 x</strong> the amount of <acronym title="Random Access Memory">RAM</acronym> in your system (<acronym title="paging file">PF</acronym> Size Limit = 4095 <acronym title="Megabyte">MB</acronym>)</p>
<p><em>Notes</em> &#8211; A properly configured paging file will not resize (increase) so long as the Initial size is set large enough and you have not run out of available <acronym title="Random Access Memory">RAM</acronym>. Allowing the paging file to resize is recommended for unforeseen memory intensive situations and will prevent &#8220;Out of Memory&#8221; error messages from occurring. Any resizing will reset to the default Initial size upon reboot and will not cause any permanent fragmentation of the paging file. Setting the Initial size too large has no negative impact on system performance except to waste disk space if it is not used. Since disk space is usually plentiful it is safer then setting it too small. All arguments about setting the paging file smaller are to conserve disk space and have nothing to do with performance. A permanent solution to this is to add more <acronym title="Random Access Memory">RAM</acronym> to your system. It is a good idea to have at least 1 <acronym title="Gigabyte">GB</acronym> to 2 <acronym title="Gigabyte">GB</acronym> of <acronym title="Random Access Memory">RAM</acronym> in a PC today. A simple test to determine if you need more <acronym title="Random Access Memory">RAM</acronym> is to use you PC for a whole day without rebooting, then look at the Task Manager (Ctrl-Alt-Delete), Performance tab. If the &#8220;Commit Charge &#8211; Peak&#8221; is ever higher then the &#8220;Physical Memory &#8211; Total&#8221; your system could benefit from adding more <acronym title="Random Access Memory">RAM</acronym>. When you change the amount of <acronym title="Random Access Memory">RAM</acronym> in your system with a System managed paging file, Windows XP will automatically adjust the paging file size for you.</p>
<p><em>Optimization</em> &#8211; &#8220;Moving the paging file to a separate physical Harddrive (not partition) from the boot partition will increase paging file performance. However, if you remove the paging file from the boot partition, Windows cannot create a dump file (Memory.dmp) in which to write debugging information in the event that a kernel mode Stop Error message occurs. The optimal solution is to create one paging file that is stored on the boot partition, and then create a second paging file on a separate physical Harddrive (not partition) Windows will use the paging file on the less frequently used partition over the paging file on the heavily used boot partition. Windows uses an internal algorithm to determine which paging file to use for virtual memory management.&#8221; &#8211; <a href="http://support.microsoft.com/?kbid=197379" target="_blank">Source</a></p>
<p><img src="http://home.comcast.net/%7ESupportCD/Icons/Indexing.jpg" border="0" alt="Indexing" /> <strong>3. Disable Indexing Service</strong><br />
The Indexing Service in Windows XP indexes your files presumably to shorten the time needed to search your hard drive if you are looking for a specific file or part of a phrase inside a file. However, the constant indexing of files actually slows down system performance by using a lot of pagefile space and CPU time. &#8211; <a href="http://support.microsoft.com/default.aspx?scid=kb;en-us;899869" target="_blank">Source</a></p>
<p><em>Instructions</em> &#8211; To disable the Indexing Service go into &#8220;My Computer&#8221;, right-click on all your hard drive partitions one at a time, left-click &#8220;Properties&#8221;. Uncheck &#8220;Allow Indexing Service to index this disk for fast file searching&#8221;. Select &#8220;Apply changes to subfolders and files&#8221;. If any files cannot be updated select &#8220;Ignore All&#8221;.</p>
<p><img src="http://home.comcast.net/%7ESupportCD/Icons/No_Sounds.jpg" border="0" alt="No Sounds" /> <strong>4. Disable Windows XP Sounds</strong><br />
Having sound effects set for common Windows XP tasks slows your system down. This affects startup and shutdown speeds the most.</p>
<p><em>Instructions</em> &#8211; To disable all Windows XP task sounds go to &#8220;Start&#8221;, &#8220;Settings&#8221;, &#8220;Control Panel&#8221;, &#8220;Sounds and Audio Devices&#8221;, select the &#8220;Sounds&#8221; tab, under &#8220;Sound Scheme&#8221; select &#8220;No Sounds&#8221;.</p>
<p><img src="http://home.comcast.net/%7ESupportCD/Icons/Add_Remove.jpg" border="0" alt="Add Remove" /> <strong>5. Uninstall Useless Windows Components</strong><br />
Windows XP installs some components by default that are not needed.</p>
<p><em>Instructions</em> &#8211; Go to &#8220;Start&#8221;, &#8220;Settings&#8221;, &#8220;Control Panel&#8221;, &#8220;Add or Remove Programs&#8221;, select &#8220;Add/Remove Windows Components&#8221;, uncheck:</p>
<p><strong>_ Indexing Service</strong><br />
<strong>_ MSN Explorer</strong> (If you use <acronym title="Microsoft Network">MSN</acronym> as your <acronym title="Internet Service Provider">ISP</acronym> leave &#8220;MSN Explorer&#8221; checked)</p>
<p>Then select &#8220;Next&#8221; and &#8220;Finished&#8221;.</p>
<p><img src="http://home.comcast.net/%7ESupportCD/Icons/Recycling_Bin.jpg" border="0" alt="Recycling Bin" /> <strong>6. Reduce Recycling Bin Drive Space Usage</strong><br />
In Windows XP the Maximum size of the Recycle Bin is set by default to 10% of your hard drive, when full, this can be a big waste of drive space. Reducing the Maximum size prevents excess space from being wasted. It is quite common to have hundreds of <acronym title="Megabyte">MB</acronym>s of deleted files in the Recycling Bin and it is never emptied.</p>
<p><em>Instructions</em> &#8211; To change the Recycling Bin Size, right-click on the &#8220;Recycle Bin&#8221;, left-click on &#8220;Properties&#8221;, select the &#8220;Global&#8221; tab, then &#8220;Use one setting for all drives&#8221;. Move the slider to &#8220;3%&#8221;.</p>
<p><img src="http://home.comcast.net/%7ESupportCD/Icons/System_Restore.jpg" border="0" alt="System Restore" /> <strong>7. Reduce System Restore Drive Space Usage</strong><br />
System Restore creates periodic snapshots of your critical system files (like the registry files, COM+ database, user profiles, and such) and stores them as a &#8220;restore point.&#8221; In case something goes wrong with your system you can revert back to a previous working state. The default size that System Restore can take up can be quite large.</p>
<p><em>Instructions</em> &#8211; Go to &#8220;Start&#8221;, &#8220;Settings&#8221;, &#8220;Control Panel&#8221;, &#8220;System&#8221;, &#8220;System Restore&#8221; tab, for each drive partition highlight it then select &#8220;Settings&#8221;, under &#8220;Drive Space Usage&#8221; adjust the slider so System Restore is only using roughly 5% or a minimum of 1000 <acronym title="Megabyte">MB</acronym> of disk space per partition and select &#8220;OK&#8221;.</p>
<p><img src="http://home.comcast.net/%7ESupportCD/Icons/Mouse.jpg" border="0" alt="Mouse" /> <strong>8. Increase the Mouse Pointer Speed</strong><br />
By default Windows sets the Mouse Pointer Speed to an average speed, which can slow down the time it takes to move the cursor around the screen. Increasing this will allow you use your computer quicker and more efficient with less mouse movement.</p>
<p><em>Instructions</em> &#8211; Go to &#8220;Start&#8221;, &#8220;Settings&#8221;, &#8220;Control Panel&#8221;, &#8220;Mouse&#8221;, &#8220;Pointer Options&#8221; tab, under &#8220;Motion&#8221; adjust the slider 1 to 5 steps closer to &#8220;Fast&#8221;. Only 1 to 3 steps is recommended. Then check &#8220;Enhance pointer precision&#8221; and select &#8220;OK&#8221;.</p>
<p><em>Notes</em> &#8211; This is a personal preference and should be decided by the user. The tab that the Motion setting will be under can change with third party mouse drivers. Novice Windows users or users with Motion Disabilities will not want to adjust this much, if at all. Cheap and worn out mice can give poor responsiveness, it is recommended to be using a precision optical mouse. Microsoft Optical Mice are highly recommended.</p>
<p><a href="http://home.comcast.net/%7Eoptimizexp/Files/Prefetcher_Fix.zip"> <img src="http://home.comcast.net/%7ESupportCD/Icons/Prefetcher.jpg" border="0" alt="Prefetcher" /></a> <strong>9. Prefetcher Fix</strong> &#8211; <a href="http://home.comcast.net/%7Eoptimizexp/Files/Prefetcher_Fix.zip">Download</a><br />
Prefetching is a new feature in Windows XP that dramatically improves initial application load times and Windows boot times automatically. The slower your system and the larger an application, the more Prefetching helps. Even high end systems benefit from prefetching with large, slow loading applications, such as large games. <strong>By default Prefetching is enabled in Windows XP and already configured optimally.</strong> However there is a lot of misinformation regarding this feature and bad &#8220;tweak&#8221; programs on the internet that can disable prefetching and cripple your application load times. Find out more in <a href="http://home.comcast.net/%7ESupportCD/XPMyths.html#Optimization">XP Myths</a>. Windows Prefetching requires that the Task Scheduler service be running and set to Automatic. The other Prefetcher settings have to be set in the Registry, this file will do this all for you. &#8211; <a href="http://msdn.microsoft.com/msdnmag/issues/01/12/XPKernel/" target="_blank">Source</a></p>
<p><em>Instructions</em> &#8211; Download, unzip and run the &#8220;Prefetcher Fix.reg&#8221; file and reboot. This will restore the Windows Prefetcher to it&#8217;s default and optimal state. It will also set the Task Scheduler Service to Automatic.</p>
<p>- <strong>Task Scheduler</strong> &#8211; Automatic</p>
<p>Then use Windows Explorer and look in the <strong>C:\WINDOWS\Prefetch</strong> folder. You should see a file name for any application you have started since Prefetching was enabled. Never clean this folder or disable Windows Prefetching with any &#8220;tweaks&#8221; as you will cripple your application load times and Windows boot times by as much as 100%. The Prefetch folder and layout.ini files are self-cleaning when it reaches 128 entries. No user intervention is ever necessary. Once you have confirmed it is running leave it alone. Anyone who claims otherwise does not understand how Windows XP Prefetching works.</p>
<p><a href="http://home.comcast.net/%7Eoptimizexp/Files/Disable_AVI_Previewing.zip"> <img src="http://home.comcast.net/%7ESupportCD/Icons/AVI.jpg" border="0" alt="AVI Registry Fix" /></a> <strong>10. Disable AVI Previewing</strong> &#8211; <a href="http://home.comcast.net/%7Eoptimizexp/Files/Disable_AVI_Previewing.zip">Download</a><br />
Opening a folder containing a large number of AVI files can open quite slowly because Windows has to open each AVI file and extract information from them. If you have a large collection, you can speedup XP&#8217;s folder access by disabling it from automatically extracting this info. This can also fix problems when trying to rename or move AVI files and you get an error message: &#8220;it is being used by another person or program. Close any programs that might be using the file and try again.&#8221;</p>
<p><em>Instructions</em> &#8211; Download, unzip and run the &#8220;Disable AVI Previewing.reg&#8221; file and reboot.</p>
<p><em>Notes</em> &#8211; You will no longer have the second page of properties in windows explorer displaying the AVI file information such as width, height and bitrate. Other software such as <a href="http://www.headbands.com/gspot/" target="_blank">GSpot</a> can provide you with this information.</p>
<p><a class="topOfPage" title="Go to the top of this page" href="http://home.comcast.net/%7ESupportCD/OptimizeXP.html#top">^ TOP</a></p>
<h1>Step 5 &#8211; Utilities</h1>
<p><a href="http://download.sysinternals.com/Files/Autoruns.zip"> <img src="http://home.comcast.net/%7ESupportCD/Icons/Autoruns.jpg" border="0" alt="Autoruns" /></a> <strong>Autoruns</strong> &#8211; <a href="http://download.sysinternals.com/Files/Autoruns.zip">Download</a> &#8211; <a href="http://www.microsoft.com/technet/sysinternals/ProcessesAndThreads/Autoruns.mspx" target="_blank">Home Page</a><br />
Utility to display and control startup applications. Disabling unnecessary startup applications improves boot up time and overall system performance.</p>
<p><em>Instructions</em> &#8211; Unzip and launch Autoruns.exe, wait until it says &#8220;Ready&#8221; in the bottom left corner, then select the &#8220;Logon&#8221; tab. Next select &#8220;Options&#8221;, check &#8220;Hide Microsoft Entries&#8221; and press the refresh button or press the &#8220;F5&#8243; key. The remaining items are third party applications. Uncheck all that are not needed, this will disable them from loading at Windows startup. AntiVirus and Firewall applications are necessary applications that should be running on startup. If you are unsure of what something is, highlight it, select &#8220;Entry&#8221; then &#8220;Google&#8221; to launch a search for more information regarding the highlighted application. You can permanently remove items by deleting them. Do not &#8220;Delete&#8221; anything unless you are 100% positive you do not need it. Disabled (Unchecked) items can be activated again by rerunning Autoruns, checking the item and restarting Windows.</p>
<p><em>Notes</em> &#8211; You can control the startup applications for separate user accounts by selecting &#8220;User&#8221; and the account you want to edit. This is a much more powerful tool then the built-in System Configuration Utility (msconfig).</p>
<p><a href="http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/chkdsk.mspx?mfr=true" target="_blank"> <img src="http://home.comcast.net/%7ESupportCD/Icons/Chkdsk.jpg" border="0" alt="Chkdsk" /></a> <strong>Chkdsk</strong> &#8211; <a href="http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/chkdsk.mspx?mfr=true" target="_blank">Home Page</a><br />
Built-in Windows file system repair utility.</p>
<p><em>Instructions</em> &#8211; Go to &#8220;Start&#8221;, &#8220;My Computer&#8221;, right-click on the &#8220;C:&#8221; drive, left-click &#8220;Properties&#8221;, select the &#8220;Tools&#8221; tab, click &#8220;Check Now&#8230;&#8221;, check &#8220;Automatically Fix File System Errors&#8221;, then click &#8220;Start&#8221;, &#8220;Yes&#8221; and Reboot. Repeat this for any other hard drive partitions in your system. Only the drive partition with Windows installed will require a reboot.</p>
<p><a href="http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/defrag_overview.mspx?mfr=true" target="_blank"> <img src="http://home.comcast.net/%7ESupportCD/Icons/Defrag.jpg" border="0" alt="Defrag" /></a> <strong>Disk Defragmenter</strong> &#8211; <a href="http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/defrag_overview.mspx?mfr=true" target="_blank">Home Page</a> &#8211; (<strong>Unnecessary if Diskeeper is installed</strong>)<br />
Built-in Windows defragmenter, a lite version of Diskeeper. File system performance is maximized when files are contiguous on the disk. This means that all of the data in each file would be located consecutively on the Hard Drive. Instead of fragmented into separate parts all over the disk surface, causing the Hard Drive to work harder (slower) to read and write your files. While &#8220;Disk Defragmenter&#8221; is better then nothing it does not fully optimize your hard drive performance, runs 300-500% slower, cannot be scheduled without a third party application and includes no advanced <a href="http://www.diskeeper.com/diskeeper/home/profeatures.asp?RId=778" target="_blank">features</a>. Since the built-in &#8220;Disk Defragmenter&#8221; is very I/O intensive your system is not usable while it is running. There are no Free Defragmenters that do a better job, in which case you have to purchase a Commercial Defragmenter such as <a href="http://www.diskeeper.com/diskeeper/home/diskeeper.asp?RId=778" target="_blank">Diskeeper</a>.</p>
<p><em>Instructions</em> &#8211; Double-click &#8220;My Computer&#8221;, right-click the local disk volume that you want to defragment, Example: Local Disk (C:), and then left-click &#8220;Properties&#8221;. On the &#8220;Tools&#8221; tab, select &#8220;Defragment Now&#8221;, then &#8220;Defragment&#8221;. The following service needs to be enabled:</p>
<p>- <strong>DCOM Server Process Launcher</strong> &#8211; Automatic</p>
<p><em>Alternate</em> &#8211; Go to &#8220;Start&#8221;, &#8220;Run&#8221;, type &#8220;Dfrg.msc&#8221;. Select the volume that you want to defragment, then select &#8220;Defragment&#8221;.</p>
<p>+ <a href="http://kevin.gearhart.com/startdefrag.exe"> <img src="http://home.comcast.net/%7ESupportCD/Icons/StartDefrag.jpg" border="0" alt="StartDefrag" /></a> <strong>StartDefrag</strong> &#8211; <a href="http://kevin.gearhart.com/startdefrag.exe">Download</a> &#8211; <a href="http://kevin.gearhart.com/startdefrag/index.htm" target="_blank">Home Page</a> &#8211; (<strong>Unnecessary if Diskeeper is installed</strong>)<br />
Automates the scheduling of the built-in Disk Defragmenter to run at a set time everyday or once a week.</p>
<p><em>Instructions</em> &#8211; Install and run. Select the &#8220;Configuration&#8221; tab, under &#8220;Scheduled Day&#8221; either select a specific day during the week or &#8220;Everyday&#8221;. Then under &#8220;Scheduled Hour&#8221; select a time when you will not be on the computer but the computer will be on. This is important since the built-in Disk Defragmenter will consume most of the system&#8217;s resources while running and will not be usable until it is finished. Finally select &#8220;Save Changes&#8221; and &#8220;Exit&#8221;.</p>
<p><em>Notes</em> &#8211; Do not use this with Diskeeper, which includes a much more advanced and efficient real-time scheduling option. If you install Diskeeper delete the StartDefrag scheduled task and uninstall StartDefrag. To delete the scheduled task, go to &#8220;Start&#8221;, &#8220;Programs&#8221;, &#8220;Accessories&#8221;, &#8220;System Tools&#8221;, &#8220;Scheduled Tasks&#8221; and delete the task. If it is the only scheduled task listed it will be called &#8220;AT1&#8243;.</p>
<p>+ <a href="http://download.sysinternals.com/Files/PageDefrag.zip"> <img src="http://home.comcast.net/%7ESupportCD/Icons/PageDefrag.jpg" border="0" alt="PageDefrag" /></a> <strong>PageDefrag</strong> &#8211; <a href="http://download.sysinternals.com/Files/PageDefrag.zip">Download</a> &#8211; <a href="http://www.microsoft.com/technet/sysinternals/utilities/PageDefrag.mspx" target="_blank">Home Page</a> &#8211; (<strong>Unnecessary if Diskeeper is installed</strong>)<br />
Defragment the paging file and the Registry. &#8220;One of the limitations of the Windows 2000/XP defragmentation interface is that it is not possible to defragment files that are open for exclusive access. Thus, standard defragmentation programs can neither show you how fragmented your paging files or Registry hives are, nor defragment them. Paging and Registry file fragmentation can be one of the leading causes of performance degradation related to file fragmentation in a system.&#8221;</p>
<p><em>Instructions</em> &#8211; Download, Run, Look at the &#8220;Fragments&#8221; column if any of the items is in more then one fragment select &#8220;Defrag at next Reboot&#8221;, than &#8220;Ok&#8221; and Reboot.</p>
<p><em>Notes</em> &#8211; If you readjust the paging file size, rerun PageDefrag, otherwise this only needs to be run once. On badly fragmented hard drives with a lot of files, PageDefrag may take a long time to run, be patient and let it finish.</p>
<p>read from : http://home.comcast.net/~SupportCD/OptimizeXP.html</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/aremacyber.wordpress.com/6/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/aremacyber.wordpress.com/6/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/aremacyber.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/aremacyber.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/aremacyber.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/aremacyber.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/aremacyber.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/aremacyber.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/aremacyber.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/aremacyber.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/aremacyber.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/aremacyber.wordpress.com/6/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aremacyber.wordpress.com&blog=3423363&post=6&subd=aremacyber&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://aremacyber.wordpress.com/2008/04/09/optimize-your-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a4a496b894d841765488a0507b7421bd?s=96&#38;d=identicon" medium="image">
			<media:title type="html">aremacyber</media:title>
		</media:content>

		<media:content url="http://home.comcast.net/%7ESupportCD/Icons/Malware.jpg" medium="image">
			<media:title type="html">Malware</media:title>
		</media:content>

		<media:content url="http://home.comcast.net/%7ESupportCD/Icons/SP2.jpg" medium="image">
			<media:title type="html">SP2</media:title>
		</media:content>

		<media:content url="http://home.comcast.net/%7ESupportCD/Icons/WinUpdate.jpg" medium="image">
			<media:title type="html">WinUpdate</media:title>
		</media:content>

		<media:content url="http://home.comcast.net/%7ESupportCD/Icons/WinXP.jpg" medium="image">
			<media:title type="html">Windows XP</media:title>
		</media:content>

		<media:content url="http://home.comcast.net/%7ESupportCD/Icons/DirectX.jpg" medium="image">
			<media:title type="html">DirectX</media:title>
		</media:content>

		<media:content url="http://home.comcast.net/%7ESupportCD/Icons/Device_Manager.jpg" medium="image">
			<media:title type="html">Driver XP</media:title>
		</media:content>

		<media:content url="http://home.comcast.net/%7ESupportCD/Icons/PC_Wizard.jpg" medium="image">
			<media:title type="html">PC Wizard</media:title>
		</media:content>

		<media:content url="http://home.comcast.net/%7ESupportCD/Icons/System.jpg" medium="image">
			<media:title type="html">System</media:title>
		</media:content>

		<media:content url="http://home.comcast.net/%7ESupportCD/Icons/Paging_File.jpg" medium="image">
			<media:title type="html">Paging File</media:title>
		</media:content>

		<media:content url="http://home.comcast.net/%7ESupportCD/Icons/Indexing.jpg" medium="image">
			<media:title type="html">Indexing</media:title>
		</media:content>

		<media:content url="http://home.comcast.net/%7ESupportCD/Icons/No_Sounds.jpg" medium="image">
			<media:title type="html">No Sounds</media:title>
		</media:content>

		<media:content url="http://home.comcast.net/%7ESupportCD/Icons/Add_Remove.jpg" medium="image">
			<media:title type="html">Add Remove</media:title>
		</media:content>

		<media:content url="http://home.comcast.net/%7ESupportCD/Icons/Recycling_Bin.jpg" medium="image">
			<media:title type="html">Recycling Bin</media:title>
		</media:content>

		<media:content url="http://home.comcast.net/%7ESupportCD/Icons/System_Restore.jpg" medium="image">
			<media:title type="html">System Restore</media:title>
		</media:content>

		<media:content url="http://home.comcast.net/%7ESupportCD/Icons/Mouse.jpg" medium="image">
			<media:title type="html">Mouse</media:title>
		</media:content>

		<media:content url="http://home.comcast.net/%7ESupportCD/Icons/Prefetcher.jpg" medium="image">
			<media:title type="html">Prefetcher</media:title>
		</media:content>

		<media:content url="http://home.comcast.net/%7ESupportCD/Icons/AVI.jpg" medium="image">
			<media:title type="html">AVI Registry Fix</media:title>
		</media:content>

		<media:content url="http://home.comcast.net/%7ESupportCD/Icons/Autoruns.jpg" medium="image">
			<media:title type="html">Autoruns</media:title>
		</media:content>

		<media:content url="http://home.comcast.net/%7ESupportCD/Icons/Chkdsk.jpg" medium="image">
			<media:title type="html">Chkdsk</media:title>
		</media:content>

		<media:content url="http://home.comcast.net/%7ESupportCD/Icons/Defrag.jpg" medium="image">
			<media:title type="html">Defrag</media:title>
		</media:content>

		<media:content url="http://home.comcast.net/%7ESupportCD/Icons/StartDefrag.jpg" medium="image">
			<media:title type="html">StartDefrag</media:title>
		</media:content>

		<media:content url="http://home.comcast.net/%7ESupportCD/Icons/PageDefrag.jpg" medium="image">
			<media:title type="html">PageDefrag</media:title>
		</media:content>
	</item>
		<item>
		<title>GUNUNG RINJANI NATIONAL PARK : One of the Best Treks in Southeast Asia</title>
		<link>http://aremacyber.wordpress.com/2008/04/09/gunung-rinjani-national-park-one-of-the-best-treks-in-southeast-asia/</link>
		<comments>http://aremacyber.wordpress.com/2008/04/09/gunung-rinjani-national-park-one-of-the-best-treks-in-southeast-asia/#comments</comments>
		<pubDate>Wed, 09 Apr 2008 02:34:18 +0000</pubDate>
		<dc:creator>aremacyber</dc:creator>
				<category><![CDATA[Tak Berkategori]]></category>

		<guid isPermaLink="false">http://aremacyber.wordpress.com/?p=5</guid>
		<description><![CDATA[










Gunung Rinjani National Park covers an area of 41,330 hectares on the northern part of Lombok. The peak of Gunung Rinjani reaching up to 3,726m dominates the landscape.
Gunung Rinjani National Park offers the beauty of the volcano, the Segara Anakan Crater Lake and the challenge of climbing the mountain. There are also guided village tours [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aremacyber.wordpress.com&blog=3423363&post=5&subd=aremacyber&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p align="justify">
<table style="float:right;" border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td align="center"><img style="width:294px;height:214px;" src="http://www.my-indonesia.info/imgdata/_cache/_big_paper-article3173-img4465_Rinjani01.gif" border="0" alt="" width="294" height="214" align="right" /></td>
</tr>
<tr>
<td style="font-family:Arial;font-style:normal;font-variant:normal;font-weight:normal;font-size:10px;line-height:1;color:gray;" align="center"></td>
</tr>
</tbody>
</table>
<p>Gunung Rinjani National Park covers an area of 41,330 hectares on the northern part of Lombok. The peak of Gunung Rinjani reaching up to 3,726m dominates the landscape.</p>
<p align="justify"><span style="font-size:x-small;">Gunung Rinjani National Park offers the beauty of the volcano, the Segara Anakan Crater Lake and the challenge of climbing the mountain. There are also guided village tours which provides a glimpse of local culture and the opportunity to meet the locals.</span></p>
<p align="justify"><span style="font-size:x-small;"><strong><span style="font-size:small;">How to Get There :</span></strong><br />
Senaru and Sembalun Lawang Villages are The two starting points for excursions into the park as well as for climbing Mount Rinjani. Senaru Village can be reached within three hours drive to the north from Mataram, while Sembalun Lawang Village is approximately a four hours drive to the east of Mataram.</span></p>
<table style="float:right;" border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td align="center"><img style="width:291px;height:209px;" src="http://www.my-indonesia.info/imgdata/_cache/_big_paper-article3173-img4466_Rinjani02.gif" border="0" alt="" width="291" height="209" align="right" /></td>
</tr>
<tr>
<td style="font-family:Arial;font-style:normal;font-variant:normal;font-weight:normal;font-size:10px;line-height:1;color:gray;" align="center"></td>
</tr>
</tbody>
</table>
<p align="justify"><span style="font-size:x-small;"><strong><span style="font-size:small;">The Best Season to Visit :<br />
</span></strong>August to December every year.</span></p>
<p><span style="font-size:x-small;"><strong><span style="font-size:small;">Contact :</span></strong><br />
Gunung Rinjani National Park Office<br />
Jl. Erlangga 88, Mataram<br />
Lombok &#8211; Nusa Tenggara Barat<br />
Ph. (0370) 627764<br />
Email: </span><a href="mailto:tngr@indo.net.id"><span style="font-size:x-small;">tngr@indo.net.id</span></a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/aremacyber.wordpress.com/5/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/aremacyber.wordpress.com/5/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/aremacyber.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/aremacyber.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/aremacyber.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/aremacyber.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/aremacyber.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/aremacyber.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/aremacyber.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/aremacyber.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/aremacyber.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/aremacyber.wordpress.com/5/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aremacyber.wordpress.com&blog=3423363&post=5&subd=aremacyber&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://aremacyber.wordpress.com/2008/04/09/gunung-rinjani-national-park-one-of-the-best-treks-in-southeast-asia/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a4a496b894d841765488a0507b7421bd?s=96&#38;d=identicon" medium="image">
			<media:title type="html">aremacyber</media:title>
		</media:content>

		<media:content url="http://www.my-indonesia.info/imgdata/_cache/_big_paper-article3173-img4465_Rinjani01.gif" medium="image" />

		<media:content url="http://www.my-indonesia.info/imgdata/_cache/_big_paper-article3173-img4466_Rinjani02.gif" medium="image" />
	</item>
		<item>
		<title>Optimise your network with squid proxy</title>
		<link>http://aremacyber.wordpress.com/2008/04/09/optimise-your-network-with-squid-proxy/</link>
		<comments>http://aremacyber.wordpress.com/2008/04/09/optimise-your-network-with-squid-proxy/#comments</comments>
		<pubDate>Wed, 09 Apr 2008 02:33:14 +0000</pubDate>
		<dc:creator>aremacyber</dc:creator>
				<category><![CDATA[Tak Berkategori]]></category>

		<guid isPermaLink="false">http://aremacyber.wordpress.com/?p=4</guid>
		<description><![CDATA[what is squid ??
Squid is a fully-featured HTTP/1.0 proxy which is almost (but not quite &#8211; we&#8217;re getting there!)   HTTP/1.1 compliant.  Squid offers a rich access control, authorization and logging environment   to develop web proxy and content serving applications

Getting Squid
Obtaining Squid is easy!  You have a number of choices:
Many [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aremacyber.wordpress.com&blog=3423363&post=4&subd=aremacyber&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>what is squid ??</p>
<p>Squid is a fully-featured HTTP/1.0 proxy which is almost (but not quite &#8211; we&#8217;re getting there!)   HTTP/1.1 compliant.  Squid offers a rich access control, authorization and logging environment   to develop web proxy and content serving applications</p>
<div id="colOne">
<h2>Getting Squid</h2>
<p>Obtaining Squid is easy!  You have a number of choices:</p>
<p>Many operating systems include Squid in their ports/packages system.  This is an easy way to get Squid up and running quickly, and a good way to keep up-to-date with new Squid versions.</p>
<p>You might also like to download an <a href="http://www.squid-cache.org/Versions/">official source code release</a> from here or one of the <a href="http://www.squid-cache.org/Download/mirrors.dyn">mirror sites</a>.  This allows you to customize your Squid installation when you compile it.  After downloading, refer to <a href="http://wiki.squid-cache.org/SquidFaq/CompilingSquid">Compiling Squid</a> for assistance with compiling the source code.</p>
<p>In some cases, you may want (or be forced) to download a <a href="http://www.squid-cache.org/Download/binaries.dyn">binary package of Squid</a>.  They are available for a variety of platforms, including Windows.</p>
<p>Finally, if you are a developer, or want to closely track the source code, feel free to get it from the <a href="http://wiki.squid-cache.org/CvsInstructions">Squid CVS server</a>.</p>
</div>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/aremacyber.wordpress.com/4/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/aremacyber.wordpress.com/4/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/aremacyber.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/aremacyber.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/aremacyber.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/aremacyber.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/aremacyber.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/aremacyber.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/aremacyber.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/aremacyber.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/aremacyber.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/aremacyber.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aremacyber.wordpress.com&blog=3423363&post=4&subd=aremacyber&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://aremacyber.wordpress.com/2008/04/09/optimise-your-network-with-squid-proxy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a4a496b894d841765488a0507b7421bd?s=96&#38;d=identicon" medium="image">
			<media:title type="html">aremacyber</media:title>
		</media:content>
	</item>
	</channel>
</rss>