Thoughts on System Administration

24 March, 2008

SSH tab completion

Filed under: Quick Tips, Tools — Tags: — plathrop @ 9:57 am

This is awesome. Put the following into your ~/.bash_profile file:

complete -W "$(echo `cat ~/.ssh/known_hosts | cut -f 1 -d ' ' \
| sed -e s/,.*//g | uniq | grep -v "\["`;)" ssh

Open a new shell and type ssh tab tab. I love tab completion, don’t you?

17 March, 2008

FreeBSD Update

Filed under: Quick Tips — Tags: — plathrop @ 10:32 am

I just followed these instructions to update my server from FreeBSD 6.2-RELEASE to FreeBSD 7.0-RELEASE.

Aside from taking almost a day, it went flawlessly. I’m extremely impressed!

12 March, 2008

Virtualization Article

Filed under: Tools — Tags: — plathrop @ 10:41 am

This article might be interesting to some of you.

Bash History

Filed under: Meta, Quick Tips — Tags: — plathrop @ 10:35 am

Here are a couple of tips for more effective use of your Bash command history. I think the Ctrl-R trick will save me a lot of typing.

I have some articles planned, but have been busy starting my new job. Those few of you who actually read this, don’t worry - I’ll be back.