Geekamongus - A Tech Blog for You

  • About
  • Contact

VMware – RHEL / CentOS 6.2 – Network Issues

Posted by dbcooper on December 27, 2011
Posted in: Linux, Network, RedHat. Leave a Comment

Howdy folks,

I just grabbed CentOS 6.2 (don’t know if it’s an issue in 6.0, 6.1), but an installation with the “Basic Server” within VMware Fusion 4.1.1 delivered no IP address etc. when leaving DHCP/NAT as the default.

Finding: Seems, either something is goofed in the dhclient or NetworkManager (now default for RHEL 6.x).

Fix: I brought the network interface up “ifup eth0″, then ran “dhclient eth0″, obtained an IP and ran “yum update -y”, after which (I noticed dhclient was in the updates), I was able to reboot and all worked well.

Not a big deal, as you could have just manually configured your network script, but maybe it will help someone. :)

  • Share this:
  • Facebook

SNORT Subscriptions for the rest of us!

Posted by dbcooper on December 4, 2011
Posted in: Linux, Network, RedHat, Security. Leave a Comment

Just wanted to point out that SourceFire allows us common folks to purchase official SNORT VRT licenses on the cheap. At the tune of $29.00 a year, yeah, I’m game.

http://www.snort.org/

Have fun!

  • Share this:
  • Facebook

Quick overview: H vs S vs E IPS monitors

Posted by dbcooper on May 29, 2011
Posted in: Geeky Greats. Leave a Comment

If your looking for a new monitor and want the very best for graphic/design usage you may want to look into an IPS display. Obviously, Apples 27 inch is sweet, but unless your a dedicated Mac user, you may want to look else where. However, I think they are the only ones with a 27 incher with all those features under a grand at this time.

Anyway, here’s a few quick and decent articles to get you started.

H-IPS vs S-IPS vs TN

List of IPS LCDs

LCD Panel Types

Keep in mind, if your a gamer, you may want to stick with the standard LCD’s at this time, especially since 3D enabled ones are decently priced and will work well with your PS3 etc.

HTH

  • Share this:
  • Facebook

WordPress and jQuery issues

Posted by willc on April 13, 2011
Posted in: Tweaks, Web Design, WordPress. Leave a Comment

First, I don’t remember where I found this along the way, but this is a smart and efficient way to include jQuery in your WordPress themes. Just add this to your theme’s functions.php file:

// ADDING JQUERY
add_action( ‘init’, ‘jquery_register’ );
add_filter( ‘script_loader_src’, ‘jquery_unversion’ );

function jquery_register() {

if ( !is_admin() ) {
wp_deregister_script( ‘jquery’ );
wp_register_script( ‘jquery’, ( ‘http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js’ ), false, ’1.x’, false );
wp_enqueue_script( ‘jquery’ );
}
}

// remove version tag to improve cache compatibility
function jquery_unversion( $src ) {

if( strpos( $src, ‘ajax.googleapis.com’ ) )
$src = remove_query_arg( ‘ver’, $src );

return $src;
}

Now, the issue I have been having is that when I try to add your own jQuery scripts or functions in your theme’s header.php file, I always get this error:

“$ is not a function”

What?  Yes it is, dammit!

Turns out WordPress has reserved the $ character, so you have to rename all occurence of $ to ‘jQuery’.  Example:

Before

<script type=”text/javascript”>
$(document).ready(function() {
$(‘.slideshow’).cycle({
fx: ‘fade’,
timeout: 4000,
speed: 2000
});
});
</script>

After

<script type=”text/javascript”>
jQuery(document).ready(function() {
jQuery(‘.slideshow’).cycle({
fx: ‘fade’,
timeout: 4000,
speed: 2000
});
});
</script>

Hope that saves someone the hours of frustration I have had with this.

  • Share this:
  • Facebook

Apple Mail “smtp.xxxx.com:xxxxx” offline

Posted by dbcooper on March 14, 2011
Posted in: Apple, Email. Leave a Comment

I have 2 gmail accounts configured under “Mail” and over the last few days 1 of my accounts when sending a new email shows the “smtp.gmail.com:xxxxx” as “Offline”, if I forced a send from it, I would have to type my password in again. Then it would send, but go back offline.

Even when re-setting the password under the Mail Account Prefs, no difference.

Here’s what worked for me.

1. Start a new message

2. Pull down the “smtp.gmail.com: xxxx” menu and select “EDIT smtp server list”

3. Click on the account that’s going “Offline”, select “Advanced”

4. Fill in the password and close.

I don’t know why, but the account that was having issues did NOT have my password saved (even though it was “saved” under the normal account preferences area).

All seems well again, even after closing and opening mail etc.

The very strange thing is, the “EDIT smtp server list” seems to be a sub-menu under the normal Account preferences, that can’t be accessed except the above way. Odd.

Hope this helps.

  • Share this:
  • Facebook

Install missing GarageBand Content (loops etc.)

Posted by dbcooper on January 24, 2011
Posted in: Uncategorized. Leave a Comment

