<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Braindump &#187; Ubuntu</title>
	<atom:link href="http://www.curtis-lamasters.com/category/ubuntu/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.curtis-lamasters.com</link>
	<description>Another TechBlog</description>
	<lastBuildDate>Thu, 10 Feb 2011 05:41:53 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Apache2 on Ubuntu &#8211; OpenSSL CSR / Self Signed Cert</title>
		<link>http://www.curtis-lamasters.com/2008/07/30/apache2-on-ubuntu-openssl-csr-self-signed-cert/</link>
		<comments>http://www.curtis-lamasters.com/2008/07/30/apache2-on-ubuntu-openssl-csr-self-signed-cert/#comments</comments>
		<pubDate>Wed, 30 Jul 2008 19:49:27 +0000</pubDate>
		<dc:creator>clamasters</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.curtis-lamasters.com/?p=117</guid>
		<description><![CDATA[Seventy-five percent of the servers I have been working on over the last few months have been Linux.  Mostly Ubuntu.  This due to the fact that my company has allow me to start migrating over and building new servers on this platform.  With that, we need secure ways to access the servers.  On occasion I&#8217;ll [...]]]></description>
			<content:encoded><![CDATA[<p>Seventy-five percent of the servers I have been working on over the last few months have been Linux.  Mostly Ubuntu.  This due to the fact that my company has allow me to start migrating over and building new servers on this platform.  With that, we need secure ways to access the servers.  On occasion I&#8217;ll use <a title="Webmin" href="http://www.webmin.com" target="_blank">webmin</a> but mostly just SSH and whatever website is running on it (management, applications, etc).  Webmin takes care of itself with a self signed certificate and SSH creates its own keys.  Pretty easy there.  Now, for the website that is running on the box, out of the gate it&#8217;s unencrypted TCP/80 traffic running from an Apache 2 web server.  This short tutorial will cover how to create a CSR with OpenSSL for use when getting a certificate from one of the CA&#8217;s.  I won&#8217;t explain everything here but you may use Ubuntu&#8217;s https-help guide if you need more info found <a title="Ubuntu HTTPS Configuration" href="https://help.ubuntu.com/7.10/server/C/httpd.html#https-configuration" target="_blank">here</a>.</p>
<p>First, let&#8217;s make sure we have the right packages installed.</p>
<p><code>apt-get install openssh apache2 apache2.2-common php5</code></p>
<p>Now let&#8217;s enable SSL for apache2</p>
<p><code>sudo a2enmod ssl</code></p>
<p>Now lets create the server SSL key.</p>
<p><code>cd /etc/ssl/private</code><br />
<code>openssl genrsa -des3 -out dns.server.com.key 1024</code></p>
<p>Ok, now that we have the key, let&#8217;s create the CSR to be given to the CA.</p>
<p><code>openssl req -new -key dns.server.com.key -out dns.server.com.csr</code></p>
<p>It will prompt you for the passphrase and some other bits of information.  The most important one is site name.  This must match the name of your server.  Something like mail.domain.com or www.domain.com would be appropriate here.</p>
<p>The CSR can now be uploaded to whatever CA you choose.  I use <a title="GoDaddy SSL" href="https://www.godaddy.com/gdshop/ssl/ssl.asp?ci=8979" target="_blank">GoDaddy</a> because they are so cheap.</p>
<p>If you do not want to purchase a certificate you can create your own self signed cert with the following command.</p>
<p><code>openssl x509 -req -days 365 -in dns.server.com.csr -signkey dns.server.com.key -out dns.server.com.crt</code><br />
<code>cp /etc/ssl/private/dns.server.com.crt /etc/ssl/certs</code></p>
<p>Now that we have the cert created, let&#8217;s configure Apache to use it. Add the following 3 lines to your website configuration.  The default one is located in /etc/apache2/sites-available/default.</p>
<p><code>SSLEngine on<br />
SSLCertificateFile /etc/ssl/certs/dns.server.com.crt<br />
SSLCertificateKeyFile /etc/ssl/private/dns.server.com.key</code></p>
<p>Save that config file and enable Apache to listen on 443 for HTTPS traffic.  Add the following line to /etc/apache2/ports.conf</p>
<p><code>Listen 443</code></p>
<p>Restart your Apache2 process and you should have a fully functional SSL enabled website.</p>
<p><code>/etc/init.d/apache2 force-reload &amp;&amp; /etc/init.d/apache2/restart</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.curtis-lamasters.com/2008/07/30/apache2-on-ubuntu-openssl-csr-self-signed-cert/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>60 second vi intro</title>
		<link>http://www.curtis-lamasters.com/2008/07/30/60-second-vi-intro/</link>
		<comments>http://www.curtis-lamasters.com/2008/07/30/60-second-vi-intro/#comments</comments>
		<pubDate>Wed, 30 Jul 2008 18:53:05 +0000</pubDate>
		<dc:creator>clamasters</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.curtis-lamasters.com/?p=109</guid>
		<description><![CDATA[vi is neat.Â  Most of the engineers I work with like nano or pico but I like vi.Â  For some reason it makes me feel more like a geek when I&#8217;m using it.Â  In fact, I&#8217;ve been using it so often lately that I have been trying to use vi command in notepad (obviously without [...]]]></description>
			<content:encoded><![CDATA[<p>vi is neat.Â  Most of the engineers I work with like nano or pico but I like vi.Â  For some reason it makes me feel more like a geek when I&#8217;m using it.Â  In fact, I&#8217;ve been using it so often lately that I have been trying to use vi command in notepad (obviously without success).Â  This tutorial will cover only the basics but that should be enough to get you started.Â  A much better tutorial is available <a title="Perdue VI Tutorial" href="https://engineering.purdue.edu/ECN/Support/KB/Docs/ViTextEditorTutorial/printerfriendly" target="_blank">here</a>.</p>
<p><code>vi /etc/network/interfaces - opens /etc/network/interfaces in vi</code></p>
<p><code>i - insert<br />
/ - search<br />
G - [Shift] g - go to bottom of page<br />
dd - delete the line<br />
d &lt;- or d -&gt; - d [left or right arrow] delete 1 character in that direction<br />
10G - 10 [Shift] g - move to line 10 (obviously number can be replaced)<br />
10dd - delete 10 lines from cursor and below (again, number can be changed)<br />
:q - quit (no changes may have been made)<br />
:q! - quit (do not save changes)<br />
:wq - write quite (save and quit)<br />
:w - write (save)</code></p>
<p>Ok, now that you have mastered the basics of vi, please refer all other needs to the link provided above.Â  Hope you like vi as much as I do.</p>
<p>NOTE:Â  Ubuntu (and maybe debian) have a few things that the built in vi program have that seem a little strange.Â  I usually install vim just to be safe.Â  to do this run <code>sudo apt-get install vim-full.<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.curtis-lamasters.com/2008/07/30/60-second-vi-intro/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu &#8211; Prevent a package from being updated</title>
		<link>http://www.curtis-lamasters.com/2008/06/22/ubuntu-prevent-a-package-from-being-updated/</link>
		<comments>http://www.curtis-lamasters.com/2008/06/22/ubuntu-prevent-a-package-from-being-updated/#comments</comments>
		<pubDate>Sun, 22 Jun 2008 06:17:59 +0000</pubDate>
		<dc:creator>clamasters</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.curtis-lamasters.com/?p=91</guid>
		<description><![CDATA[The original post for this is from the Ubuntu Geek website but I learned something new from it so I thought I would share my new favorite way to keep a package from being updated in Ubuntu.Â  This goes for pretty much any of the newer releases of Ubuntu.Â  I used to use dpkg to [...]]]></description>
			<content:encoded><![CDATA[<p>The original post for this is from the <a title="Ubuntu Geek" href="http://www.ubuntugeek.com/how-to-prevent-a-package-from-being-updated-in-ubuntu.html" target="_blank">Ubuntu Geek</a> website but I learned something new from it so I thought I would share my new favorite way to keep a package from being updated in Ubuntu.Â  This goes for pretty much any of the newer releases of Ubuntu.Â  I used to use dpkg to do this but now I like aptitude much better.Â  It&#8217;s easier for me.</p>
<p>To put a package on hold use this command.</p>
<p><code>sudo aptitude hold snort-mysql</code></p>
<p>To remove the hold use this command.</p>
<p><code>sudo aptitude unhold snort-mysql</code></p>
<p>To keep your entire system (I think) from being updated simply use this command.</p>
<p><code>sudo aptitude hold</code></p>
<p>And to remove the hold use this command.</p>
<p><code>sudo aptitude unhold</code></p>
<p>Very easy isn&#8217;t it.Â  Yep, that&#8217;s what I thought. I&#8217;ll be able to deploy appliances in the field now without worrying if an update is going to break something before I get a chance to fix the issue.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.curtis-lamasters.com/2008/06/22/ubuntu-prevent-a-package-from-being-updated/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting Ubuntu Ready for &#8220;REAL&#8221; use&#8230;</title>
		<link>http://www.curtis-lamasters.com/2008/05/30/getting-ubuntu-ready-for-real-use/</link>
		<comments>http://www.curtis-lamasters.com/2008/05/30/getting-ubuntu-ready-for-real-use/#comments</comments>
		<pubDate>Sat, 31 May 2008 05:49:40 +0000</pubDate>
		<dc:creator>clamasters</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.curtis-lamasters.com/?p=78</guid>
		<description><![CDATA[I love Ubuntu&#8230;it&#8217;s undubitably the best free OS on the planet. However, there is one thing that I absolutely hate about Ubuntu.. My inability to SSH into the system from anywhere. I know it is this way by design and that it&#8217;s a &#8220;security&#8221; feature but it still annoys me. So the following commands are [...]]]></description>
			<content:encoded><![CDATA[<p>I love Ubuntu&#8230;it&#8217;s undubitably the best free OS on the planet.  However, there is one thing that I absolutely hate about Ubuntu..  My inability to SSH into the system from anywhere.  I know it is this way by design and that it&#8217;s a &#8220;security&#8221; feature but it still annoys me.  So the following commands are what I use to get the system ready for use after a fresh install.</p>
<p><code>apt-get install openssh-server openssh-client</code></p>
<p>That&#8217;s it.  If you want to play around a little more you can configure Ubuntu&#8217;s firewall in just a few simple steps as well.  In my example I will enable tcp/80, tcp/443, tcp/22 and udp/53 inbound.</p>
<p><code>ufw disable</code><br />
<code>ufw allow 80/tcp</code><br />
<code>ufw allow 443/tcp</code><br />
<code>ufw allow 22/tcp</code><br />
<code>ufw allow udp/53</code><br />
<code>ufw enable</code></p>
<p>And then you can validate what you have entered with:</p>
<p><code>ufw status</code></p>
<p>The output will be similar to this:</p>
<p><code>Firewall loaded</code></p>
<p><code>To                         Action  From</code><br />
&#8211;                         &#8212;&#8212;  &#8212;-<br />
<code>80:tcp                     ALLOW   Anywhere</code><br />
<code>443:tcp                  ALLOW   Anywhere</code><br />
<code>22:tcp                     ALLOW   Anywhere</code><br />
<code>53:udp                     ALLOW   Anywhere</code></p>
<p>And that&#8217;s really all I do&#8230;it&#8217;s definately not much but it will be enough to get you started connecting remotely.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.curtis-lamasters.com/2008/05/30/getting-ubuntu-ready-for-real-use/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows / Linux Software Equivalents</title>
		<link>http://www.curtis-lamasters.com/2007/11/01/windows-linux-software-equivalents/</link>
		<comments>http://www.curtis-lamasters.com/2007/11/01/windows-linux-software-equivalents/#comments</comments>
		<pubDate>Thu, 01 Nov 2007 18:00:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://wordpress.curtis-lamasters.com/?p=44</guid>
		<description><![CDATA[Windows is definitely the big player in the game still, however Linux usage is gaining some steam. This post is going to concentrate on what programs you can use to make the switch to Linux. This process is not going to be entirely pain free if you are an avid user of all things computer [...]]]></description>
			<content:encoded><![CDATA[<p>Windows is definitely the big player in the game still, however Linux usage is gaining some steam. This post is going to concentrate on what programs you can use to make the switch to Linux. This process is not going to be entirely pain free if you are an avid user of all things computer related, however, if you are just a basic office user/worker or only need to check your email and play a few basic online games, Linux might be for you. There are literally thousands of choices for most applications out there so I&#8217;m only going to name the ones that I like or use and also only ones that work on Ubuntu. If you have any additions, please let me know.</p>
<p>Windows vs. Linux (Ubuntu)</p>
<p><span style="font-weight: bold">Internet Browsing</span><br />
W &#8211; Internet Explorer<br />
U &#8211; Firefox</p>
<p><span style="font-weight: bold">Email Clients</span><br />
W &#8211; Outlook, Outlook Express<br />
U &#8211; Thunderbird, Evolution</p>
<p><span style="font-weight: bold">Chat Clients</span><br />
W &#8211; MSN, Yahoo, Google Talk, AIM, mIRC<br />
U- Gaim / Pigdin, xChat, BitchX</p>
<p><span style="font-weight: bold">Com Port Communications</span><br />
W &#8211; Hyperterminal<br />
U &#8211; MiniCom</p>
<p><span style="font-weight: bold">FTP Client</span><br />
W &#8211; Filezilla FTP Client<br />
U &#8211; Filezilla FTP Client</p>
<p><span style="font-weight: bold">Remote Access Servers</span><br />
W &#8211; Terminal Server, RealVNC, TightVNC, WinVNC<br />
U &#8211; FreeNX, RealVNC, TightVNC</p>
<p><span style="font-weight: bold">P2P Filesharing</span><br />
W &#8211; Limewire, Bearshare, Bittorrent<br />
U &#8211; Limewire, Azureus</p>
<p><span style="font-weight: bold">VoIP Clients</span><br />
W &#8211; Skype, X-Lite<br />
U &#8211; Skype, Linphone, Twinkle</p>
<p><span style="font-weight: bold">Drawing / Photo Editing</span><br />
W &#8211; Paint.net, Photoshop, MSPaint<br />
U &#8211; GIMP<br />
<span style="font-weight: bold">3D Annimation / Rendering</span><br />
W &#8211;  3D Studio MAX, Blender<br />
U &#8211; Blender, Maya</p>
<p><span style="font-weight: bold">DVD Players</span><br />
W &#8211;  Windows Media Player, PowerDVD<br />
U &#8211; MPlayer, Kaffine, VLC</p>
<p><span style="font-weight: bold">MP3 / Music Players</span><br />
W &#8211;  Winamp, iTunes<br />
U &#8211; RhymeBox, K3b</p>
<p><span style="font-weight: bold">Office Productivity</span><br />
W &#8211; Microsoft Office<br />
U &#8211; OpenOffice.org</p>
<p><span style="font-weight: bold">Network / Relation Mapping</span><br />
W &#8211; Microsoft Visio<br />
U &#8211; Dia</p>
<p><span style="font-weight: bold">Accounting / Financial</span><br />
W &#8211; Quicken, Microsoft Money<br />
U &#8211; GnuCash</p>
<p><span style="font-weight: bold">Desktop Publishing</span><br />
W &#8211; Microsoft Publisher, Quark<br />
U &#8211; Scribus</p>
<p><span style="font-weight: bold">PDF Editing</span><br />
W &#8211; Adobe Acrobat Professional<br />
U &#8211; PDFEdit, pdftk</p>
<p><span style="font-weight: bold">Imaging</span><br />
W &#8211; Norton Ghost<br />
U &#8211; G4u, dd</p>
<p><span style="font-weight: bold">Partition Resizing</span><br />
W &#8211; Norton Partition Magic<br />
U &#8211; GParted</p>
<p><span style="font-weight: bold">Backup Software</span><br />
W &#8211; Symantec Backup Exec<br />
U &#8211; BackupPC, Amanda</p>
<p><span style="font-weight: bold">Web Servers</span><br />
W &#8211; Microsoft IIS<br />
U &#8211; Apache</p>
<p><span style="font-weight: bold">File Servers</span><br />
W &#8211; Microsoft File Services<br />
U &#8211; Samba</p>
<p><span style="font-weight: bold">Email Servers</span><br />
W &#8211; Microsoft Exchange<br />
U &#8211; Postfix, Sendmail</p>
<p><span style="font-weight: bold">AntiVirus Software</span><br />
W &#8211; Symantec AV, Mcafee<br />
U &#8211; ClamAV, AVG</p>
<p>For more of these &#8220;like&#8221; software lists, please visit what I believe to be the most complete list on the internet, <a href="http://www.nawaz.org/wiki/index.php?title=Table_of_Equivalents">Table of Equivalents.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.curtis-lamasters.com/2007/11/01/windows-linux-software-equivalents/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Everyday Free Tools &#8211; Tech Stuff</title>
		<link>http://www.curtis-lamasters.com/2007/09/16/everyday-free-tools-tech-stuff/</link>
		<comments>http://www.curtis-lamasters.com/2007/09/16/everyday-free-tools-tech-stuff/#comments</comments>
		<pubDate>Sun, 16 Sep 2007 18:00:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[pfSense]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://wordpress.curtis-lamasters.com/?p=35</guid>
		<description><![CDATA[Each and every day I use a set of tools, mostly free or open source ones that help me get through the day. I though I would list of a few of them for you so that you can give them a shot as well. Home Computer I have a Panasonic Toughbook laptop running Ubuntu [...]]]></description>
			<content:encoded><![CDATA[<p>Each and every day I use a set of tools, mostly free or open source ones that help me get through the day. I though I would list of a few of them for you so that you can give them a shot as well.</p>
<p><span style="font-weight: bold">Home Computer</span></p>
<p>I have a Panasonic Toughbook laptop running Ubuntu 7.04 that I really haven&#8217;t modified too awful much because I like the look and feel of the OS as it is. Here&#8217;s a list of things that I use everyday or every so often to accomplish a task without spending any money.</p>
<p><span style="font-weight: bold">Operating System</span> &#8211; <a href="http://www.ubuntu.com/">Ubuntu 7.04</a> &#8211; Stable, clean, easy to install, based on GNOME and very well supported by the community.  I would say that the <a href="http://www.ubuntuforums.org/">forums</a> for Ubuntu are better than most and for some reason, the users of Ubuntu are much nicer than that of Red Hat and others.</p>
<p><span style="font-weight: bold">Blogging</span> &#8211; <a href="http://www.blogger.com/">Blogger.com</a> attached to my Gmail account (I do my own hosting)</p>
<p><span style="font-weight: bold">Firewall </span>- <a href="http://www.pfsense.com/">pfSense</a> &#8211; I mentioned this a few post&#8217;s ago.  I absolutely love this firewall.</p>
<p><span style="font-weight: bold">Document Management</span> &#8211; <a href="http://docs.google.com/">Google Doc&#8217;s and Spreadsheets</a> &#8211; This one is really neat, you can upload your Microsoft Office Word and Excel files as well as OpenOffice equivalent documents up to Google, edit them, and even save off as PDF documents if need be.</p>
<p><span style="font-weight: bold">Music</span> &#8211; <a href="http://www.pandora.com/">Pandora.com</a> &#8211; This site has been around for a little while now, It allows you to basically make your own radio station, and it dynamically learns what music you want to listen to. A side spawn of this project is <a href="http://www.slimdevices.com/su_downloads.html">Squeezebox</a> which allows you to turn your music library into a radio station with streaming music.</p>
<p><span style="font-weight: bold">Chat</span> &#8211; Gaim &#8211; It&#8217;s easy to use, installed by default on Ubuntu, and supports multiple accounts. On Linux and Windows you can use <a href="http://sourceforge.net/projects/pidgin/">Pidgin</a> and for Mac OS X you can use <a href="http://www.adiumx.com/">Adium</a>.</p>
<p><span style="font-weight: bold">VoIP</span> &#8211; <a href="http://www.twinklephone.com/">Twinkle</a> &#8211; So far this is the best SIP capable client for Linux I have found. You can installed it through apt-get or Synaptic on Ubuntu or download it here. On Windows and Mac OS X I use X-Lite from CounterPath. I would say X-Lite is the best of the two but the Linux version sucks in my opinion.</p>
<p><span style="font-weight: bold">PBX</span> &#8211; <a href="http://www.trixbox.org/">trixbox</a> &#8211; I just started using this because I&#8217;m trying to get my company or rather the company I work for into a new market so that we can make some more money as a company which personally helps me through profit sharing. Though, if I didn&#8217;t get that last bit, I would still peruse doing phone VoIP systems because I think they are interesting. I have it installed on an old PIII 500 with 256Mb of ram and it suits the needs of my wife an I just fine. A larger scale deployment would need a better server though.</p>
<p><span style="font-weight: bold">Email</span> &#8211; <a href="http://www.gmail.com/">Gmail</a> and <a href="http://www.gnome.org/projects/evolution/">Evolution</a> &#8211; I just started using Evolution about a month ago because Outlook Web Access on Microsoft Exchange 2003 sucks when viewed from Firefox. Damn Microsoft. <img src='http://www.curtis-lamasters.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Kidding. Evolution seemed to be a logical choice for me because well, it was already installed on my computer and quite frankly I needed a way to check my mail. Sounds like a match made in heaven. Gmail, as you all probably know, is free and has cool features like web sharable calendars, documents and photos. You will probably see a trend here for me liking everything Google.</p>
<p>I think that&#8217;s enough for now. I&#8217;ll make a part 2 to this one pretty soon with quite a few more added programs and services that I use everyday for free. Compute free or die.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.curtis-lamasters.com/2007/09/16/everyday-free-tools-tech-stuff/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Broadcom BCM4306 on Ubuntu Feisty Fawn</title>
		<link>http://www.curtis-lamasters.com/2007/07/12/broadcom-bcm4306-on-ubuntu-feisty-fawn/</link>
		<comments>http://www.curtis-lamasters.com/2007/07/12/broadcom-bcm4306-on-ubuntu-feisty-fawn/#comments</comments>
		<pubDate>Thu, 12 Jul 2007 19:00:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://wordpress.curtis-lamasters.com/?p=18</guid>
		<description><![CDATA[In my last post I mentioned that I needed to install a non standard package to get my laptop wireless device working. Well, I decided that because it took me about 20-25 minutes to find the fix for this I would post it so I can save someone some unneeded grief. To get the wireless [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://wordpress.curtis-lamasters.com/wp-content/uploads/2008/01/ubuntu-disk.jpg" title="Ubuntu Disks"><img src="http://wordpress.curtis-lamasters.com/wp-content/uploads/2008/01/ubuntu-disk.jpg" alt="Ubuntu Disks" /></a>In my last post I mentioned that I needed to install a non standard package to get my laptop wireless device working. Well, I decided that because it took me about 20-25 minutes to find the fix for this I would post it so I can save someone some unneeded grief.</p>
<p>To get the wireless hardware working with the OS most people recommend NDISWrappers but the easiest and most supported was is to use Synaptic (the package manager) to install bcm43xx-fwcutter which is nothing more than the firmware that the kernel needs to load during the boot process to make the Wireless NIC usable. After installation just reboot and the viola you have a working Broadcom wireless NIC which supports pretty much any encryption method available.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.curtis-lamasters.com/2007/07/12/broadcom-bcm4306-on-ubuntu-feisty-fawn/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>And then there was Ubuntu&#8230;</title>
		<link>http://www.curtis-lamasters.com/2007/07/12/and-then-there-was-ubuntu/</link>
		<comments>http://www.curtis-lamasters.com/2007/07/12/and-then-there-was-ubuntu/#comments</comments>
		<pubDate>Thu, 12 Jul 2007 18:00:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://wordpress.curtis-lamasters.com/?p=16</guid>
		<description><![CDATA[Quite recently my eyes were opened to a Linux distribution called Ubuntu. The latest release from the open source company Canonical is called Feisty Fawn. How can you deny or refuse a name like that. Well, I figured I would dedicate a post to how much I truely enjoy the OS vs it&#8217;s or Linux [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://wordpress.curtis-lamasters.com/wp-content/uploads/2008/01/ubuntu.jpg" title="Ubuntu Logo"><img src="http://wordpress.curtis-lamasters.com/wp-content/uploads/2008/01/ubuntu.jpg" alt="Ubuntu Logo" /></a>Quite recently my eyes were opened to a Linux distribution called Ubuntu. The latest release from the open source company Canonical is called Feisty Fawn. How can you deny or refuse a name like that. <img src='http://www.curtis-lamasters.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Well, I figured I would dedicate a post to how much I truely enjoy the OS vs it&#8217;s or Linux competitors as well as the big Microsoft. The installation disk is easily available via http://www.ubuntu.com where you can either download it or have 1 or more copies sent to you via snailmail (I get 25 because I&#8217;m a consultant). On the install CD (not DVD) there are a few cool features that make the product stand out from the rest like a suite of open source Windows apps that can be installed directly from the CD to include Firefox, Thunderbird, Clam AV, and others. Truly unique. Then when you boot from the CD you actually boot to a live distribution where you can either use the live CD to see if you will actually like the or install it to your hard drive via a very intuitive wizard. The wizard asks you a few non technical questions and guides you through the install. You can dual boot with Windows or another OS or just wipe the drive and start fresh.</p>
<p>On a side note, because of how well setup the live CD is, you can actually read and write to the NTFS, FAT or other drive that you have in your computer as a quick and easy disk recovery tool. Still not impressed. Ok, I really haven&#8217;t told you very much but for the novice user these fundamental options make the OS very attractive. After you go through the install, you reboot and come up to a login window and then into the operating system. The only thing that my laptop needed done in addition to the OS install is the installation of the Broadcom WIFI card firmware for my specific hardware which was easily done in Ubuntu&#8217;s intuitive package manager, Synaptic. Synaptic is a front end for apt-get that makes installing and updating packages a synch.</p>
<p>I usually judge a product by it&#8217;s &#8220;Out of the Box&#8221; features. As for Ubuntu, the OS installs, Firefox, Evolution Mail, Gaim, OpenOffice, graphics rendering software, a photo viewer, a suite a games, and a terminal services client. So in my opinion, it&#8217;s already a step ahead of Microsoft. Accessing shares and other network resources is quite simple just like in XP and has a neat feature that saves the user name and password for a particular network resource in it&#8217;s password manager.</p>
<p>I plan to do a few more blog entires regarding the use and utilization of Ubuntu in the home, business and corporate environment on both the client and server end of the spectrum. As the OS is still a Linux derivative, it can run Postfix, Sendmail, Apache, MySQL, Spam assassin, and all of the server centric applications that we rely on everyday. Hope you all at least give the OS a try, I&#8217;ll have my first Ubuntu &#8220;how-to&#8221; on here soon for your enjoyment.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.curtis-lamasters.com/2007/07/12/and-then-there-was-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

