From the category archives:

Linux

Feeding The Multitudes with Unbuntu Linux Christian Edition

by Ron Bieber on Sunday, January 25, 2009

Photo by rbieber

I found a reference to the Ubuntu Linux Christian Edition site from the Unix and Linux Menagerie blog and just had to download it and try it out.

This is my stupid attempt at humor. Christian geeks will get it, I hope. I actually downloaded it because I’m interested in the filtering that comes as part of the distro.

{ 0 comments }

Creating a self signed SSL Certificate – A Brain Dead Script

by Ron Bieber on Tuesday, December 6, 2005

I have an SSL instance running in the house so that I can access my home Subversion installation remotely. The certificate I generated for this site expired a few months ago and I have procrastinated regenerating it because I seemed to remember it was complicated and I didn’t want to spend the time.

Well, it winds up its not that bad. I found a great summary of the commands necessary in order to do it, and threw together a very quick script to string them all together in order to create SSL certificates for a general host name and figured I’d throw it up here.

I generalized it thinking that I could have two certificates for the virtual hosts I have running on my home server. Unless I’m looking at old information, however, it doesn’t seem that you can have different SSL certificates for virtual hosts running on the same IP address under Apache 2. If you can, and someone knows how to configure Apache to do so, please let me know.

Here’s the script I used to generate the self signed SSL certificates for the house. Super simple. Now I just have to remember to source the script ;) .

#!/bin/bash
# Cert4Host.sh - Generate SSL Certificates for a host name.

HOSTNAME="$1";

if [ -z "${HOSTNAME}" ]; then
echo "Usage : Cert4Host.sh HOSTNAME";
exit;
fi

if [ ! -e pass.key ]; then
openssl genrsa -des3 -out pass.key 1024
else
echo "Key already exists ... skipping ..."
fi

openssl rsa -in pass.key -out $HOSTNAME.key
openssl req -new -key $HOSTNAME.key -x509 -out $HOSTNAME.crt -days 999

sudo cp $HOSTNAME.key /usr/local/apache2/conf/ssl.key
sudo cp $HOSTNAME.crt /usr/local/apache2/conf/ssl.crt

Don’t forget to change your Apache SSL configuration to point to the new certificate and key (<hostname>.crt and <hostname>.key, respectively) and restart Apache.

{ Comments on this entry are closed }

SCO describes alleged IBM Unix misuse to court

by Ron Bieber on Tuesday, November 1, 2005

SCO describes alleged IBM Unix misuse to court – News.com

{ Comments on this entry are closed }

Report: Open source years from mainstream

by Ron Bieber September 10, 2005 Linux

Report: Open source years from mainstream – Leading edge businesses are still in early stages of Linux deployments.

Read the full article →

SuSE Goes Community?

by Ron Bieber August 4, 2005 Linux

SuSE Goes Community – Novell following Red Hats lead and creating a community version of its professional operating system?

Read the full article →

Linus is My Home Boy

by Ron Bieber July 29, 2005 Linux

Jacob sent me a link to this Linus is my Home Boy shirt, thinking I would like it. I think I do!

Read the full article →

Slashdot: Disney, DreamWorks, Pixar Go Linux

by Ron Bieber July 27, 2005 Linux

Slashdot: Disney, DreamWorks, Pixar Go Linux

Read the full article →

From Slashdot : Unsealed SCO Email Reveals Linux Code is Clean

by Ron Bieber July 15, 2005 Linux

Slashdot points to this article on Groklaw, which makes public a recently unnsealed email which states that the Linux Kernel is free of SCO intellectual property.

Read the full article →

SCO updates Unix product, open-source attitude | CNET News.com

by Ron Bieber June 24, 2005 Linux

From Slashdot: SCO updates Unix product, open-source attitude | CNET News.com For some reason I just have a problem with these guys filing lawsuits regarding Open Source software and then using it in their own product. But that’s just me.

Read the full article →

Mandriva Aquires Lycoris

by Ron Bieber June 17, 2005 Linux

I received an announcement today on the Lycoris mailing list stating that Mandriva (formerly MandrakeSoft, creators of Mandrake Linux) have acquired Lycoris. Lycoris was started by Joseph Cheek in an effort to create a user friendly, Linux environment that was “easy for everyone”. I actually bought the Lycoris system back when it was Redmond Linux [...]

Read the full article →

Red Hat Magazine – The Patent Promise

by Ron Bieber November 25, 2004 Linux

There’s an article in this months Red Hat Magazine (new this month) called “The Red Hat Patent Promise: Encouraging Innovation” that is a good follow up reading on companies using patent law to protect open source software. Kind of a “Rah Rah” article for Red Hat, but it does show one thing they’re doing right.

Read the full article →

Mozilla FireFox 1.0

by Ron Bieber November 9, 2004 Linux

I downloaded Mozilla Firefox 1.0 today and browsed around with it a little this morning. Wow, what a difference! Speed wise it’s much better than the Mozilla browser. I was able to install the Flash Player Plugin without any human intervention whatsoever — on Linux! While I’ve only goofed around with the browser a little [...]

Read the full article →

Novell Ships Enterprise Desktop Product

by Ron Bieber November 8, 2004 Linux

According to Novell.com, Novell has released their enterprise desktop distribution, Novell Linux Desktop. You can read the press release on their web site. I started running SuSE Linux when Redhat stopped doing retail distributions in lieu of the Fedora Project and never looked back. I had run SuSE 8 back in the day and wasn’t [...]

Read the full article →