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

<channel>
	<title>Webaholics &#187; Computing</title>
	<atom:link href="http://www.webaholics.in/category/computing/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.webaholics.in</link>
	<description>&#039;An Internet Addiction&#039; By Lokapriya</description>
	<lastBuildDate>Fri, 09 Sep 2011 05:30:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>SEO Keyword Research Basics &#8211; Video</title>
		<link>http://www.webaholics.in/2009/12/12/seo-keyword-research-basics-video/</link>
		<comments>http://www.webaholics.in/2009/12/12/seo-keyword-research-basics-video/#comments</comments>
		<pubDate>Sat, 12 Dec 2009 06:06:36 +0000</pubDate>
		<dc:creator>Lokapriya</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[keyword]]></category>
		<category><![CDATA[optimize]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[site]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[Youtube]]></category>

		<guid isPermaLink="false">http://www.webaholics.in/?p=150</guid>
		<description><![CDATA[Tips on how to do keyword research for search engine optimization to help ensure your site ranks well in search engines like Google.]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><p>Tips on how to do keyword research for search engine optimization to help ensure your site ranks well in search engines like Google.</p>
<p style="text-align: center;"><object width="425" height="350"><param name="movie" value="8v7lsJzmFIs"></param><param name="wmode" value="transparent" ></param><embed src="http://www.youtube.com/v/8v7lsJzmFIs" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object></p>
<div class="shr-publisher-150"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic --><img src="http://www.webaholics.in/?ak_action=api_record_view&id=150&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.webaholics.in/2009/12/12/seo-keyword-research-basics-video/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux Training for New Linux Users</title>
		<link>http://www.webaholics.in/2009/12/12/linux-training-for-new-linux-users/</link>
		<comments>http://www.webaholics.in/2009/12/12/linux-training-for-new-linux-users/#comments</comments>
		<pubDate>Sat, 12 Dec 2009 05:39:56 +0000</pubDate>
		<dc:creator>Lokapriya</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[command]]></category>
		<category><![CDATA[GUI]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[training]]></category>
		<category><![CDATA[user]]></category>
		<category><![CDATA[utility]]></category>
		<category><![CDATA[wildcard]]></category>

		<guid isPermaLink="false">http://www.webaholics.in/?p=141</guid>
		<description><![CDATA[Linux GUI utilities provide an easy “point-and-click” method of doing Linux administration tasks, but they are time-consuming and awkward to use. You can run a simple Linux command to do the equivalent task in a fraction of the time it would take to use a Linux GUI utility. When you get Linux training, be sure [...]]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><p style="text-align: justify;">Linux GUI utilities provide an easy “point-and-click” method of doing Linux administration tasks, but they are time-consuming and awkward to use. You can run a simple Linux command to do the equivalent task in a fraction of the time it would take to use a Linux GUI utility.</p>
<p style="text-align: justify;">When you get Linux training, be sure that it is focused on how to use Linux commands. Also, if you are interested in getting Linux certification, you need to know how to use Linux commands to be able to pass, not Linux GUI utilities.</p>
<p style="text-align: justify;"><strong>Linux Tips &#8211; How to Use Linux “Patterns” (Linux Wildcard characters)</strong></p>
<p style="text-align: justify;">Some Linux documentation uses the term “pattern” to refer to Linux wildcard characters.</p>
<p style="text-align: justify;">Wildcard characters are used in a “pattern” to cause a Linux command to work on multiple items, such as multiple directories and files in the Linux file system.</p>
<p style="text-align: justify;">The two Linux wildcard characters are the * (asterisk) and ? (question mark).</p>
<p style="text-align: justify;">Using an * (asterisk) with a Linux Command</p>
<p style="text-align: justify;">An * (asterisk) is used in a pattern to represent “all” characters of an item (directory or file).</p>
<p style="text-align: justify;">The Linux command below shows an example of the using the cp (copy) command to copy all (because of the * without any other letters or numbers) files in the current directory into the directory named memos.</p>
<p style="text-align: justify;">]# cp * memos</p>
<p style="text-align: justify;">Linux Tips: Keep in mind that Linux commands are “case sensitive”. Always type the letters in upper or lower case, as shown.</p>
<p style="text-align: justify;">Linux Tips: Also, be sure to use spaces where they are shown. For example, in the Linux command above, you need a space (just a single space) between cp and the * and you need a single space between the * and memos.</p>
<p style="text-align: justify;">The * (Linux wildcard character) can be combined with one or more letters at the front of it or after it.</p>
<p style="text-align: justify;">The following Linux command is an example of the using the cp (copy) command to copy all files in the current directory beginning with the letter r into the directory named memos.</p>
<p style="text-align: justify;">]# cp r* reports</p>
<p style="text-align: justify;">The Linux command below copies all files ending in “sxw” into the directory named weekly.</p>
<p style="text-align: justify;">]# cp *.sxw weekly</p>
<p style="text-align: justify;">The next Linux command copies all files containing “mem” (anywhere in the file name) into the directory named monthly.</p>
<p style="text-align: justify;">]# cp *mem* monthly</p>
<p style="text-align: justify;">Using a ? (question mark) with a Linux Command</p>
<p style="text-align: justify;">The ? (question mark) is used in a pattern to represent a single character.</p>
<p style="text-align: justify;">The Linux command below shows an example of the using the mv (move) command to move files that have a single character and end in “cfg” into the directory named june.</p>
<p style="text-align: justify;">]# mv ?.cfg june</p>
<p style="text-align: justify;">The following Linux command moves all files beginning with “month”, and having two characters after “month”, and ending in “sxw”, into the folder named years.</p>
<p style="text-align: justify;">]# mv month??.sxw years</p>
<p style="text-align: justify;">To learn how to use Linux commands the easy way, you can watch Linux video tutorials. When you work with Linux videos, you can actually see Linux commands being run and hear a detailed description of why you need to run a certain Linux command.</p>
<p style="text-align: justify;">Another benefit is that you can also see the output of the Linux command and hear a description of what the output means.</p>
<p style="text-align: justify;">After seeing how to use Linux commands, you can run them yourself &#8211; to get practical Linux training.</p>
<p style="text-align: justify;"> </p>
<div class="shr-publisher-141"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic --><img src="http://www.webaholics.in/?ak_action=api_record_view&id=141&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.webaholics.in/2009/12/12/linux-training-for-new-linux-users/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Speed up your Windows 2000/XP system</title>
		<link>http://www.webaholics.in/2009/11/19/speed-up-your-windows-2000xp-system/</link>
		<comments>http://www.webaholics.in/2009/11/19/speed-up-your-windows-2000xp-system/#comments</comments>
		<pubDate>Thu, 19 Nov 2009 05:59:33 +0000</pubDate>
		<dc:creator>Lokapriya</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[client]]></category>
		<category><![CDATA[DHCP]]></category>
		<category><![CDATA[DNS]]></category>
		<category><![CDATA[RAM]]></category>
		<category><![CDATA[registry]]></category>
		<category><![CDATA[System]]></category>
		<category><![CDATA[task]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows XP]]></category>
		<category><![CDATA[www]]></category>

		<guid isPermaLink="false">http://www.webaholics.in/?p=103</guid>
		<description><![CDATA[You can improve performance of your Windows 2000/XP and reclaim memory by simply disabling the services that is also known as &#8220;System Services&#8221; you don&#8217;t need which Windows 2000 or XP automatically provide by default. What Are System Services in the 1st place System services are actually small helper programs that provide support for other [...]]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><p style="text-align: justify;">You can improve performance of your Windows 2000/XP and reclaim memory by simply disabling the services that is also known as &#8220;System Services&#8221; you don&#8217;t need which Windows 2000 or XP automatically provide by default.</p>
<p style="text-align: justify;"><strong>What Are System Services in the 1st place</strong><br />
System services are actually small helper programs that provide support for other larger programs in Windows 2000. Many of the services are set up to run automatically each time you start Windows 2000. However, if you&#8217;re not using the larger programs that these services are designed to support, these services are simply wasting RAM that could be put to better use by your applications. While the word &#8220;Disable&#8221; is used here to describe the idea that you&#8217;ll remove these services from memory, what you&#8217;ll really be doing is changing the startup setting from Automatic to Manual. When you do, the services won&#8217;t automatically start each time you launch Windows 2000 Professional. However, Windows 2000 will be able to manually start the services if they&#8217;re needed. That way you won&#8217;t be unnecessarily wasting RAM, but you won&#8217;t be crippling your system either. Note: If you&#8217;re running Windows 2000 Professional on a corporate network, you may not be able to adjust system services. Regardless of whether you can or not, you should check with your system administrator before attempting the make these changes.</p>
<p style="text-align: justify;">Changing the startup type of a service from Automatic to Manual is a relatively simple operation. To begin, open the Control Panel, open the Administrative Tools folder, and then double click the Services tool. When you see the Services window, set the View to Detail if it isn&#8217;t already. Then click the Startup Type column header to sort the services by Startup Type. When you do, all the Services that start automatically will appear at the top of the list.</p>
<p style="text-align: justify;">As you scan through the list of services on your system whose Startup Type setting is set to Automatic, look for the services in listed in the Table below. These are some of the services are good candidates to be set to a Manual Startup Type.</p>
<p style="text-align: justify;"><strong>Examples of services that can be safely changed to Manual :-</strong></p>
<p style="text-align: justify;">DHCP Client &#8212; You&#8217;re not connecting to a specific DHCP server on your local network</p>
<p style="text-align: justify;">Distributed Link Tracking Client &#8212; You&#8217;re not connected to a Windows 2000 domain</p>
<p style="text-align: justify;">DNS Client &#8212; You&#8217;re not connecting to a specific DNS server on your local network</p>
<p style="text-align: justify;">FTP Publishing Service &#8212; You don&#8217;t need your system to act as an FTP server</p>
<p style="text-align: justify;">IIS Admin Service &#8212; You don&#8217;t need your system to act as an WWW server</p>
<p style="text-align: justify;">IPSEC Policy Agent &#8212; You&#8217;re not connected to a Windows 2000 domain</p>
<p style="text-align: justify;">Messenger &#8212; You&#8217;re not connected to a Windows 2000 domain</p>
<p style="text-align: justify;">Remote Registry Service &#8212; You don&#8217;t remotely access the Registry of other systems on your local network</p>
<p style="text-align: justify;">RIP Service &#8212; You don&#8217;t need your system to act as a router</p>
<p style="text-align: justify;">Run As Service &#8212; You don&#8217;t use any applications that run as an alias</p>
<p style="text-align: justify;"><strong>World Wide Web Publishing Service</strong><br />
You don&#8217;t need your system to act as an WWW server<br />
If you find a match and think that your system doesn&#8217;t need that particular service, right-click on the service and choose the Properties command from the shortcut menu. When you see the Properties dialog box for that service, click the Startup Type drop down list and select Manual. Then click OK. As you change the Startup Type for any service, take note of the service&#8217;s name. That way you&#8217;ll have a record of which services you changed and can change them back if you need to, as I&#8217;ll explain in a moment.</p>
<p style="text-align: justify;"><strong>Using the Windows Task Manager</strong><br />
<em>Trick :</em> To determine the amount of RAM you&#8217;ll regain by disabling unnecessary system services, use the Windows Task Manager. Here&#8217;s how: Before you disable any system services, reboot your system and don&#8217;t launch any applications. If you have applications that automatically load when you start Windows, hold down the [Shift] key to bypass the Startup folder. Then, right click on the task bar and select Task Manager from the shortcut menu. When you see the Windows Task Manager dialog box, select the Performance tab. Now take note of the Available value in the Physical Memory panel. After you disable those system services you deem unnecessary, reboot your system in the same manner and compare the Available value in the Physical Memory panel to the one that you noted earlier.</p>
<p style="text-align: justify;"><strong>Final thoughts</strong><br />
Keep in mind that you may not find all the services listed in the Table set to Automatic on your system. In fact, you might not even see some of the services listed present on your system. If that&#8217;s the case, don&#8217;t worry about it. Each Windows 2000/XP installation is unique depending on the system and installed software, and different sets of services may be installed and set to start automatically.</p>
<p style="text-align: justify;">On the other hand, you may find services other than those listed in Table set to Automatic that you may think are unnecessary. If so, you can find out what each service does by hovering your mouse pointer over the service&#8217;s description. When you do, a tool tip window will pop up and display the entire description of the service. You can then better determine if the service is unnecessary. Remember, by changing the Startup Type to Manual, Windows 2000 can still start the service if it&#8217;s needed. If you decide to experiment with changing the Startup Types of certain services, you can monitor the services over time by launching the Services utility and checking the list of running services. If you consistently find one of the services you set to Manual running, you may decide to change the Startup Type back to Automatic.</p>
<p style="text-align: justify;"> </p>
<div class="shr-publisher-103"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic --><img src="http://www.webaholics.in/?ak_action=api_record_view&id=103&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.webaholics.in/2009/11/19/speed-up-your-windows-2000xp-system/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

