<?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>Tuts4Tech &#187; Gamerx287</title>
	<atom:link href="http://tuts4tech.net/author/gamerx287/feed/" rel="self" type="application/rss+xml" />
	<link>http://tuts4tech.net</link>
	<description>Tech Tutorials</description>
	<lastBuildDate>Tue, 04 May 2010 20:35:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Setting Local Time on a Linux Server</title>
		<link>http://tuts4tech.net/2009/08/02/setting-local-time-on-a-linux-server/</link>
		<comments>http://tuts4tech.net/2009/08/02/setting-local-time-on-a-linux-server/#comments</comments>
		<pubDate>Sun, 02 Aug 2009 04:55:11 +0000</pubDate>
		<dc:creator>Gamerx287</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Local Time]]></category>
		<category><![CDATA[Servers]]></category>

		<guid isPermaLink="false">http://tuts4tech.net/?p=515</guid>
		<description><![CDATA[I am going to show you a way that I use to set the local time on my Linux servers. It really isn't that hard either. First, you should get NTP installed. Next, just in case, make a backup of your already configured time. Then we start to go into the process of getting the [...]]]></description>
			<content:encoded><![CDATA[<p>I am going to show you a way that I use to set the local time on my Linux servers. It really isn't that hard either.</p>
<p>First, you should get NTP installed.</p>
<pre class="brush: bash; title: ; notranslate">apt-get install ntp ntpdate</pre>
<p>Next, just in case, make a backup of your already configured time.</p>
<pre class="brush: bash; title: ; notranslate">mv /etc/localtime /etc/localtime-backup</pre>
<p>Then we start to go into the process of getting the new local time file. We do this by going to /usr/share/zoneinfo.</p>
<pre class="brush: bash; title: ; notranslate">cd /usr/share/zoneinfo</pre>
<p>Once you reach this folder, there should be a list of folders of different countries. Go to the directory that you are located in. In this case, I am going to choose America.</p>
<p>Once you are in the folder of your country, there should be a bunch of cities that are in your country. Pick the closest city in your timezone. For example, I would choose Chicago. Then run the following command, changing, of course what needs to be changed to fit your needs.</p>
<pre class="brush: bash; title: ; notranslate">ln -sf /usr/share/zoneinfo/America/Chicago /etc/localtime</pre>
<p>Once you execute that command, the local time should be all set! To see the time on the machine, simply type "date" in the command line.</p>
<p>I hope this tutorial can be useful for you!</p>
]]></content:encoded>
			<wfw:commentRss>http://tuts4tech.net/2009/08/02/setting-local-time-on-a-linux-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Compile a UnrealIRCd Module</title>
		<link>http://tuts4tech.net/2009/07/04/how-to-compile-a-unrealircd-module/</link>
		<comments>http://tuts4tech.net/2009/07/04/how-to-compile-a-unrealircd-module/#comments</comments>
		<pubDate>Sat, 04 Jul 2009 19:43:37 +0000</pubDate>
		<dc:creator>Gamerx287</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[anope]]></category>
		<category><![CDATA[chat]]></category>
		<category><![CDATA[IRCD]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[room]]></category>
		<category><![CDATA[services]]></category>
		<category><![CDATA[unrealircd]]></category>

		<guid isPermaLink="false">http://tuts4tech.net/?p=432</guid>
		<description><![CDATA[This tutorial will show you how to compile in a module for UnrealIRCd. You can find the official list of modules here. First step is to login to the server via SSH and go to the folder where UnrealIRCd is. Then you must go to the "src/modules" directory. Then, of course, you must download the [...]]]></description>
			<content:encoded><![CDATA[<p>This tutorial will show you how to compile in a module for UnrealIRCd.</p>
<p>You can find the official list of modules <a href="http://www.unrealircd.com/modules.php">here</a>.</p>
<p>First step is to login to the server via SSH and go to the folder where UnrealIRCd is. Then you must go to the "src/modules" directory.</p>
<pre class="brush: bash; title: ; notranslate">cd src/modules</pre>
<p>Then, of course, you must download the file into the folder.</p>
<pre class="brush: bash; title: ; notranslate">wget modulelinkhere</pre>
<p>Usually, it will download a .tar.gz file, which you can extract by doing:</p>
<pre class="brush: bash; title: ; notranslate">tar xfz filename.tar.gz</pre>
<p><span id="more-432"></span><br />
Sometimes the actual module file (in the format of modname.c) is in a folder, which you can easily get into the "src/modules" folder by moving it.</p>
<pre class="brush: bash; title: ; notranslate">cd ModnameFolder
mv modname.c ../</pre>
<p>If the .tar.gz opens as just a module file and not a folder, you can ignore the previous step.</p>
<p>The next step is to go back to the main UnrealIRCd folder</p>
<pre class="brush: bash; title: ; notranslate">cd ../../</pre>
<p>To compile the module run the following:</p>
<pre class="brush: bash; title: ; notranslate">make custommodule MODULEFILE=modulename</pre>
<p>Then after that is done, do the final step of compiling:</p>
<pre class="brush: bash; title: ; notranslate">make install</pre>
<p>But before you start anything you must edit the unrealircd.conf</p>
<pre class="brush: bash; title: ; notranslate">nano unrealircd.conf</pre>
<p>There is a part close to the top that has something like this:</p>
<pre class="brush: plain; title: ; notranslate">loadmodule &quot;src/modules/commands.so&quot;;
loadmodule &quot;src/modules/cloak.so&quot;;</pre>
<p>Under the last loadmodule, you put your newly compiled module in there.</p>
<pre class="brush: plain; title: ; notranslate">loadmodule &quot;src/modules/moulefile.so&quot;;</pre>
<p>After that, your all done! All you have to do is rehash Unreal:</p>
<pre class="brush: bash; title: ; notranslate">./unreal rehash</pre>
]]></content:encoded>
			<wfw:commentRss>http://tuts4tech.net/2009/07/04/how-to-compile-a-unrealircd-module/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Setup an Email in Apple Mail</title>
		<link>http://tuts4tech.net/2009/06/21/how-to-setup-an-email-in-apple-mail/</link>
		<comments>http://tuts4tech.net/2009/06/21/how-to-setup-an-email-in-apple-mail/#comments</comments>
		<pubDate>Sun, 21 Jun 2009 21:45:51 +0000</pubDate>
		<dc:creator>Gamerx287</dc:creator>
				<category><![CDATA[OSX]]></category>
		<category><![CDATA[apple mail]]></category>
		<category><![CDATA[configure]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[gmail]]></category>
		<category><![CDATA[imap]]></category>
		<category><![CDATA[mail]]></category>
		<category><![CDATA[pop]]></category>
		<category><![CDATA[smtp]]></category>

		<guid isPermaLink="false">http://tuts4tech.net/?p=338</guid>
		<description><![CDATA[If any of you happen to use a Mac and want to get your email account setup via Apple Mail rather than go the website and check it from there, this is the tutorial for you. First step, of course, is to open Apple Mail. Then go to the menu bar at the top and [...]]]></description>
			<content:encoded><![CDATA[<p>If any of you happen to use a Mac and want to get your email account setup via Apple Mail rather than go the website and check it from there, this is the tutorial for you.</p>
<ol>
<li>First step, of course, is to open Apple Mail.</li>
<li>Then go to the menu bar at the top and click on Mail, then Preferences.<br />A window, similar to the one below, should show up.<br />
<img src="http://tuts4tech.net/wp-content/uploads/2009/06/appleone.jpg" alt="appleone" title="appleone" width="500" height="514" class="aligncenter size-full wp-image-342" /></li>
<p></p>
<li>Then click on the + icon in the bottom left corner to begin making your account.</li>
<li>It should then come up with a window, like the one below. Put in your name, then email address and the password you use to get in your email, then press Continue.<br />
<img src="http://tuts4tech.net/wp-content/uploads/2009/06/appletwo.jpg" alt="appletwo" title="appletwo" width="500" height="364" class="aligncenter size-full wp-image-345" /></li>
<p>
<span id="more-338"></span></p>
<li>The next window that comes up should look like the one below. First you choose which type of server you are going to be using. Depending on what type of email service you are using, you are going to choose differently. Mainly, if you are using AOL or Yahoo, it will be POP. If you are in a business place, they might use an Exchange server. For description, just put what the email is. Now for the Incoming Mail Server Address. Depending on which service you use, it will be different. Usually it is pop.youremailservice.com. Then at the bottom put in your username and password you use to access your email usually.<br />
<img src="http://tuts4tech.net/wp-content/uploads/2009/06/applethree.jpg" alt="applethree" title="applethree" width="500" height="359" class="aligncenter size-full wp-image-344" /></li>
<p></p>
<li>The next window that pops up should look similar to the one below. For the description (again) just put the email address in there. For outgoing mail server (again) will differ as to what service you are using. Usually it is smtp.youremailservice.com. Now at the bottom, depending on which service you use, you may have to put a username and password or you may not. More information what information you need to put in these boxes can be found on your email services website.<br />
<img src="http://tuts4tech.net/wp-content/uploads/2009/06/applefour.jpg" alt="applefour" title="applefour" width="500" height="366" class="aligncenter size-full wp-image-341" /></li>
<p></p>
<li>The next box you may or may not get. It is a box about SSL support. It looks like the one below. If you do get this box, you can just leave it blank and move on.<br />
<img src="http://tuts4tech.net/wp-content/uploads/2009/06/applefour.jpg" alt="applefour" title="applefour" width="500" height="366" class="aligncenter size-full wp-image-341" /></li>
<p></p>
<li>The next window is the last step. It basically gives you a summary of all the information you just put in to verify you did it all correctly.<br />
<img src="http://tuts4tech.net/wp-content/uploads/2009/06/applesix.jpg" alt="applesix" title="applesix" width="500" height="361" class="aligncenter size-full wp-image-343" /></li>
</ol>
<p>After you hit create, your all set! I hope this tutorial helped you out. If you would like to request any other tutorials you want me, gamex287, to do, email me at <a href="mailto:gamerx@tuts4tech.net">gamerx@tuts4tech.net</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://tuts4tech.net/2009/06/21/how-to-setup-an-email-in-apple-mail/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Install WordPress (From Command line)</title>
		<link>http://tuts4tech.net/2009/06/19/how-to-install-wordpress/</link>
		<comments>http://tuts4tech.net/2009/06/19/how-to-install-wordpress/#comments</comments>
		<pubDate>Fri, 19 Jun 2009 02:23:14 +0000</pubDate>
		<dc:creator>Gamerx287</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[ssh]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://tuts4tech.net/?p=326</guid>
		<description><![CDATA[Okay, this tutorial will show you how to very easily install WordPress on your own server from the command line. First step is to make a MySQL database, user and permissions for that user. Secondly, you go to the directory that you want to put WordPress in and get the files: The next step is [...]]]></description>
			<content:encoded><![CDATA[<p>Okay, this tutorial will show you how to very easily install WordPress on your own server from the command line.</p>
<p>First step is to make a MySQL database, user and permissions for that user.</p>
<p>Secondly, you go to the directory that you want to put WordPress in and get the files:<br />

<pre class="brush: bash; title: ; notranslate">wget http://www.wordpress.org/latest.zip
unzip wordpress-*.zip
cd wordpress
mv * ../
rm -R wordpress</pre>
<p>
The next step is to edit the wp-config-sample.php file (using your favorite editor such as nano, vi, etc.) and putting in your MySQL info for the WordPress database.<br />

<pre class="brush: plain; title: ; notranslate">nano wp-config-sample.php</pre>
<p>
Then change the following</p>
<pre class="brush: php; title: ; notranslate">define('DB_NAME', 'YOUR-DATABASE-NAME-GOES-HERE');
define('DB_USER', 'YOUR-DATABASE-USER');
define('DB_PASSWORD', 'YOUR-DATABASE-PASSWORD');</pre>
<p></p>
<p>You then have to rename the wp-config-sample.php file to wp-config.php</p>
<pre class="brush: bash; title: ; notranslate">mv wp-config-sample.php wp-config.php</pre>
<p>The final step is to go to the website you are installing WordPress on and fill out the information and it will install on the MySQL Database. It will then give you a login name and password and you can go from there.</p>
<p>I hope you can put this tutorial to use by using WordPress for your site.</p>
]]></content:encoded>
			<wfw:commentRss>http://tuts4tech.net/2009/06/19/how-to-install-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

