<?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; Misc</title>
	<atom:link href="http://tuts4tech.net/category/misc/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>How to spoof your speedtest.net results</title>
		<link>http://tuts4tech.net/2010/04/30/how-to-spoof-your-speedtest-net-results/</link>
		<comments>http://tuts4tech.net/2010/04/30/how-to-spoof-your-speedtest-net-results/#comments</comments>
		<pubDate>Fri, 30 Apr 2010 11:19:53 +0000</pubDate>
		<dc:creator>Duffy</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Misc]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[100mb]]></category>
		<category><![CDATA[fake]]></category>
		<category><![CDATA[fast]]></category>
		<category><![CDATA[fiber]]></category>
		<category><![CDATA[high]]></category>
		<category><![CDATA[httpd]]></category>
		<category><![CDATA[mini]]></category>
		<category><![CDATA[networking]]></category>
		<category><![CDATA[results]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[speeds]]></category>
		<category><![CDATA[speedtest]]></category>
		<category><![CDATA[spoof]]></category>

		<guid isPermaLink="false">http://tuts4tech.net/?p=698</guid>
		<description><![CDATA[In this tutorial we will be showing you how to spoof your speedtest.net results. You will require a httpd server to do this, in this tutorial I used lighttpd running on debian. To install lighttpd on debian just simply run and edit your php.ini to change cgi.force_redirect to 0 Come down and you'll find ;cgi.force_redirect [...]]]></description>
			<content:encoded><![CDATA[<p>In this tutorial we will be showing you how to spoof your speedtest.net results. You will require a httpd server to do this, in this tutorial I used lighttpd running on debian.</p>
<p><object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,115,0' width='500' height='345'><param name='movie' value='http://screenr.com/Content/assets/screenr_1116090935.swf' ></param><param name='flashvars' value='i=66454' ></param><param name='allowFullScreen' value='true' ></param><embed src='http://screenr.com/Content/assets/screenr_1116090935.swf' flashvars='i=66454' allowFullScreen='true' width='500' height='345' pluginspage='http://www.macromedia.com/go/getflashplayer' ></embed></object></p>
<p>To install lighttpd on debian just simply run</p>
<pre class="brush: plain; title: ; notranslate">apt-get install lighttpd php5-cgi php5-ldap php5-mhash</pre>
<p>and edit your php.ini to change cgi.force_redirect to 0</p>
<pre class="brush: plain; title: ; notranslate">nano /etc/php5/cgi/php.ini</pre>
<p>Come down and you'll find ;cgi.force_redirect = 1 and change it to cgi.force_redirect = 0<br />
Now we need to edit lighttpd.conf</p>
<pre class="brush: plain; title: ; notranslate">nano /etc/lighttpd/lighttpd.conf</pre>
<p>Add the following lines</p>
<pre class="brush: plain; title: ; notranslate">fastcgi.server = ( &quot;.php&quot; =&gt;
                        (
                                (
                                        &quot;bin-path&quot; =&gt; &quot;/usr/bin/php-cgi&quot;,
                                        &quot;socket&quot; =&gt; &quot;/tmp/php.socket&quot;,
                                        &quot;max-procs&quot; =&gt; 20,
                                        &quot;bin-environment&quot; =&gt;
                                        (
                                                &quot;PHP_FCGI_CHILDREN&quot; =&gt; &quot;2&quot;,
                                                &quot;PHP_FCGI_MAX_REQUESTS&quot; =&gt; &quot;10000&quot;
                                        ),

                                )
                        ),
                    &quot;.phps&quot; =&gt;
                        (
                                (
                                        &quot;bin-path&quot; =&gt; &quot;/usr/bin/php-cgi --syntax-highlight&quot;,
                                        &quot;socket&quot; =&gt; &quot;/tmp/phps.socket&quot;,
                                        &quot;max-procs&quot; =&gt; 1,
					&quot;check-local&quot;       =&gt; &quot;disable&quot;
                                )
                        )

                 )
</pre>
<p>and then under server.modules = ( add mod_fastcgi<br />
and then finally restart your httpd</p>
<pre class="brush: plain; title: ; notranslate">/etc/init.d/lighttpd restart</pre>
<p>To spoof your speedtest.net result you'll need to grab speedtest.net mini you can download this from their website at http://speedtest.net/mini.php or you can just use wget to download it straight onto your server like I did in the tutorial</p>
<pre class="brush: plain; title: ; notranslate">wget http://files.speedtest.ookla.com/releases/mini.zip</pre>
<p>Extract mini.zip to your html dir, by default this is /var/www</p>
<pre class="brush: plain; title: ; notranslate">mv mini.zip /var/www;cd /var/www; unzip mini.zip</pre>
<p>Find out the IP address of the speedtest.net server to do this just simply run a speedtest and you will see it say something like Transferring data from host<br />
for me the host was speedtest.airwire.ie and to get the IP address we just ping the host. After finding the IP address you need to add a virtual interface on your httpd server with this IP to do so run the following, where xxx.xxx.xxx.xxx is the IP of the speedtest.net server</p>
<pre class="brush: plain; title: ; notranslate">ifconfig eth0:0 xxx.xxx.xxx.xxx netmask 255.255.255.0</pre>
<p>Then lastly we need to add a secondary IP address on your windows workstation so it can access the httpd server to do so go into your network connections right click on your networking interface click on properties select internet protocol version 4 and press properties click advanced and under IP addresses click add. Add an IP address that is in the same range as the speedtest.net server.</p>
<p>You should now be able to go to speedtest.net select the server you spoofed and get high speeds.</p>
]]></content:encoded>
			<wfw:commentRss>http://tuts4tech.net/2010/04/30/how-to-spoof-your-speedtest-net-results/feed/</wfw:commentRss>
		<slash:comments>33</slash:comments>
		</item>
		<item>
		<title>Windows 7 Move the Users and Program Files Directories To A Different Partition</title>
		<link>http://tuts4tech.net/2009/08/05/windows-7-move-the-users-and-program-files-directories-to-a-different-partition/</link>
		<comments>http://tuts4tech.net/2009/08/05/windows-7-move-the-users-and-program-files-directories-to-a-different-partition/#comments</comments>
		<pubDate>Wed, 05 Aug 2009 16:28:48 +0000</pubDate>
		<dc:creator>Duffy</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[copy]]></category>
		<category><![CDATA[directories]]></category>
		<category><![CDATA[mlink]]></category>
		<category><![CDATA[move]]></category>
		<category><![CDATA[program files]]></category>
		<category><![CDATA[users]]></category>

		<guid isPermaLink="false">http://tuts4tech.net/?p=519</guid>
		<description><![CDATA[After installing windows 7 you will be greeted with a user creation prompt press shift+f10 and you should get a cmd window up like in the image below Copy the Users Profiles, Program Files And ProgramData Folders onto the Partition you want to use Delete the old folders and create links For Program Files: For [...]]]></description>
			<content:encoded><![CDATA[<ol>
<li>After installing windows 7 you will be greeted with a user creation prompt press shift+f10 and you should get a cmd window up like in the image below<img class="aligncenter size-full wp-image-520" title="cmduser" src="http://tuts4tech.net/wp-content/uploads/2009/08/cmduser.png" alt="cmduser" width="500" height="374" /></li>
<li>Copy the Users Profiles, Program Files And ProgramData Folders onto the Partition you want to use
<pre class="brush: plain; title: ; notranslate">robocopy &quot;C:\Users&quot; &quot;D:\Users&quot; /E /COPYALL /XJ
robocopy &quot;C:\Program Files&quot; &quot;D:\Program Files&quot; /E /COPYALL /XJ
robocopy &quot;C:\ProgramData&quot; &quot;D:\ProgramData&quot; /E /COPYALL /XJ</pre>
</li>
<li>Delete the old folders and create links<br />
For Program Files:</p>
<pre class="brush: plain; title: ; notranslate">rmdir &quot;C:\Program Files&quot; /S /Q
mklink /J &quot;C:\Program Files&quot; &quot;D:\Program Files&quot;</pre>
<p>For the User Profiles:</p>
<pre class="brush: plain; title: ; notranslate">rmdir &quot;C:\users&quot; /S /Q
mklink /J &quot;C:\users&quot; &quot;D:\users&quot;</pre>
<p>and lastly ProgramData:</p>
<pre class="brush: plain; title: ; notranslate">rmdir &quot;C:\ProgramData&quot; /S /Q
mklink /J &quot;C:\ProgramData &quot;D:\ProgramData&quot;</pre>
<p><strong>If you have any permissions issues while deleting C:\ProgramData don't worry about them just try to delete it and make the links again after first reboot </strong></li>
<li>Now open regedit simply by typing regedit on the cmd window</li>
<li>To change the program files path navigate to HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion and edit the ProgramFilesDir and CommonFilesDir as needed<br />
<img class="aligncenter size-full wp-image-529" title="regeditproc" src="http://tuts4tech.net/tutorials/win7moveusersprogs/win7progpath.jpg" alt="regeditproc" width="500" height="212" /></li>
<li>For the user profiles you'll need to go to HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\ProfileList and again edit the paths as needed<br />
<img class="aligncenter size-full wp-image-528" title="regeditprof" src="http://tuts4tech.net/tutorials/win7moveusersprogs/win7userpath.jpg" alt="regeditprof" width="500" height="183" /></li>
<li>Exit Regedit and the cmd window</li>
<li>Continue to create your user</li>
<li>Reboot your machine and you should be good to go</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://tuts4tech.net/2009/08/05/windows-7-move-the-users-and-program-files-directories-to-a-different-partition/feed/</wfw:commentRss>
		<slash:comments>50</slash:comments>
		</item>
		<item>
		<title>Enabling SSH on ESXI</title>
		<link>http://tuts4tech.net/2009/07/19/enabling-ssh-on-esxi/</link>
		<comments>http://tuts4tech.net/2009/07/19/enabling-ssh-on-esxi/#comments</comments>
		<pubDate>Sat, 18 Jul 2009 23:01:29 +0000</pubDate>
		<dc:creator>Duffy</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[console]]></category>
		<category><![CDATA[esxi]]></category>
		<category><![CDATA[remote]]></category>
		<category><![CDATA[ssh]]></category>
		<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://tuts4tech.net/?p=507</guid>
		<description><![CDATA[On the console screen press ctrl+alt+f1 Type in unsupported then press enter and then type in your root password, You should know have a console window like the one below Run the following command Press the i key and then use the arrow keys until you come down to the line that beings with #ssh [...]]]></description>
			<content:encoded><![CDATA[<ol>
<li>On the console screen press ctrl+alt+f1<br /><img src="http://tuts4tech.net/wp-content/uploads/2009/07/console.jpg" alt="console" title="console" width="500" height="312" class="aligncenter size-full wp-image-509" /></li>
<p></p>
<li>Type in unsupported then press enter and then type in your root password, You should know have a console window like the one below<br /><img src="http://tuts4tech.net/wp-content/uploads/2009/07/loggedin.jpg" alt="loggedin" title="loggedin" width="500" height="312" class="aligncenter size-full wp-image-510" /></li>
<li>Run the following command
<pre class="brush: bash; title: ; notranslate">vi /etc/inetd.config</pre>
<p>Press the i key and then use the arrow keys until you come down to the line that beings with #ssh remove # then press the esc key followed by :wq</li>
<li>Finally we need to restart inetd run ps aux | grep 'inetd' note down its pid then run kill -HUP pid</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://tuts4tech.net/2009/07/19/enabling-ssh-on-esxi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting up a FTP Server on debian</title>
		<link>http://tuts4tech.net/2009/07/14/setting-up-a-ftp-server-on-debian/</link>
		<comments>http://tuts4tech.net/2009/07/14/setting-up-a-ftp-server-on-debian/#comments</comments>
		<pubDate>Tue, 14 Jul 2009 16:26:21 +0000</pubDate>
		<dc:creator>Duffy</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Misc]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[file transfer]]></category>
		<category><![CDATA[ftp]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[vsftpd]]></category>
		<category><![CDATA[Webhosting]]></category>

		<guid isPermaLink="false">http://tuts4tech.net/?p=493</guid>
		<description><![CDATA[Install vsftpd Edit the file /etc/vsftpd.conf and make the following changes: Change Yes to No in the following line Uncomment the following lines by removing the # Finally restart the vsftpd You and any of your users should now be able to FTP the server]]></description>
			<content:encoded><![CDATA[<ol>
<li>Install vsftpd
<pre class="brush: bash; title: ; notranslate">apt-get install vsftpd</pre>
</li>
<li>Edit the file /etc/vsftpd.conf and make the following changes:
<ol>
<li>Change Yes to No in the following line
<pre class="brush: plain; title: ; notranslate">Anonymous_enable = YES</pre>
</li>
<li>Uncomment the following lines by removing the #
<pre class="brush: plain; title: ; notranslate">#local_enable = YES
#write_enable = YES
#local_umask = 022
#chroot_local_user = YES</pre>
</li>
</ol>
<p>
</li>
<li>Finally restart the vsftpd
<pre class="brush: bash; title: ; notranslate">/etc/init.d/vsftpd</pre>
</li>
<li>You and any of your users should now be able to FTP the server</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://tuts4tech.net/2009/07/14/setting-up-a-ftp-server-on-debian/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>
	</channel>
</rss>

