Welcome to thatlinuxbox.com Thursday, December 12 2024 @ 05:45 PM UTC
GatorLUG Codeslinger Programming Contest - Fall 2011
- Friday, November 18 2011 @ 05:56 PM UTC
- Contributed by: Dan Stoner
- Views: 4,638
The contest was sponsored by a local Gainesville company, Main Street Softworks, who make the Monetra payment processing software.
Contestants received these really nice t-shirts:
- read more (90 words)
- Comments (0)
Upgrading to PHP 5.3 on CentOS 5.x
- Wednesday, June 29 2011 @ 02:11 AM UTC
- Contributed by: Dan Stoner
- Views: 5,019
The default PHP packages in Centos 5.x are apparently based on the older PHP 5.1 branch. To upgrade php, just remove php and install the specific PHP 5.3 packages:
# yum remove php-common
# yum install php53-common
and any additional php packages needed such as php53-mysql, php53-pdo, ...
- Comments (0)
Shuttle XPC Glamor replacement power supply
- Tuesday, June 28 2011 @ 11:35 PM UTC
- Contributed by: Dan Stoner
- Views: 25,153
The original 300 Watt PC61 power supply was labeled with the following information:
Shuttle P/N: PPR-PC6100-L000
PC6100L-######### REV.01
MODEL NO: PC61I0002
This is a photo of the dead power supply:
I did my best to locate a cheap replacement, possibly a generic component. I was not able to locate one on the web that I was confident would work with this small case. I found the official Shuttle replacement parts listed in a PDF at the Shuttle web site. Even after I located the part I wanted, there were not many vendors who had the part in stock.
Here is a photo of the official Shuttle PSU replacement part:
- read more (76 words)
- Comments (0)
Hacker Run Swag
- Wednesday, June 15 2011 @ 11:13 PM UTC
- Contributed by: Dan Stoner
- Views: 6,126
From the Hacker Run wiki:
"Together we can push each other to compete, improve fitness, to lose weight, and relieve the stress of hacker life. So shut down your Wikileaks DDOS, put on a black running shirt and join us for the first annual HackerRun."
The swag trickled in slowly over the past two months, but I'm glad I took the time to register (and to run!).
I received this cool swag which included a really nice tech t-shirt:
- Comments (0)
LSI MegaRAID - megacli
- Monday, December 06 2010 @ 02:21 AM UTC
- Contributed by: Dan Stoner
- Views: 370,526
I recently gained my first experience with the infamous MegaCli command line configuration utility for LSI-based RAID controllers. This utility apparently also works on re-branded LSI cards from Dell (certain PERC cards) and other vendors. Our New servers from iXsystems included LSI 9260 MegaRAID adapters. These servers run FreeBSD and LSI makes a binary available for this operating system. I later noticed that megacli is also in the FreeBSD ports tree, appears to be the same version as what I downloaded from LSI, but I did not test it. The megacli utility is also available in standard repos for many Linux distributions.
I wanted to verify that the RAID controller would start an automatic rebuild. I popped out one of the drives and the very loud alarm started screaming. I waited a little bit and put the drive back in. The alarm continued and the array did not start rebuilding. It turns out that the controller has some self-defense against someone mistakenly re-inserting a bad drive so it won't start an automatic rebuild on a drive that was just disconnected and reconnected. Drives that were previously in an array are marked as "Foreign" if they are reinserted. Replacing a drive with a true spare drive off the shelf triggers an auto-rebuild just fine (unless the adapter's auto-rebuild property has been altered).
I have noticed that the binary I downloaded from the LSI web site is mixed case, whereas the version included in many distrubutions / built from source tends to use all lower-case (megacli). Be aware of this if you copy/paste commands from below.
So back to the screaming alarm...
Here is the magic command to silence the alarm:
- read more (788 words)
- Comments (0)