<?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>huanix &#187; Server</title>
	<atom:link href="http://www.huanix.com/category/server/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.huanix.com</link>
	<description>chown -R huanix /</description>
	<lastBuildDate>Sat, 31 Dec 2011 14:53:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Slow nslookup and slow dns hosting?</title>
		<link>http://www.huanix.com/2007/12/03/slow-nslookup-and-slow-dns-hosting/</link>
		<comments>http://www.huanix.com/2007/12/03/slow-nslookup-and-slow-dns-hosting/#comments</comments>
		<pubDate>Tue, 04 Dec 2007 03:44:34 +0000</pubDate>
		<dc:creator>huanix</dc:creator>
				<category><![CDATA[Apache2]]></category>
		<category><![CDATA[dns host]]></category>
		<category><![CDATA[LAMP]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[networking]]></category>
		<category><![CDATA[Server]]></category>

		<guid isPermaLink="false">http://www.huanix.com/2007/12/03/slow-nslookup-and-slow-dns-hosting/</guid>
		<description><![CDATA[I&#8217;m running my server on a &#8220;static&#8221; dhcp address on my home server, and I&#8217;m using the domain name server lookup provided by freedns.org. I am more than appreciative for the FREE service provided by the fellow at freedns, but I&#8217;ve noticed that the biggest problem with any of the sites on my server is [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m running my server on a &#8220;static&#8221; dhcp address on my home server, and I&#8217;m using the domain name server lookup provided by freedns.org. I am more than appreciative for the FREE service provided by the fellow at freedns, but I&#8217;ve noticed that the biggest problem with any of the sites on my server is SLOW name server lookup.</p>
<p>Here&#8217;s the deal: I want to improve my nslookup time (not the time derived from my local cache, but my &#8220;fresh look&#8221; time) and I just can&#8217;t seem to figure it out. Turns out most folks who run their own server rely on local-server based dns, but I figure that would be AT LEAST as slow as freedns. I wish I could find some ranking of domain name servers so I could make a more informed choice, but I just don&#8217;t know how to attack it.</p>
<p>Oh.. and one more thing.. I don&#8217;t pay.. for anything. That is, I don&#8217;t pay for anything I can use ingenuity to get for free. That&#8217;s why RMS and Linus are my heroes! I&#8217;d love to hear your suggestions.</p>
<h4>Incoming search terms:</h4><ul><li>nslookup slow</li><li>nslookup slow dns</li><li>linux nslookup slow</li><li>aix nslookup delay</li><li>ubuntu nslookup slow</li><li>slow nslookup</li><li>nslookup slow respose</li><li>nslookup linux slow</li><li>freedns slow</li><li>dns slow nslookup</li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.huanix.com/2007/12/03/slow-nslookup-and-slow-dns-hosting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>mod_rewrite for Apache2 in Ubuntu Feisty Fawn 7.04</title>
		<link>http://www.huanix.com/2007/04/18/mod_rewrite-for-apache2-in-ubuntu-feisty-fawn-704/</link>
		<comments>http://www.huanix.com/2007/04/18/mod_rewrite-for-apache2-in-ubuntu-feisty-fawn-704/#comments</comments>
		<pubDate>Thu, 19 Apr 2007 00:29:05 +0000</pubDate>
		<dc:creator>huanix</dc:creator>
				<category><![CDATA[Apache2]]></category>
		<category><![CDATA[HTML formatting]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.huanix.com/index.php/2007/04/18/mod_rewrite-for-apache2-in-ubuntu-feisty-fawn-704/</guid>
		<description><![CDATA[mod_rewrite is a module for the Apache webserver that allows apache to dynamically change the url of a site using php (or other scripting languages). It seems like a difficult/confusing task at first, but it actually only takes 2 steps in Ubuntu. I&#8217;m using Feisty Fawn, 7.04, but this should work well for Edgy and [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.penguin-soft.com/penguin/man/8/a2enmod.html">mod_rewrite</a> is a module for the <a href="http://apache.org/httpd">Apache webserver</a> that allows apache to dynamically change the url of a site using php (or other scripting languages). It seems like a difficult/confusing task at first, but it actually only takes 2 steps in <a href="http://ubuntu.com">Ubuntu</a>. I&#8217;m using Feisty Fawn, 7.04, but this should work well for Edgy and Dapper without any issues. Any code snippets should be typed into a terminal. &#8220;sudo&#8221; commands require a password, that&#8217;s a given.</p>
<ol>
<li>Enable mod_rewrite in Apache<br />
<code> sudo a2enmod rewrite </code></li>
<li>Edit the configuration file.
<ol>
<li><code>sudo gedit  /etc/apache2/sites-available/default </code></li>
<li>line 12 says &#8220;AllowOverride none&#8221; ;</li>
<li>change it to &#8220;AllowOverride all&#8221;</li>
<li>save and close</li>
</ol>
</li>
<li>Okay&#8230; one last step &#8212; you have to manually restart Apache (or restart your computer!)</li>
<p><code>sudo apache2 -k restart </code></ol>
<p>All done! now Apache and php can create URL&#8217;s on the fly &#8211; pretty neato!</p>
<h4>Incoming search terms:</h4><ul><li>a2enmod mod_rewrite</li><li>ubuntu apache2 mod_rewrite</li><li>Ubuntu php mod_rewrite</li><li>UBUNTU APACHE2 REWRITE</li><li>mod_rewrite apache2</li><li>ubuntu apache mod rewrite</li><li>php mod_rewrite ubuntu</li><li>apache2 mod_rewrite ubuntu</li><li>enable mod_rewrite apache2 ubuntu</li><li>mod_rewrite a2enmod</li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.huanix.com/2007/04/18/mod_rewrite-for-apache2-in-ubuntu-feisty-fawn-704/feed/</wfw:commentRss>
		<slash:comments>28</slash:comments>
		</item>
		<item>
		<title>SUCCESS with Servraid 7.12 on an IBM x345</title>
		<link>http://www.huanix.com/2007/02/08/success-at-last/</link>
		<comments>http://www.huanix.com/2007/02/08/success-at-last/#comments</comments>
		<pubDate>Fri, 09 Feb 2007 03:48:46 +0000</pubDate>
		<dc:creator>huanix</dc:creator>
				<category><![CDATA[Server]]></category>
		<category><![CDATA[Xubuntu]]></category>

		<guid isPermaLink="false">http://www.huanix.com/?p=26</guid>
		<description><![CDATA[This is my third straight day of trying to get this IBM Series x 345 server working properly. I bought it off ebay (with school funds) to host dynamic content for the school, and it arrived (as I expected) with raw SCSI drives and no documentation/software. I&#8217;ve spent the last three days trying figure out [...]]]></description>
			<content:encoded><![CDATA[<p>This is my third straight day of trying to get this IBM Series x 345 server working properly. I bought it off ebay (with school funds) to host dynamic content for the school, and it arrived (as I expected) with raw SCSI drives and no documentation/software. I&#8217;ve spent the last three days trying figure out how to get the SCSI RAID up and running, and tonight I finally got the correct version of the ServeRAID (version 7.12 for the IBM ServeRAID &#8211; 4Mx Ultra 160 SCSI Controller), and things worked out very well. The configurator picked up the drives, and I was able to set up a RAID with no sweat. I did a test run with a live Ubuntu 6.10 CD (actually Edubuntu, because it&#8217;s what I had in front of me) and I am pleased to report that it picked up the RAID drive without any problems. I&#8217;m going to add some details for my own reference, hopefully they will come in handy for someone else.</p>
<ul>
<li>IBM Series x 345 Server, Model 8670 &#8211; 51x</li>
<li>IBM ServeRAID &#8211; 4Mx Ultra 160 SCSI controller, p/n 06P5736, 06P5737</li>
<li>ServeRAID version 7.12, downloaded from wherever you can find it, the file is called 32r274.iso, p/n 33P2640 or 19k6131 (?)</li>
<li>There is some indication for the older version of ServeRAID version 5.10, 5.10.1, 5.10.2, &amp; 5.10.3. Don&#8217;t use these. Opt for the 7.12 version &#8211; it&#8217;s easier to find and updated.</li>
<li>I&#8217;ve had a lot of search hits for people looking for serveraid support cd v5.10, but I believe you&#8217;re barking up an outdated tree! I am adding a <a href="/files/32r2741.iso.torrent">torrent for the correct ServeRAID Support cd v7.12, p/n 33P2640</a>. The only caveat is that I will probably be the only seed for this file and my up speed is locked at 10 kb/s. I believe it is legal to distribute this, please correct me if i am wrong!!! The image size is ~ 459mb.</li>
</ul>
<p>In the next few days, I&#8217;ll be experimenting with Xubuntu configurations and learning better OOP PHP skills to develop better apps for the server.</p>
<h4>Incoming search terms:</h4><ul><li>ibm x345 ubuntu</li><li>ubuntu ibm x345</li><li>ubuntu x345</li><li>06p5737 configutation utility</li><li>serveraid 8i x345 windows 2008 server</li><li>serveraid 7 12 download</li><li>installing ubuntu on x345</li><li>install debian on ibm x345</li><li>ibm x345 serveraid driver</li><li>serveraid support cd x 345</li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.huanix.com/2007/02/08/success-at-last/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Server Excitement!</title>
		<link>http://www.huanix.com/2007/02/07/server-excitement/</link>
		<comments>http://www.huanix.com/2007/02/07/server-excitement/#comments</comments>
		<pubDate>Thu, 08 Feb 2007 01:27:07 +0000</pubDate>
		<dc:creator>huanix</dc:creator>
				<category><![CDATA[Server]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[x series 345]]></category>

		<guid isPermaLink="false">http://www.huanix.com/?p=25</guid>
		<description><![CDATA[It&#8217;s been several hours and two days of frustration, but i think i&#8217;m on the right path now. I thought about it last night and realized that no software is recognizing the scsi drives, even though the hardware appears to be configured correctly, I had tried a version of ServeRAID that was unsuccessful (8.10) because [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been several hours and two days of frustration, but i think i&#8217;m on the right path now. I thought about it last night and realized that no software is recognizing the scsi drives, even though the hardware appears to be configured correctly, I had tried a version of ServeRAID that was unsuccessful (8.10) because it was the latest version, but it was totally ineffective. Tonight I had the bright idea to find a part number on my scsi card (06P5737) and a quick lookup told me i had an IBM ServeRAID 4MX Ultra 160 SCSI controller. From there I used the IBM ServeRAID matrix <a href="http://www-304.ibm.com/jct01004c/systems/support/supportsite.wss/docdisplay?lndocid=SERV-RAID&amp;brandind=5000008">http://www-304.ibm.com/jct01004c/systems/support/supportsite.wss/docdisplay?lndocid=SERV-RAID&amp;brandind=5000008</a> to select ServeRAID version 7.12 ,aka 7.12.x. I THINK i&#8217;m on the right path. I must add.. i did spend several hours looking for old versions of ServeRAID v5.10 and v5.10.x, but i never located them. I&#8217;m REALLY optimistic that this Support CD will do the trick!!!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.huanix.com/2007/02/07/server-excitement/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ServeRaid Support CD</title>
		<link>http://www.huanix.com/2007/02/06/serveraid-support-cd/</link>
		<comments>http://www.huanix.com/2007/02/06/serveraid-support-cd/#comments</comments>
		<pubDate>Wed, 07 Feb 2007 03:52:43 +0000</pubDate>
		<dc:creator>huanix</dc:creator>
				<category><![CDATA[Server]]></category>
		<category><![CDATA[x series 345]]></category>

		<guid isPermaLink="false">http://www.huanix.com/?p=24</guid>
		<description><![CDATA[NOTE: The difficulties addressed in this post are resolved in: http://www.huanix.com/2007/02/08/success-at-last/ I am dedicating a mere 20 minutes to the x345 server tonight (which is a lie, because i&#8217;ve already been working on it 45 minutes)&#8230; Anyway, I THINK the ServeRAID is the place to start now, but I had some confusion about the versions [...]]]></description>
			<content:encoded><![CDATA[<p><strong>NOTE: The difficulties addressed in this post are resolved in: <a href="http://www.huanix.com/2007/02/08/success-at-last/" title="MPT boot ROM, no supported devices found">http://www.huanix.com/2007/02/08/success-at-last/</a></strong></p>
<p>I am dedicating a mere 20 minutes to the x345 server tonight (which is a lie, because i&#8217;ve already been working on it 45 minutes)&#8230; Anyway, I THINK the ServeRAID is the place to start now, but I had some confusion about the versions of the ServeRaid  &#8211; there is the &#8220;IBM ServeRAID Support CD&#8221;, which is a bootable disk, and the &#8220;IBM ServeRAID Application CD&#8221; which is a multi-platform application disk. I&#8217;ll add a screenshot of the download while i&#8217;m waiting&#8230; Wouldn&#8217;t you know it? I never thought I&#8217;d add pictures to my blog as a remote user so the directory is unwritable <img src='http://www.huanix.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p>I&#8217;ll post how this worked out tomorrow.</p>
<h4>Incoming search terms:</h4><ul><li>serveraid support cd</li><li>ibm serveraid support cd download</li><li>IBM ServeRAID Support CD</li><li>serveraid m support cd</li><li>serveraid application cd</li><li>serveraid support cd download</li><li>IBM ServeRAID Application CD download</li><li>IBM ServeRAID Application CD</li><li>serveraid m support cd serveraid</li><li>ibm serveraid support cd torrent</li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.huanix.com/2007/02/06/serveraid-support-cd/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Haven&#8217;t given up yet.</title>
		<link>http://www.huanix.com/2007/02/05/havent-given-up-yet/</link>
		<comments>http://www.huanix.com/2007/02/05/havent-given-up-yet/#comments</comments>
		<pubDate>Tue, 06 Feb 2007 05:21:35 +0000</pubDate>
		<dc:creator>huanix</dc:creator>
				<category><![CDATA[Server]]></category>
		<category><![CDATA[x series 345]]></category>

		<guid isPermaLink="false">http://www.huanix.com/?p=22</guid>
		<description><![CDATA[NOTE: The difficulties addressed in this post are resolved in: http://www.huanix.com/2007/02/08/success-at-last/ I&#8217;m tired and it&#8217;s time to go to bed. I have two more ideas that I&#8217;ll look into tomorrow: 1. Maybe the drives were placed/replaced incorrecttly and there is a termination problem that is preventing them from being recognized. 2. I think I can [...]]]></description>
			<content:encoded><![CDATA[<p><strong>NOTE: The difficulties addressed in this post are resolved in: <a href="http://www.huanix.com/2007/02/08/success-at-last/" title="MPT boot ROM, no supported devices found">http://www.huanix.com/2007/02/08/success-at-last/</a></strong></p>
<p>I&#8217;m tired and it&#8217;s time to go to bed. I have two more ideas that I&#8217;ll look into tomorrow:</p>
<p>1. Maybe the drives were placed/replaced incorrecttly and there is a termination problem that is preventing them from being recognized.</p>
<p>2. I think I can run the RServeRaid (I kept thinking it was called RaidConfig!) utility inside of an OS, so I&#8217;ll fire up a live version of Ubuntu or Knoppix and see if that will work. Tomorrow.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.huanix.com/2007/02/05/havent-given-up-yet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Server Struggles</title>
		<link>http://www.huanix.com/2007/02/05/server-struggles/</link>
		<comments>http://www.huanix.com/2007/02/05/server-struggles/#comments</comments>
		<pubDate>Tue, 06 Feb 2007 04:23:58 +0000</pubDate>
		<dc:creator>huanix</dc:creator>
				<category><![CDATA[Server]]></category>
		<category><![CDATA[x series 345]]></category>

		<guid isPermaLink="false">http://www.huanix.com/?p=21</guid>
		<description><![CDATA[NOTE: The difficulties addressed in this post are resolved in: http://www.huanix.com/2007/02/08/success-at-last/ So I&#8217;m playing with an IBM x345 51x (8760) server that my school bought for me to run some of the php code I&#8217;ve developed to help the school run more smoothly. The server arrived today, and I knew it would take some configuration, [...]]]></description>
			<content:encoded><![CDATA[<p><strong>NOTE: The difficulties addressed in this post are resolved in: <a href="http://www.huanix.com/2007/02/08/success-at-last/" title="MPT boot ROM, no supported devices found">http://www.huanix.com/2007/02/08/success-at-last/</a></strong></p>
<p>So I&#8217;m playing with an IBM x345 51x (8760) server that my school bought for me to run some of the php code I&#8217;ve developed to help the school run more smoothly. The server arrived today, and I knew it would take some configuration, and I&#8217;ve never done a fresh format of a SCSI RAID, but I&#8217;m up to the challenge.</p>
<p>The first start-up issue I notice is that there are several configuration utilities that run from BIOS at start time, they tell me to press Alt-A and Ctrl-A to administer the SCSI, but neither of them shows me the physical disks.</p>
<p>Just to be safe, I began by updating the bios from version 1.05 to 1.21. No sweat, I just hope I didn&#8217;t break anything there. I stored the old BIOS on a floppy and in the backup area of the ROM, accepting a warning that the sizes of the two bios were dissimilar and might cause a problem.</p>
<p>I perused the two utilities available through the boot process, but neither of them seemed exciting, so I looked at the documentation and found out about ServerGuide, which is supposed to help me set up a RAID. I was very excited when I saw &#8220;configure integrated controller with raid capabilities&#8221;, but it turns out it didn&#8217;t recognize the drives, probably because they&#8217;re not yet formatted (sort of what I thought ServerGuide would do). At this point I&#8217;m a little nervous b/c it doesn&#8217;t look like anything&#8217;s recognizing the SCSI disks, and I&#8217;m not sure what to do.</p>
<p>Here&#8217;s my systematic trial of boot options, beginning at the top until one of them works&#8230; if all else fails, I&#8217;ll refer to the documentation.</p>
<p>Alt-F1, System Partition Boot (Available from the Bios logo screen)<br />
Result: &#8220;Cannot boot system partition. Resuming Normal Boot&#8221; and a disk request screen pops up.</p>
<p>F2, Diagnostics, Ctrl C, LSI logics<br />
Result: I didn&#8217;t expect much here, but I&#8217;m being systematic. I see an option to enter the LSI Logic MPT SCSI Setup Utility; I take it. It&#8217;s a blue screen ANSI menu, with some very appealing options.. I&#8217;m poking around, afraid to change TOO much, but I don&#8217;t find any good options.. I do notice on the main menu it says &#8220;RAID Status &#8211;&#8221; indicating no RAID is set.. duh. I do see an option under Global Properties to &#8220;Disable Integrated RAID&#8221;, which could let me boot from one disk, but why waste a RAID?</p>
<p>F2, Diagnostics, CTRL-A, SCSI setup Utility<br />
Result: Brings me to Adaptec SCSISELECT Utility v.3.10.0. Sort of looks promising, but I&#8217;m staring at text on the screen: &#8220;29160LP A at slot 05 00:05:00&#8243; Pretty sure that&#8217;s just my SCSI adapter. Only one choice: Enter. Now TWO choices:</p>
<p>F2 == Diagnostics, CTRL-A == SCSI setup Utility, Configure/View SCSI Controller Settings.<br />
Result: One of the options is : &#8220;SCSI Device Configuration&#8221; &#8212; sounds exciting; when I choose it, I see a matrix of Options x 16 (#0 to #15) devices.. the thing is.. they&#8217;re all lit up, and I only have 6 devices. Still, this looks like a fun place to play. Here&#8217;s the rub &#8211; I like how all of the options are set. This can&#8217;t be it.</p>
<p>F2 == Diagnostics, CTRL-A == SCSI setup Utility, SCSI Disk Utilities<br />
Result: Scans SCSI devices, finds my controller, SCSI ID#7, Adaptec 29160LP. Doesn&#8217;t give me an option to do anything. Wondering if I should go look for Adaptec 29160LP software&#8230; (?)</p>
<p>F2 == Diagnostics<br />
Loading ROM Diagnostics&#8230;<br />
Starting PC DOS&#8230;<br />
PC Doctor 2.0<br />
Lots of information, but I need ACTION! It identifes the Host Adapter as ASPIMPT .. might be useful later.<br />
I also ran a SCSI/RAID controller test, which showed a PASSED score.. that&#8217;s good.</p>
<p>F12 == PXE boot<br />
I haven&#8217;t gone as far as setting up a dedicated PXE server&#8230; yet.. I&#8217;m going to pass on this for now.</p>
<p>New Gear:<br />
On the Adaptec site, it mentions the Suse may already have the controller drivers installed, so now I&#8217;m looking at installing Suse from DVD. My new challenge is to find a way to interface the DVD drive &#8211; I&#8217;m looking at a USB/IDE adapter if it will boot from USB, or modifying (breaking) the existing IDE cable by breaking the clips to add the full size drive temporarily. I hate to break the clip, but i don&#8217;t know the server well enough to take it apart to replace the cable yet.. (I&#8217;m getting the camera out!).</p>
<p>Trying to boot with a USB/IDE adapted DVD drive:<br />
Woo hoo! I have a successful USB boot. I&#8217;m using Suse 10.2; no hard disks were detected. Crap. What am I doing wrong? I must have to run some kind of pre-load software to initialize and format the drives. Now I have to find it!</p>
<p>Looking around at Adaptec:<br />
I&#8217;ve located a SCSI bios update.. not sure what good this will do me either- hopefully a magical window will appear in the bios. I downloaded the new bios, but am having difficulty determining how to install it.</p>
<p>I&#8217;m getting tired. As a last ditch, I did an F1, Configuration/Setup and looked around in there awhile. The only thing I changed was  &#8220;Partition&#8221; from invisible to &#8220;Visible&#8221;.. Not sure what the setting means, but i&#8217;m running out of ideas! Booting into Acronis to see if it will allow me to partition a drive. I&#8217;m still hung up on the whole &#8220;No SCSI BIOS found&#8221; thing. (I got excited-  i thought i heard the drives reading, but it was the cd).</p>
<p>MPT Boot ROM, no supported devices found.</p>
<p>ServerGuide</p>
<p>MPTBIOS-IME-5.04.07</p>
<p>Initializing</p>
<p>MPT boot ROM, no supported devices found.</p>
<p>No SCSI boot device found.</p>
<p>SCSI BIOS not installed</p>
<h4>Incoming search terms:</h4><ul><li>ibm x345 boot from usb</li><li>lsi logic mpt scsi setup utility</li><li>mpt boot rom no supported devices found</li><li>ibm x345 usb boot</li><li>lsi logic corp mpt boot rom no supported devices found</li><li>LSI Logic Corp MPT Boot ROM no supported devices found!</li><li>ibm x345 boot usb</li><li>mptbios-ime-5 04 07</li><li>mptbios ime 5 04 07 slow</li><li>x345 boot usb</li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.huanix.com/2007/02/05/server-struggles/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Kernel Panic</title>
		<link>http://www.huanix.com/2007/01/26/kernel-panic/</link>
		<comments>http://www.huanix.com/2007/01/26/kernel-panic/#comments</comments>
		<pubDate>Fri, 26 Jan 2007 21:17:36 +0000</pubDate>
		<dc:creator>huanix</dc:creator>
				<category><![CDATA[Apache2]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Server]]></category>

		<guid isPermaLink="false">http://www.huanix.com/?p=20</guid>
		<description><![CDATA[I&#8217;ve had a recurring kernel panic in my primary web server, the server that hosts this site. I&#8217;ve experienced random kernel panics in the past, but never to the point that I&#8217;ve needed to figure out what the problem is. Today is that day. I&#8217;ve taken a snapshot of the panic, converted it to a [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve had a recurring kernel panic in my primary web server, the server that hosts this site. I&#8217;ve experienced random kernel panics in the past, but never to the point that I&#8217;ve needed to figure out what the problem is. Today is that day. I&#8217;ve taken a snapshot of the panic, converted it to a printable format, and now I&#8217;m hunting google.. I&#8217;ll let you know what I turn up!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.huanix.com/2007/01/26/kernel-panic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Exploit? Viewing unparsed PHP code on a remote server</title>
		<link>http://www.huanix.com/2006/12/10/exploit-viewing-unparsed-php-code-on-a-remote-server/</link>
		<comments>http://www.huanix.com/2006/12/10/exploit-viewing-unparsed-php-code-on-a-remote-server/#comments</comments>
		<pubDate>Sun, 10 Dec 2006 16:49:26 +0000</pubDate>
		<dc:creator>huanix</dc:creator>
				<category><![CDATA[Apache2]]></category>
		<category><![CDATA[LAMP]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[Server]]></category>

		<guid isPermaLink="false">http://www.huanix.com/?p=14</guid>
		<description><![CDATA[I don&#8217;t know how well documented this hack is, but I dreamed it up while I was laying in bed last night, and tried it out this morning and it works. The hack requires that the target php file has been edited locally in the web directory of a linux server. Linux makes a hidden [...]]]></description>
			<content:encoded><![CDATA[<p>I don&#8217;t know how well documented this hack is, but I dreamed it up while I was laying in bed last night, and tried it out this morning and it works. The hack requires that the target php file has been edited locally in the web directory of a linux server. Linux makes a hidden backup copy of the file by appending a tilde (~) to the file name, and leaves it in the directory as a hidden file. If you access a website with this file and append a ~ to the filename, i.e. &#8220;index.php~&#8221; you will be able to view the uninterpreted php code. This seems so trivial that I&#8217;m sure it has to be documented somewhere else, though I couldn&#8217;t find it &#8211; part of it has to do with the difficulty associated with searching for special characters, and the alternate use of the ~ (home directory). </p>
<p>I have three ideas to prevent the exploit:<br />
1. Edit the Apache config file to allow php to parse &#8220;php~&#8221; files.<br />
2. Write a cron job to remove temporary backup files from the web directory.<br />
3. Manually delete ~ files from the web directory, or don&#8217;t edit files on the server. </p>
<h4>Incoming search terms:</h4><ul><li>view unparsed php</li><li>unparsed php code</li><li>how to view unparsed php</li><li>unparsed php removed</li><li>un-parsed server code</li><li>tell server return unparsed php file</li><li>svn entries exploit tool</li><li>remoteviewphp howto</li><li>read uninterpreted php scripts</li><li>read php unparsed</li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.huanix.com/2006/12/10/exploit-viewing-unparsed-php-code-on-a-remote-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stat Tracker and Learning C with Emacs</title>
		<link>http://www.huanix.com/2006/11/23/stat-tracker-and-learning-c-with-emacs/</link>
		<comments>http://www.huanix.com/2006/11/23/stat-tracker-and-learning-c-with-emacs/#comments</comments>
		<pubDate>Fri, 24 Nov 2006 05:52:56 +0000</pubDate>
		<dc:creator>huanix</dc:creator>
				<category><![CDATA[Apache2]]></category>
		<category><![CDATA[C programming]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[stat tracker]]></category>

		<guid isPermaLink="false">http://www.huanix.com/?p=8</guid>
		<description><![CDATA[I am sorry that I never resolved the Server Side Include with Apache2 yesterday. I moved on to write a php include that I could add to the header of each file. I initially had trouble because I&#8217;m currently hosting 5 sites, and using the $_SERVER['PHP_SELF'] element, many of the inserts would appear as &#8220;index.php&#8221; [...]]]></description>
			<content:encoded><![CDATA[<p>I am sorry that I never resolved the Server Side Include with Apache2 yesterday. I moved on to write a php include that I could add to the header of each file. I initially had trouble because I&#8217;m currently hosting 5 sites, and using the $_SERVER['PHP_SELF'] element, many of the inserts would appear as &#8220;index.php&#8221; without telling me which domain they were associated with. I was foolish enough to try some superceding directories, like</p>
<blockquote><p>&#8220;/../&#8221; . $_SERVER['PHP_SELF']</p></blockquote>
<p>which would return (predictably) &#8220;/../index.php&#8221;. So I eventually got the bright idea that there MUST be an array element in PHP to address this &#8211; and I lucked out! I used</p>
<blockquote><p>$_SERVER['SERVER_NAME'] . $_SERVER['PHP_SELF'];</p></blockquote>
<p>and got neat results like &#8220;www.sl7pm.com/index.php&#8221; which is EXACTLY what I wanted to see! now I can tell the difference between hits to www.sl7pm.com/index.php and www.huanix.com/index.php, which previously looked the same.</p>
<p>I will continue to work on the Server Side Include issue when I get more steam. I hate planting the same repetitive include in every file, especially when I know that I will forget where I placed in in highly-included software like phpBB and WordPress.</p>
<p>I have been thinking about taking a programming class through my local university.. I know a little, but I feel like a formal class would help me build a firm foundation. I&#8217;m looking at taking Programming I. Any feedback would be appreciated. I am currently MOST proficient with PHP, which isn&#8217;t much, but I am picking up a lot of fundamentals like arrays, switch &#038; case, and loops that I know are ubiquitous in programming.</p>
<h4>Incoming search terms:</h4><ul><li>programming stat tracker</li><li>stats tracker c</li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.huanix.com/2006/11/23/stat-tracker-and-learning-c-with-emacs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