When you’ve missed installing the GarageBand Extra Content (I.E. “GarageBand Instruments and Apple Loops”) for whatever reason,
and when GarageBand DOES NOT give you the option to install from DVD when clicking on a non-installed loop/synth etc, then you can try the following. YMMV

Note: iLife 11 doesn’t seem to have the extras on the DVD (I could have missed it though)

So, with that in mind, break out your MAC’s Applications installer disc and pop it in and download the attached instructions.

GarageBand.Extra.Content

HTH

  • Share this:
  • Facebook

$600.00 – Sandy Bridge Desktop

Posted by dbcooper on January 16, 2011
Posted in: Audio, Geeky Greats, Linux, Uncategorized. Leave a Comment

Howdy folks, been a long time……

Any who, I thought I would bring back another round of “High End Desktop for a Low End Price”, this time, I’m tossing a fresh Sandy Bridge build out there.

While my last article was pretty detailed this one will be short and sweet, but at least it will get you started in some sort of direction. Keep in mind, I’m not including Windows or additional high powered video cards etc, but you can add as needed.

This would be a really nice box for everything but Gaming (just add a nice video card). So without further blah blah blah’ing

Intel i5-2500 – 3.3 Quad Core = $209.00
Intel BOXED DH67GD Board
= $104.00
8GB of Crucial RAM
= $99.00
WD 500GB SATA 6.0Gbps
= $59.00
HEC MicroATX Case
= $35.00
Antec 650Watt PSU
= $75.00
Lite-On Dual Layer DVD Burner = $21.00

Final Cost $606.00

Additional / Optional Items:
ATI/NVIDIA Card for gaming etc. – $150+
Blu-Ray Burner = $80+
Windows 7 64bit = $99+
Nicer Antec Case = $99.00
Nicer Corsair PSU = $99.00

  • Share this:
  • Facebook

iTunes App Store Category ID’s

Posted by willc on July 13, 2010
Posted in: Apple. Leave a Comment

I’ve been developing a web app that queries the iTunes Store database. Apple doesn’t make it easy to find out category ID’s, so I figured this might save someone some time now that I have done them all.

6000 – Business
6001 – Weather
6002 – Utilities
6003 – Travel
6004 – Sports
6005 – Social Networking
6006 – Reference
6007 – Productivity
6008 – Photography
6009 – News
6010 – Navigation
6011 – Music
6012 – Lifestyle
6016 – Entertainment
6017 – Education
6018 – Books
6020 – Medical

7001 – Action
7002 – Adventure
7003 – Arcade
7004 – Board
7005 – Card
7006 – Casino
7007 – Dice
7008 – Educational
7009 – Family
7010 – Kids
7011 – Music
7012 – Puzzle
7013 – Racing
7014 – Healthcare & Fitness
7015 – Simulation
7016 – Sports
7017 – Strategy
7018 – Trivia
7019 – Word

  • Share this:
  • Facebook

Firefox 4 beta 1

Posted by willc on June 30, 2010
Posted in: Firefox, Web Browsers. Leave a Comment

Mozilla released the first beta version of Firefox 4, for public review. Version 4 of the browser is due out towards the end of the year, but you can try out the beta now by grabbing it from the nightly build page. I’ve been using it for a few hours, and I do believe it will give Chrome a run for its money in the speed department. This sucker is fast!

  • Share this:
  • Facebook

Encrypted Google Search

Posted by willc on May 31, 2010
Posted in: Google, News, Practical Security. Leave a Comment

This seems to have flown under the radar in recent weeks, but Google has launched a Beta site for using their search services over SSL.  I have it set to my default Google search page now.

Google SSL

Same URL as usual, just use https instead of http.

  • Share this:
  • Facebook

Posts navigation

← Older Entries
  • Search

  • Donate

    If you found something useful here on Geekamongus, please consider donating some mulah. It's quite a good motivator!
  • Categories

    • Apple
    • Audio
    • Black Hat
    • CPanel
    • CSS
    • Databases
    • Email
    • Facebook
    • Firefox
    • Freeware
    • Games
    • Geeky Greats
    • Google
    • Hacks
    • HTML
    • jQuery
    • Linux
    • Microsoft
    • MySQL
    • Network
    • News
    • Photoshop
    • Practical Security
    • RedHat
    • Samba
    • Security
    • Social Networking
    • Spam
    • SSH
    • Tweaks
    • Uncategorized
    • Virtualization
    • VNC
    • Web Browsers
    • Web Design
    • WordPress
  • Links

  • Archives

    • December 2011
    • May 2011
    • April 2011
    • March 2011
    • January 2011
    • July 2010
    • June 2010
    • May 2010
    • March 2010
    • January 2010
    • December 2009
    • November 2009
    • October 2009
    • September 2009
    • August 2009
    • June 2009
    • May 2009
    • April 2009
    • March 2009
    • February 2009
    • January 2009
    • December 2008
    • November 2008
    • October 2008
    • September 2008
    • August 2008
Proudly powered by WordPress Theme: Parament by Automattic.