Search
Archives

You are currently browsing the Wanna Be Geekster blog archives for December, 2009.

Archive for December, 2009

People keep complaining about the mail server and when I go look through the log files and do various testing procedures it seems as if nothing is wrong really.  Needless to say I was searching through Google and found a nice little script that will search through your mail logs and give you some detailed information in a human readable format.  Seems as if there are quite a few neat little scripts on this page.  Oh well, it is worth checking out if you manage any Linux mailservers.

Will’s Really Useful Engines

I know this has been beaten to death. But maybe at the end of my post I will give you my bash auto-install script. I can’t say that it will be perfect, but if you have SSH access to your box, it will definitely be worth checking out!

On to the list!

1. Meta Robots – This tool is great!  Who wants to create meta tags.  Such a chore.  This little gem does it for you based on the keywords in your article!  Would rather do a little editing than create it from scratch!  Here is a direct download like for this one: download

2.  Aizatto’s Related Posts – This is another lazy webmaster tool.  Will find other posts with related keywords on your blog and link them automatically.  Here is a download for the latest version as of this post: download

3.  Cross-Linker – Yet another lazy webmaster tool.  If you constantly link keywords to webpages,  Internal links or external, then this plugin is a dream come true.  Pick your keyword and the link you want it to represent and viola.  Your pages automatically have links on them.  No highlighting and creating a link everytime.  Here is a direct link to the latest and greatest version:  download

4.  WordPress Affiliate Pro – This has got to be the best plugin ever for WordPress.  Who wants to manage affiliate links on their site?  This plugin allows you to easily type in a keyword and your affiliate link and viola.  Immediately that keyword anywhere on your blog is a new affiliate link for you.  Here are a few videos for you to check out as well:

Introduction Video

Reporting Walkthru

This is not a free plugin, but it is worth every penny!

5.  Article Marketing Automation -  This is not really a plugin per se, but it is the bees knees.  If you have been looking for free human generated content that is guaranteed to be unique, then this is your solution.  You can have an unlimited number of blogs on there post as many articles as you want.  All for free.  I mean seriously, how much better does it get?

Oh well, I have a ton of other Plugins for WordPress that totally rock.  I will save them for later though.  Best of luck and feel free to hit me up if you have any questions on any of these plugins or how to effectively use them on your site!

I am trying to build a new dedicated MySQL box on a Sun x2200 server.  I have been going through Operating Systems like mad.  Solaris, OpenSolaris, Debian, Gentoo.  Amazingly Gentoo so far has been the easiest to get everything setup and working properly.  Even better everything is compiled and optimized for my hardware specifically.

I never thought it would be this difficult though.  I really like my Sun hardware and love ZFS and the clustering capabilities of Solaris.  Oh well, can’t win them all I guess.  I am happy with Gentoo though and the performance is more than acceptable.

Using authorized_keys2 file instead of passwords is a huge time saver. Also a little bit more secure. As long as you keep your key files secure on your computer.

First a few prerequisites.

1.  You need to ensure that OpenSSH is installed on your box.

2.  You need to have connected to at least one machine.  You need to make sure that your .ssh folder is in your home directory.

Now on to the good stuff.

Here is how I do it:

1.  First you need to create a private DSA key with OpenSSH.

ssh-keygen -t dsa

It will prompt you for a password.  This is your backup to a compromised system.  You can use one if you wish, you don’t have to if you don’t want to bother with a password. This creates one file in particular that is important:  ~/.ssh/id_dsa.pub.   The other file it creates is just id_dsa and it is in the same location as well.  One is a private key, id_dsa, and the other is a public key, id_dsa.pub.

2.  Now you need to place your public key in the ~/.ssh/authorized_keys2 file on the target computer.  Depending on your setup there are a couple of ways to make this happen.  First way is to just scp the file to the new box.

scp ~/.ssh/id_dsa.pub account@my.server.com:/home/account/.ssh/authorized_keys2

Second way is to append the public key to the authorized_keys2 file on the remote machine:

cat ~/.ssh/id_dsa.pub | ssh account@my.server.com -C ‘cat – >> /home/account/.ssh/authorized_keys2′

That should pretty much do it.  Pretty simple thing you can do to help secure your machine and make connecting to your remote boxes quick and painless.

Copyright © 2010 Wanna Be Geekster. Search Engine Optimization by Star Nine. Distributed by Wordpress Themes