<?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>Alexandar Tzanov ~ The Titan &#187; tutorials</title> <atom:link href="http://thetitan.titanfusion.net/category/techie/tutorials/feed/" rel="self" type="application/rss+xml" /><link>http://thetitan.titanfusion.net</link> <description>VENI VIDI VICI</description> <lastBuildDate>Mon, 02 Aug 2010 02:55:16 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.0.1</generator> <item><title>sh: uncompress: command not found</title><link>http://thetitan.titanfusion.net/archive/2010/08/01/sh-uncompress-command-not-found/</link> <comments>http://thetitan.titanfusion.net/archive/2010/08/01/sh-uncompress-command-not-found/#comments</comments> <pubDate>Mon, 02 Aug 2010 02:55:16 +0000</pubDate> <dc:creator>Alexandar Tzanov</dc:creator> <category><![CDATA[tutorials]]></category><guid
isPermaLink="false">http://thetitan.titanfusion.net/?p=554</guid> <description><![CDATA[<p>If you are uncompressing a program from a .bin and you are working with a freshly installed Linux distro, you might receive the following error &#8211; <em>sh: uncompress: command not found</em>. This error might be a result of either you have not installed gunzip on your system, or a proper link association with the compression application does not exist.</p><p>I will provide instruction on how to fix the latter first, because usually gunzip should be installed by default. To create the proper file linking we will use the <strong>ln</strong> command, which is used to create links to files. So, all you have to do is first make sure you are logged in as root, then run the following command:</p><pre>ln -s /usr/bin/gunzip /usr/bin/uncompress</pre><p>Once this has been done try running the command you executed last when you received the &#8220;<em>sh: uncompress: command not found</em>&#8221; error. I last encountered this error when I was installing the Valve Source gaming dedicated server &#8211; SRCDS, and I was executing the following command &#8211; ./hldsupdatetool.bin.</p><p>Now, if you do not have gunzip installed, just login as root and use yum or yast to do so. Below is how you can install gunzip using yum.</p><pre>yum install gzip
</pre>]]></description> <content:encoded><![CDATA[<p>If you are uncompressing a program from a .bin and you are working with a freshly installed Linux distro, you might receive the following error &#8211; <em>sh: uncompress: command not found</em>. This error might be a result of either you have not installed gunzip on your system, or a proper link association with the compression application does not exist.</p><p>I will provide instruction on how to fix the latter first, because usually gunzip should be installed by default. To create the proper file linking we will use the <strong>ln</strong> command, which is used to create links to files. So, all you have to do is first make sure you are logged in as root, then run the following command:</p><pre>ln -s /usr/bin/gunzip /usr/bin/uncompress</pre><p>Once this has been done try running the command you executed last when you received the &#8220;<em>sh: uncompress: command not found</em>&#8221; error. I last encountered this error when I was installing the Valve Source gaming dedicated server &#8211; SRCDS, and I was executing the following command &#8211; ./hldsupdatetool.bin.</p><p>Now, if you do not have gunzip installed, just login as root and use yum or yast to do so. Below is how you can install gunzip using yum.</p><pre>yum install gzip
</pre>]]></content:encoded> <wfw:commentRss>http://thetitan.titanfusion.net/archive/2010/08/01/sh-uncompress-command-not-found/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>How to mount and unmount a hard drive in Linux?</title><link>http://thetitan.titanfusion.net/archive/2010/06/25/how-to-mount-and-unmount-a-hard-drive-in-linux/</link> <comments>http://thetitan.titanfusion.net/archive/2010/06/25/how-to-mount-and-unmount-a-hard-drive-in-linux/#comments</comments> <pubDate>Fri, 25 Jun 2010 13:36:54 +0000</pubDate> <dc:creator>Alexandar Tzanov</dc:creator> <category><![CDATA[Techie]]></category> <category><![CDATA[tutorials]]></category> <category><![CDATA[Hard Drives]]></category> <category><![CDATA[hardware]]></category> <category><![CDATA[Linux]]></category> <category><![CDATA[Operating system]]></category> <category><![CDATA[Storage]]></category> <category><![CDATA[Superuser]]></category><guid
isPermaLink="false">http://thetitan.titanfusion.net/?p=531</guid> <description><![CDATA[<p>I lease multiple Linux servers. One of them has multiple hard drives installed in it. After asking the data center to reload the OS on it, the staff only mounted one of the drives. Surprisingly it is extremely easy for anyone with a <em>root </em>access to mount a hard drive on a Linux-based system. Here I will show you the very basic ways to mount and unmount a hard drive.</p><p>For starters, you should first see what hard drives and partitions are available. A real quick way to see the available hard drives in your system is to run the command <em>fdisk -l</em>. The results will give you some helpful information about the drive(s), as well as information on the partitions.</p><p
style="text-align: center;"></p><p>I should point out that your hard drive or drives might be identified on  your system as <em>hd </em>or <em>sd</em>. If you have multiple drives they will be  identified by a letter, i.e. <em>hda </em>/ <em>hdb</em>, or <em>sda </em>/<em>sdb</em>. The partitions on  each drive will be identified numerically, i.e. <em>hda1 </em>/<em>hda2</em>, or <em>sdb1</em> /<em>sdb2</em>.  You can see this in the screenshot above.</p><h3 style="text-align: center;">Here is how to mount a hard drive in Linux.</h3><p>First thing you should do is create a directory where the drive or partition will be mounted. In my case, I use the second hard drive for backups so I...</p>]]></description> <content:encoded><![CDATA[<p>I lease multiple Linux servers. One of them has multiple hard drives installed in it. After asking the data center to reload the OS on it, the staff only mounted one of the drives. Surprisingly it is extremely easy for anyone with a <em>root </em>access to mount a hard drive on a Linux-based system. Here I will show you the very basic ways to mount and unmount a hard drive.</p><p>For starters, you should first see what hard drives and partitions are available. A real quick way to see the available hard drives in your system is to run the command <em>fdisk -l</em>. The results will give you some helpful information about the drive(s), as well as information on the partitions.</p><p
style="text-align: center;"><div
id="attachment_536" class="wp-caption aligncenter" style="width: 310px"><a
href="http://thetitan.titanfusion.net/wordpress/wp-uploads/2010/06/linux-fdisk-l.png" rel="lightbox[531]"><img
class="size-medium wp-image-536 " title="linux-fdisk-l" src="http://thetitan.titanfusion.net/wordpress/wp-uploads/2010/06/linux-fdisk-l-300x142.png" alt="Hard disk list command in Linux." width="300" height="142" /></a><p
class="wp-caption-text">List of hard drives on the system.</p></div><p>I should point out that your hard drive or drives might be identified on  your system as <em>hd </em>or <em>sd</em>. If you have multiple drives they will be  identified by a letter, i.e. <em>hda </em>/ <em>hdb</em>, or <em>sda </em>/<em>sdb</em>. The partitions on  each drive will be identified numerically, i.e. <em>hda1 </em>/<em>hda2</em>, or <em>sdb1</em> /<em>sdb2</em>.  You can see this in the screenshot above.</p><h3 style="text-align: center;">Here is how to mount a hard drive in Linux.</h3><p>First thing you should do is create a directory where the drive or partition will be mounted. In my case, I use the second hard drive for backups so I created a directory called <em>backups</em>. I set the permissions to 755, although others would recommend 777 &#8211; full read and write access for <span
style="text-decoration: underline;">everyone</span>. In my opinion that is a security risk, especially on an Internet accessible server. The command to create the directory and set its permissions is:</p><p><code>mkdir /path/dir name &lt;= mkdir /backups<br
/> chmod 755 /path/dir name &lt;= chmod 755 /backups</code></p><p>Now that we have the target directory, it is time to mount the hard rive partition. In my case the second hard drive has only one partition. It encompasses the entire hard drive.</p><p><code>mount /dev/partitionId /path/dir name &lt;= mount /dev/sdb1 /backups</code></p><p>You partition should be permanently mounted now.</p><h3 style="text-align: center;">Here is how to unmount a hard drive in Linux.</h3><p>To unmount a hard drive or a partition in Linux, the command is the same as when you are mounting the same, except you have to add a <em>u</em> to the front of the command. It becomes <em>umount</em>.</p><p><code>umount /dev/partitionId /path/dir name &lt;= umount /dev/sdb1 /backups</code></p><p>Keep in mind that although when we refer to the procedure we use the word unmount, the actual command does not have <em>n</em> in the beginning.</p>]]></content:encoded> <wfw:commentRss>http://thetitan.titanfusion.net/archive/2010/06/25/how-to-mount-and-unmount-a-hard-drive-in-linux/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>srcTitle &#8211; the answer to the &#8220;null&#8221; title for the &#8220;from&#8221; link in Google Buzz feed</title><link>http://thetitan.titanfusion.net/archive/2010/02/26/srctitle-the-answer-to-the-null-title-for-the-from-link-in-google-buzz-feed/</link> <comments>http://thetitan.titanfusion.net/archive/2010/02/26/srctitle-the-answer-to-the-null-title-for-the-from-link-in-google-buzz-feed/#comments</comments> <pubDate>Fri, 26 Feb 2010 08:54:23 +0000</pubDate> <dc:creator>Alexandar Tzanov</dc:creator> <category><![CDATA[Techie]]></category> <category><![CDATA[searches]]></category> <category><![CDATA[tutorials]]></category> <category><![CDATA[coding]]></category> <category><![CDATA[Google]]></category> <category><![CDATA[Micro Blog]]></category> <category><![CDATA[publishing]]></category> <category><![CDATA[services]]></category> <category><![CDATA[source code]]></category> <category><![CDATA[websites]]></category><guid
isPermaLink="false">http://thetitan.titanfusion.net/?p=519</guid> <description><![CDATA[<p><img
class="alignright size-full wp-image-521" title="google-buzz-logo" src="http://thetitan.titanfusion.net/wordpress/wp-uploads/2010/02/google-buzz-logo.png" alt="google buzz logo srcTitle   the answer to the null title for the from link in Google Buzz feed" width="286" height="68" />This morning I implemented Google Buzz. You can see the button on the left of this paragraph. After playing around with the code, I buzzed my last post, which was about <a
title="High fructose corn syrup - it's a poison." href="http://thetitan.titanfusion.net/archive/2010/02/22/high-fructose-corn-syrup/" target="_self">high fructose corn syrup</a>. When I checked my Google profile I noticed that after the title of the article there was a &#8220;null&#8221;, which linked back to the home page of my blog.</p><p>After spending few minutes searching on the Internet, I wasn&#8217;t able to find much information on the problem. Next I decided to look for API documents and other help information published by Google. Seeing that the Google Buzz button works by sharing via Google Reader, the best place for the answer was in the Google Reader help docs . I found this post &#8211; <a
rel="nofollow" target="_blank" title="Adding a 'Share in Reader' link to your website or blog." href="http://www.google.com/support/reader/bin/answer.py?hl=en&#38;answer=147149" target="_blank">Adding a &#8216;Share in Reader&#8217; link to your website or blog</a>.</p><p>The solution to the problem is very simple and logical. As &#8220;title&#8221; &#8211; the title of the item you are sharing, is to &#8220;<span
class="ubernym uttInitialism" onmouseover="domTT_activate(this, event, 'content', 'Uniform Resource Locator' );"><abbr
class="uttInitialism">url</abbr></span>&#8221; &#8211; the address of the item you are sharing, &#8220;srcTitle&#8221; is to &#8220;srcUrl&#8221;. In which case the former is the name you want to use for the source of the item, and the latter is the address to that...</p>]]></description> <content:encoded><![CDATA[<p><img
class="alignright size-full wp-image-521" title="google-buzz-logo" src="http://thetitan.titanfusion.net/wordpress/wp-uploads/2010/02/google-buzz-logo.png" alt="google buzz logo srcTitle   the answer to the null title for the from link in Google Buzz feed" width="286" height="68" />This morning I implemented Google Buzz. You can see the button on the left of this paragraph. After playing around with the code, I buzzed my last post, which was about <a
title="High fructose corn syrup - it's a poison." href="http://thetitan.titanfusion.net/archive/2010/02/22/high-fructose-corn-syrup/" target="_self">high fructose corn syrup</a>. When I checked my Google profile I noticed that after the title of the article there was a &#8220;null&#8221;, which linked back to the home page of my blog.</p><p>After spending few minutes searching on the Internet, I wasn&#8217;t able to find much information on the problem. Next I decided to look for API documents and other help information published by Google. Seeing that the Google Buzz button works by sharing via Google Reader, the best place for the answer was in the Google Reader help docs . I found this post &#8211; <a
rel="nofollow" target="_blank" title="Adding a 'Share in Reader' link to your website or blog." href="http://www.google.com/support/reader/bin/answer.py?hl=en&amp;answer=147149" target="_blank">Adding a &#8216;Share in Reader&#8217; link to your website or blog</a>.</p><p>The solution to the problem is very simple and logical. As &#8220;title&#8221; &#8211; the title of the item you are sharing, is to &#8220;<span
class="ubernym uttInitialism" onmouseover="domTT_activate(this, event, 'content', 'Uniform Resource Locator' );"><abbr
class="uttInitialism">url</abbr></span>&#8221; &#8211; the address of the item you are sharing, &#8220;srcTitle&#8221; is to &#8220;srcUrl&#8221;. In which case the former is the name you want to use for the source of the item, and the latter is the address to that source.</p><p><code>... &amp;<strong>srcurl</strong>=123&amp;<strong>srctitle</strong>=numbers ...</code></p><p>The use of &#8220;srcUrl&#8221; is completely optional for your Google Buzz button, but keep in mind that if you do use this URI parameter, then you should probably also use &#8220;srcTitle&#8221;. Otherwise people will be seeing &#8221;null&#8221; in their Google Buzz feed, and some of them might not like that and start deleting buzzed/shared item and eventually completely stop sharing your content.</p><p>By the way, you can set the &#8220;src <span
class="ubernym uttInitialism" onmouseover="domTT_activate(this, event, 'content', 'Uniform Resource Locator' );"><abbr
class="uttInitialism">Url</abbr></span>&#8221; and &#8220;srcTitle&#8221; to anything you want. In my case, I am contemplating between setting them to to my blog&#8217;s home page or to the author&#8217;s post archive. I suppose the latter would be more crucial/useful when used on blogs or websites with multiple authors!</p>]]></content:encoded> <wfw:commentRss>http://thetitan.titanfusion.net/archive/2010/02/26/srctitle-the-answer-to-the-null-title-for-the-from-link-in-google-buzz-feed/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>My XBOX 360 is kaput!</title><link>http://thetitan.titanfusion.net/archive/2009/10/10/my-xbox-360-is-kaput/</link> <comments>http://thetitan.titanfusion.net/archive/2009/10/10/my-xbox-360-is-kaput/#comments</comments> <pubDate>Sat, 10 Oct 2009 15:04:25 +0000</pubDate> <dc:creator>Alexandar Tzanov</dc:creator> <category><![CDATA[Techie]]></category> <category><![CDATA[The Titan]]></category> <category><![CDATA[gaming]]></category> <category><![CDATA[tutorials]]></category> <category><![CDATA[fix]]></category> <category><![CDATA[microsoft]]></category> <category><![CDATA[xbox]]></category><guid
isPermaLink="false">http://thetitan.titanfusion.net/?p=499</guid> <description><![CDATA[<p>My XBOX 360 is kaput! It&#8217;s at the point where it won&#8217;t even turn on. Well, it does, but it immediately powers off everything but the Red Ring of Death (RRoD). It sucks. I have been having some issue with the Xbox for some time know. Recently I wrote about how I was experiencing some <a
rel="nofollow" target="_blank" title="Xbox 360 no video, only audio." href="http://thetitan.titanfusion.net/archive/2009/06/15/xbox-360-no-video-only-audio/" target="_blank">xbox video problems</a>. Well, about a week or so ago, I lost video on it completely. The TV knows that there is something connected to it, but all I get is a black screen. <a
title="Mandy's Blog" href="http://mandy.titanfusion.net/" target="_blank">Amanda </a>came across a tutorial on how to check what might be wrong with the <a
rel="nofollow" target="_blank" title="Xbox 360 error codes." href="http://www.llamma.com/xbox360/repair/Xbox-360-error-codes.htm" target="_blank">Xbox 360, through getting it to show an error code</a>. Well, the error code I repeatedly received was 0102, which indicated that the Xbox has no idea what the problem might be.</p><p>We have had the system since 2005. So it is definitely out of Microsoft&#8217;s manufacturer warranty. I figured there isn&#8217;t much to loose by trying some of the hacks and fixes people have described on the Internet. Since it was already broken, what could happen? Brake it even further than it is? &#8230;.. hahaha, funny, now that I write this after the fact. What can I tell you &#8230; I...</p>]]></description> <content:encoded><![CDATA[<div
id="attachment_469" class="wp-caption alignright" style="width: 160px"><a
href="http://thetitan.titanfusion.net/wordpress/wp-uploads/2009/06/xbox-360.jpg" rel="lightbox[499]"><img
class="size-thumbnail wp-image-469" title="xbox-360" src="http://thetitan.titanfusion.net/wordpress/wp-uploads/2009/06/xbox-360-150x150.jpg" alt="xbox 360, logo, controller" width="150" height="150" /></a><p
class="wp-caption-text">xbox 360, logo, controller</p></div><p>My XBOX 360 is kaput! It&#8217;s at the point where it won&#8217;t even turn on. Well, it does, but it immediately powers off everything but the Red Ring of Death (RRoD). It sucks. I have been having some issue with the Xbox for some time know. Recently I wrote about how I was experiencing some <a
rel="nofollow" target="_blank" title="Xbox 360 no video, only audio." href="http://thetitan.titanfusion.net/archive/2009/06/15/xbox-360-no-video-only-audio/" target="_blank">xbox video problems</a>. Well, about a week or so ago, I lost video on it completely. The TV knows that there is something connected to it, but all I get is a black screen. <a
title="Mandy's Blog" href="http://mandy.titanfusion.net/" target="_blank">Amanda </a>came across a tutorial on how to check what might be wrong with the <a
rel="nofollow" target="_blank" title="Xbox 360 error codes." href="http://www.llamma.com/xbox360/repair/Xbox-360-error-codes.htm" target="_blank">Xbox 360, through getting it to show an error code</a>. Well, the error code I repeatedly received was 0102, which indicated that the Xbox has no idea what the problem might be.</p><p>We have had the system since 2005. So it is definitely out of Microsoft&#8217;s manufacturer warranty. I figured there isn&#8217;t much to loose by trying some of the hacks and fixes people have described on the Internet. Since it was already broken, what could happen? Brake it even further than it is? &#8230;.. hahaha, funny, now that I write this after the fact. What can I tell you &#8230; I have  indeed managed to brake a broken Xbox 360!</p><p>Back to the Xbox 360 hack on the World Wide Web. After reading number of issues and fixes described by Xbox owners, I decided to go with the <a
rel="nofollow" target="_blank" title="Xbox 360 Hot Air Gun fix - search." href="http://www.google.com/search?q=xbox+360+hot+air+gun+fix" target="_blank">360 Hot Air Gun fix</a>. Supposedly if the CPU and GPU, and some times the RAM chips are heated up, with a Hot Air Gun, to the point where the solder melts, it possibly can resolve the problem with the cracked solder joints and lack of conductivity between the chips and the xbox motherboard. Unfortunately for me this fix did not work, and &#8220;broke&#8221; the Xbox 360.</p><p>It will be easier for me just to go out and get a new Xbox 360 around Christmas than to keep trying to fix a 2005 Xbox 360. Hopefully newer models do not have the same issues. Although, I thought about simply picking up a new Xbox 360 motherboard from eBay, but I see that there are Xbox 360 Elite motherboards with the same issue, 4 year latter! I will most likely post this one on Craigslist for $50 or so to help contribute toward the cost of replacing it.</p>]]></content:encoded> <wfw:commentRss>http://thetitan.titanfusion.net/archive/2009/10/10/my-xbox-360-is-kaput/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Firefox and DNS prefetching</title><link>http://thetitan.titanfusion.net/archive/2009/08/04/firefox-and-dns-prefetching/</link> <comments>http://thetitan.titanfusion.net/archive/2009/08/04/firefox-and-dns-prefetching/#comments</comments> <pubDate>Tue, 04 Aug 2009 14:39:59 +0000</pubDate> <dc:creator>Alexandar Tzanov</dc:creator> <category><![CDATA[Featured]]></category> <category><![CDATA[Techie]]></category> <category><![CDATA[Today I learned]]></category> <category><![CDATA[tutorials]]></category> <category><![CDATA[browsers]]></category> <category><![CDATA[coding]]></category> <category><![CDATA[DNS]]></category> <category><![CDATA[domains]]></category> <category><![CDATA[Google]]></category> <category><![CDATA[knowledge]]></category> <category><![CDATA[mozilla]]></category><guid
isPermaLink="false">http://thetitan.titanfusion.net/archive/2008/04/08/twitter-digest-for-2008-04-08</guid> <description><![CDATA[<p>Firefox and DNS prefetching &#8211; I read about this being a feature in Google Chrome, but I wasn&#8217;t sure if it was, yet, a feature of Firefox. It is in Ff 3.5. Here you can find a list of the <a
rel="nofollow" target="_blank" title="Firefox 3.5 new features." href="http://www.spreadfirefox.com/node/4226" target="_blank">new features in Firefox 3.5</a>.</p><p><strong>What is DNS prefetching?</strong> &#8211; <em>It is the process of requesting domain name and <span
class="ubernym uttAbbreviation" onmouseover="domTT_activate(this, event, 'content', 'Depending on the context it is used in IP is an abbreviation for Internet Protocol or Intellectual Property.','caption', 'Internet Protocol or Intellectual Property' );"><abbr
class="uttAbbreviation">IP</abbr></span> (Internet Protocol or Intellectual Property) address resolution used in links, images, documents and other content linked to from a page a web surfer is currently browsing. Theoretically, by taking care of the name resolution before a surfer desires to navigate to a file or another page from a link on the current page can save fractions to X number of seconds. Name resolution being out of the way the surfer should arrive at its next destination faster.</em> The former is my definition and understanding of DNS prefetching. In my experience, at leased in Google Chrome, I am able to see performance improvements.</p><p>I needed to know how can I tell if it is on or off. In Google Chrome it is in the options menu and it can easily be turned on and with a simple check-mark click.</p><p>But, in Firefox this is not a function in the options menu. At leased not at this time.</p>]]></description> <content:encoded><![CDATA[<p>Firefox and DNS prefetching &#8211; I read about this being a feature in Google Chrome, but I wasn&#8217;t sure if it was, yet, a feature of Firefox. It is in Ff 3.5. Here you can find a list of the <a
rel="nofollow" target="_blank" title="Firefox 3.5 new features." href="http://www.spreadfirefox.com/node/4226" target="_blank">new features in Firefox 3.5</a>.</p><p><strong>What is DNS prefetching?</strong> &#8211; <em>It is the process of requesting domain name and <span
class="ubernym uttAbbreviation" onmouseover="domTT_activate(this, event, 'content', 'Depending on the context it is used in IP is an abbreviation for Internet Protocol or Intellectual Property.','caption', 'Internet Protocol or Intellectual Property' );"><abbr
class="uttAbbreviation">IP</abbr></span> (Internet Protocol or Intellectual Property) address resolution used in links, images, documents and other content linked to from a page a web surfer is currently browsing. Theoretically, by taking care of the name resolution before a surfer desires to navigate to a file or another page from a link on the current page can save fractions to X number of seconds. Name resolution being out of the way the surfer should arrive at its next destination faster.</em> The former is my definition and understanding of DNS prefetching. In my experience, at leased in Google Chrome, I am able to see performance improvements.</p><p>I needed to know how can I tell if it is on or off. In Google Chrome it is in the options menu and it can easily be turned on and with a simple check-mark click.</p><div
id="attachment_473" class="wp-caption aligncenter" style="width: 291px"><a
href="http://thetitan.titanfusion.net/wordpress/wp-uploads/2009/08/google-chrome-dns-prefetching.png" rel="lightbox[248]"><img
class="size-medium wp-image-473" title="google-chrome-dns-prefetching" src="http://thetitan.titanfusion.net/wordpress/wp-uploads/2009/08/google-chrome-dns-prefetching-281x300.png" alt="Google Chrome DNS prefetching option." width="281" height="300" /></a><p
class="wp-caption-text">Google Chrome DNS prefetching option.</p></div><p>But, in Firefox this is not a function in the options menu. At leased not at this time.</p>]]></content:encoded> <wfw:commentRss>http://thetitan.titanfusion.net/archive/2009/08/04/firefox-and-dns-prefetching/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>XBox 360 no video, only audio</title><link>http://thetitan.titanfusion.net/archive/2009/06/15/xbox-360-no-video-only-audio/</link> <comments>http://thetitan.titanfusion.net/archive/2009/06/15/xbox-360-no-video-only-audio/#comments</comments> <pubDate>Mon, 15 Jun 2009 16:22:58 +0000</pubDate> <dc:creator>Alexandar Tzanov</dc:creator> <category><![CDATA[Featured]]></category> <category><![CDATA[Techie]]></category> <category><![CDATA[gaming]]></category> <category><![CDATA[tutorials]]></category> <category><![CDATA[video]]></category> <category><![CDATA[console]]></category> <category><![CDATA[hardware]]></category> <category><![CDATA[microsoft]]></category> <category><![CDATA[pc]]></category> <category><![CDATA[searches]]></category> <category><![CDATA[services]]></category> <category><![CDATA[websites]]></category><guid
isPermaLink="false">http://thetitan.titanfusion.net/?p=468</guid> <description><![CDATA[<p>Over the weekend I had some lack of video from my XBox360. Nothing that some heat couldn’t fix. Apparently most problems with the Xbox360 are fixed by that which kills PCs – heat.</p><p>I have an XBox360, which is one of those that was born with bugs and &#8220;genetic&#8221; issue &#8211; meaning an early version &#8211; one from the early ones, made before the red ring of death became evident  and all the various versions started to come out. Luckily, I don&#8217;t abuse and rarely spend massive amount of hours playing it, thus I don&#8217;t have very many problem with it! Other than the occasional screen flicker and the <strong>constant </strong>refusal of the DVD-Rom tray to actually stay closed after attempting to close it. Apparently the DVD drive gets a bad taste from DVD discs and refuses to work with them. HAHA. My solution for the latter is to place my thumb on the drive tray and prevent it from coming back out, then pushing the open/close button again!!</p><p>This past weekend I experienced something new &#8211; the XBox booted fine and there was audio, but no video. The digital TV detected an active video source, but there was no picture. At first I was going to disassemble the XBox to look for problem myself, because the warranty had expired a long time ago. But then I decided...</p>]]></description> <content:encoded><![CDATA[<div
id="attachment_469" class="wp-caption alignright" style="width: 160px"><a
href="http://thetitan.titanfusion.net/wordpress/wp-uploads/2009/06/xbox-360.jpg" rel="lightbox[468]"><img
class="size-thumbnail wp-image-469" title="xbox-360" src="http://thetitan.titanfusion.net/wordpress/wp-uploads/2009/06/xbox-360-150x150.jpg" alt="xbox 360, logo, controller" width="150" height="150" /></a><p
class="wp-caption-text">xbox 360, logo, controller</p></div><p>Over the weekend I had some lack of video from my XBox360. Nothing that some heat couldn’t fix. Apparently most problems with the Xbox360 are fixed by that which kills PCs – heat.</p><p>I have an XBox360, which is one of those that was born with bugs and &#8220;genetic&#8221; issue &#8211; meaning an early version &#8211; one from the early ones, made before the red ring of death became evident  and all the various versions started to come out. Luckily, I don&#8217;t abuse and rarely spend massive amount of hours playing it, thus I don&#8217;t have very many problem with it! Other than the occasional screen flicker and the <strong>constant </strong>refusal of the DVD-Rom tray to actually stay closed after attempting to close it. Apparently the DVD drive gets a bad taste from DVD discs and refuses to work with them. HAHA. My solution for the latter is to place my thumb on the drive tray and prevent it from coming back out, then pushing the open/close button again!!</p><p>This past weekend I experienced something new &#8211; the XBox booted fine and there was audio, but no video. The digital TV detected an active video source, but there was no picture. At first I was going to disassemble the XBox to look for problem myself, because the warranty had expired a long time ago. But then I decided to wait for Monday and call Microsoft and possibly sent it back.</p><p>After researching the problem in the global knowledge fix and repair database, i.e. the Internet, I was able to determined that 1) it might not be worth the money spend to sent it in for repair, and 2) the issue could be related to the heat sync on the video chip. Something about the x-clamp (see x-clamp fix video at the end of the post). A problem which is most commonly fixed by wrapping the Xbox in a towel causing it to overheat. I again considered taking it apart and performing the x-clam fix, because I wasn&#8217;t willing to wrap the XBox in something to cause it to overheat and possibly cause heat damage to other components. Before proceeding, I simply opted out to just turn it on and let it run heat up. I&#8217;ve noticed how hot it can get! About 20 minutes later I came back to check on it. I turned the XBox off and back on. Voila, there was video again! Problem fixed.</p><p>Now if that darn DVD-drive tray could stay closed, it would be great.</p><p><object
classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="385" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param
name="allowFullScreen" value="true" /><param
name="allowscriptaccess" value="always" /><param
name="src" value="http://www.youtube.com/v/fM4TEIZqOso&amp;hl=en&amp;fs=1&amp;color1=0x006699&amp;color2=0x54abd6" /><param
name="allowfullscreen" value="true" /><embed
type="application/x-shockwave-flash" width="480" height="385" src="http://www.youtube.com/v/fM4TEIZqOso&amp;hl=en&amp;fs=1&amp;color1=0x006699&amp;color2=0x54abd6" allowscriptaccess="always" allowfullscreen="true"></embed></object></p><p>Whois domain record: <a
rel="nofollow" target="_blank" title="Microsoft whois @ DomainRecord.Info" href="http://whois.domainrecord.info/microsoft.com" target="_blank">Microsoft</a>, <a
rel="nofollow" target="_blank" title="YouTUBE whois @ DomainRecord.Info" href="http://whois.domainrecord.info/youtube.com" target="_blank">YouTUBE</a>, <a
rel="nofollow" target="_blank" title="XBox whois @ DomainRecord.Info" href="http://whois.domainrecord.info/xbox.com" target="_blank">XBox</a></p>]]></content:encoded> <wfw:commentRss>http://thetitan.titanfusion.net/archive/2009/06/15/xbox-360-no-video-only-audio/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Comic book shots and angles.</title><link>http://thetitan.titanfusion.net/archive/2008/07/04/comic-book-shots-and-angles/</link> <comments>http://thetitan.titanfusion.net/archive/2008/07/04/comic-book-shots-and-angles/#comments</comments> <pubDate>Fri, 04 Jul 2008 06:51:59 +0000</pubDate> <dc:creator>Alexandar Tzanov</dc:creator> <category><![CDATA[Micro Blog]]></category> <category><![CDATA[tutorials]]></category> <category><![CDATA[video]]></category><guid
isPermaLink="false">http://thetitan.titanfusion.net/?p=311</guid> <description><![CDATA[<p>Here is a great video tutorial on different types of <a
rel="nofollow" target="_blank" href="http://www.starwars.com/video/view/000642.html">shots and angles</a> that one can draw in his or her comic books.</p>]]></description> <content:encoded><![CDATA[<p>Here is a great video tutorial on different types of <a
rel="nofollow" target="_blank" href="http://www.starwars.com/video/view/000642.html">shots and angles</a> that one can draw in his or her comic books.</p>]]></content:encoded> <wfw:commentRss>http://thetitan.titanfusion.net/archive/2008/07/04/comic-book-shots-and-angles/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Migrating HLDS Linux server from WON to STEAM.</title><link>http://thetitan.titanfusion.net/archive/2004/12/07/migrating-hlds-linux-server-from-won-to-steam/</link> <comments>http://thetitan.titanfusion.net/archive/2004/12/07/migrating-hlds-linux-server-from-won-to-steam/#comments</comments> <pubDate>Wed, 08 Dec 2004 03:03:32 +0000</pubDate> <dc:creator>Alexandar Tzanov</dc:creator> <category><![CDATA[gaming]]></category> <category><![CDATA[tutorials]]></category><guid
isPermaLink="false">http://titanfusion.net/wordpress/?p=54</guid> <description><![CDATA[<p>I found this tutorial in my back-ups from the old Clan MP I had designed. This tutorial I wrote shortly after Valve released the Half-Life Steam Dedicated Server, but it never made it to the new web site. Now I am including it on my web site, simply because it is a more appropriate place for it here than on the MP web site. Another reason I am putting it here is because I am thinking to write other tutorials and present them on my web site. The convenience of the blog data base will allow me to keep the tutorials organized and still be able to present them to people visiting only my web site or my blog.<br
/> <span
id="more-54"></span></p><hr
/><p>Last update: <strong>Thursday January 01, 2004 12:45:33 PM -0500</strong></p><p> Hi everyone,</p><p>I hope this will be useful for all of you, who are having issues with updating to STEAM on <strong><u><font
color="#FF0000">Linux</font></u></strong>.</p><p>Here it is how after three days of sleepless headaches and swearing left and right at anyone and anything and trying to update HLDS 1.1.1.0, a Linux server update can be accomplished in <strong>3</strong> minutes.</p><div
align="center"><strong>Background information.</strong></div><p>The -(MP)- server is hosted remotely.  The host company does not provide any support regarding Half-Life, only actual hardware and administration support.</p><p>To translate the above, I, as an admin of the account, have...</p>]]></description> <content:encoded><![CDATA[<p>I found this tutorial in my back-ups from the old Clan MP I had designed. This tutorial I wrote shortly after Valve released the Half-Life Steam Dedicated Server, but it never made it to the new web site. Now I am including it on my web site, simply because it is a more appropriate place for it here than on the MP web site. Another reason I am putting it here is because I am thinking to write other tutorials and present them on my web site. The convenience of the blog data base will allow me to keep the tutorials organized and still be able to present them to people visiting only my web site or my blog.<br
/> <span
id="more-54"></span></p><hr
/><p>Last update: <strong>Thursday January 01, 2004 12:45:33 PM -0500</strong></p><p> Hi everyone,</p><p>I hope this will be useful for all of you, who are having issues with updating to STEAM on <strong><u><font
color="#FF0000">Linux</font></u></strong>.</p><p>Here it is how after three days of sleepless headaches and swearing left and right at anyone and anything and trying to update HLDS 1.1.1.0, a Linux server update can be accomplished in <strong>3</strong> minutes.</p><div
align="center"><strong>Background information.</strong></div><p>The -(MP)- server is hosted remotely.  The host company does not provide any support regarding Half-Life, only actual hardware and administration support.</p><p>To translate the above, I, as an admin of the account, have to do all installations and configurations of HLDS by myself and rely on what I can find on the Internet.</p><p>I did not have access to the root directory only the directory allocated to me by the host company. This means that I HAD to use &#8211; hldaupdatetool.bin, simply because the destination path is hard coded in the standalone installation file &#8211; <em>hlds_l_1120_full.bin</em></p><p><strong><font
color="#FF0000">This guide is on how to migrate* to STEAM with or without administrative privileges on the hosted / remote server.</p><p> * This is if you have an HLDS (1.1.1.0) installed but it  is still under the WON system.</font></strong></p><div
align="center"><strong>Get hldsupdatetool.bin on the server.</strong></div><p>Go into the directory which contains the HLDS server.  It usually is <em>hlds_l</em></p><p>You need the steam file from the Valve FTP server. I use wget here to get the file, if your Linux doesn&#8217;t have wget, use the FTP program provided with your distribution to get it.</p><p>For those who get it by FTP, this is the server to get it from:</p><p>Server: <strong>ftp.valvesoftware.com</strong><br
/> User: <strong>hlserver</strong><br
/> Pass: <strong>hlserver</strong><br
/> Remote dir:<strong> /Linux</strong><br
/> File: <strong>hldsupdatetool.bin</strong></p><p> <code><em>bash$</em> wget ftp://hlserver:hlserver@ftp.valvesoftware.com/Linux/hldsupdatetool.bin</code></p><p>&#8212;&#8212;&#8212;&#8211;</p><p>You can get the file on the server by uploading it from your machine, as well.</p><div
align="center"><strong>Making executables.</strong></div><p>We now have the file we need, now lets run it!</p><p><code><em>bash$</em> chmod +x hldsupdatetool.bin<br
/> <em>bash$</em> ./hldsupdatetool.bin</code></p><p>This will extract the steam utility.  Now make it executable.</p><p><code><em>bash$</em> chmod +x steam</code></p><div
align="center"><strong>Creating an account and updating STEAM.</strong></div><p>Now we are all ready to create an account for steam, and to get the files!  But first, you MUST have the box administrator or yourself, create .steam directory in the root directory.  Root in my case was the home directory of my account.  I hade .steam permissions set to 777, just in case.  The only file which will reside in the directory is a text file &#8211; <em>ClientRegistry.blob</em></p><p><strong>(1)</strong> You must have the .steam directory, for the utility to work.<br
/> <strong>(2)</strong> Change steam&#8217;s (the utility) permissions to 777.</p><p><strong>./steam -create < username> < password> < question> < answer></></></></></strong></p><p>Here is an example how the fields will be filled out:</p><p><strong> ./steam -create you@youraddy.com hard2guess &#8220;is STEAM a pain?&#8221; yes</strong></p><p>Now you know how it must be done so lets do it. Go make and account.  Run:</p><p><code><em>bash$</em> ./steam -create you@youaddy.com hard2guess "is STEAM a pain?" yes</code></p><p>Steam will now update the steam client to the latest version</p><p><code><em>Getting version X of Steam Linux Client<br
/> Downloading. . . . . . . . . . .<br
/> Linux Client updated, please retry the command</em></code></p><p>It is updated, now we must restart the program.</p><p><code><em>bash$</em> ./steam -create you@youaddy.com hard2guess "is STEAM a pain?" yes</code></p><p>If all goes well it will respond with: Account Created successfully.</p><p>&#8212;&#8212;&#8212;&#8211;</p><p>If you have any problems with updating, you can run the process again, but make sure you have deleted ClientRegistry.blob file from .steam directory.  After deleting the ClientRegistry.blob file, when you run the process from the beginning of section 3, it will be like you never executed the commands before.</p><div
align="center"><strong>Updating the HLDS server engine.</strong></div><p>To update the engine run the following command:</p><p><code><em>bash$</em> ./steam -update valve</code></p><p>This will update the HLDS engine. You will see it download all of the update files to the designated directories and sub directories. When it is done, all you have to do is start the game the way you have always started it.</p><p>Any questions and problems, feel free to contact me: <a
rel="nofollow" target="_blank" href="mailto:thetitan2829@gmai.com?subject=Migrating HLDS Linux server from WON to STEAM.">Alexandar Tzanov</a></p>]]></content:encoded> <wfw:commentRss>http://thetitan.titanfusion.net/archive/2004/12/07/migrating-hlds-linux-server-from-won-to-steam/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using disk (enhanced)
Database Caching 3/24 queries in 0.026 seconds using disk
Object Caching 933/971 objects using disk

Served from: thetitan.titanfusion.net @ 2010-09-03 07:06:18 -->