﻿<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/">
  <channel>
    <title>Shooting Star BBS Blog</title>
    <description>Interesting computing tidbits.</description>
    <link>http://shootingstarbbs.kicks-ass.net/dnn/ShootingStarBBS/tabid/36/BlogId/1/Default.aspx</link>
    <language>en-US</language>
    <managingEditor>admin@shootingstarbbs.kicks-ass.net</managingEditor>
    <webMaster>admin@shootingstarbbs.kicks-ass.net</webMaster>
    <pubDate>Sat, 30 Aug 2008 03:57:38 GMT</pubDate>
    <lastBuildDate>Sat, 30 Aug 2008 03:57:38 GMT</lastBuildDate>
    <docs>http://backend.userland.com/rss</docs>
    <generator>Blog RSS Generator Version 3.2.0.29758</generator>
    <item>
      <title>How I got my 4th generation 20GB iPod working again</title>
      <description>&lt;p&gt;A while back I bought a used 20GB iPod off eBay and loaded &lt;a href="http://www.rockbox.org/"&gt;Rockbox&lt;/a&gt; on it. Everything worked great for about 7 months but then it started powering up with the exclamation point folder &lt;a href="http://support.apple.com/kb/TS1405?viewlocale=en_US"&gt;icon&lt;/a&gt;. I could hear the hard drive trying to spin up but then it immediately shut down (clicking.) I figured the HD must be toast so I went back on eBay and bought a 60GB 4G color iPod (never used). I then put the broken one up for sale on &lt;a href="http://seattle.craigslist.org/"&gt;craigslist&lt;/a&gt; and had a guy e-mail me. He said to give it a good thwack because the HD cable often comes loose on these iPods. Since I already had opened the case, I went ahead and checked the HD cable. I couldn't tell if it was loose, but I pushed down on it anyway. All of the sudden the iPod booted and Rockbox loaded up! Apparently the cable &lt;em&gt;was &lt;/em&gt;loose because now it looks like the thing is working again (crosses fingers).&lt;/p&gt;
&lt;p&gt;So, if you've got a 4th gen iPod that is displaying the folder with an exclamation point icon, you might try cracking it open and pushing on the HD ribbon cable.&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;</description>
      <link>http://shootingstarbbs.kicks-ass.net/dnn/ShootingStarBBS/tabid/36/EntryID/10/Default.aspx</link>
      <author>admin@shootingstarbbs.kicks-ass.net</author>
      <comments>http://shootingstarbbs.kicks-ass.net/dnn/ShootingStarBBS/tabid/36/EntryID/10/Default.aspx#Comments</comments>
      <guid isPermaLink="true">http://shootingstarbbs.kicks-ass.net/dnn/Default.aspx?tabid=36&amp;EntryID=10</guid>
      <pubDate>Sun, 13 Jul 2008 08:00:00 GMT</pubDate>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://shootingstarbbs.kicks-ass.net/dnn/DesktopModules/Blog/Trackback.aspx?id=10</trackback:ping>
    </item>
    <item>
      <title>Tri-booting Vista, XP, and Linux</title>
      <description>&lt;p&gt;I've been successfully dual booting Vista and Linux (openSUSE) for a while now.  The trick was to install Vista first (already done when I bought the laptop) and then openSUSE.  GRUB was automatically installed and handled the dual boot situation well.&lt;/p&gt;
&lt;p&gt;But after all the problems I've had with Vista not running programs that work fine in XP (Joint Ops, SSH/SMB port forwarding--see my other blog entry, my Hauppauge TV card) I decided that I also needed to be able to boot XP.  But how do you get XP installed without clobbering GRUB or anything else? Turned out to be trickier than I thought...&lt;/p&gt;
&lt;p&gt;First step is to use Vista's Disk Manager to shrink its partition and make room for XP. I was able to free up about 13GB of space which will be enough for now. Then I formatted it as NTFS.&lt;/p&gt;
&lt;p&gt;I knew that installing XP was going to clobber GRUB by overwriting the &lt;a href="http://en.wikipedia.org/wiki/Master_boot_record"&gt;Master Boot Record&lt;/a&gt; (MBR) on my hard drive. So I fired up my trusty Knoppix boot CD and used the program DD to &lt;a href="http://www.knoppix.net/wiki/Rescue_FAQ#Q:_I.27d_like_to_backup.2Frestore_the_MBR."&gt;backup the MBR to a file&lt;/a&gt;. The trick here is to only back up part of the MBR (the first 448 bytes) because the rest contains the parition table which we don't need to mess with.&lt;/p&gt;
&lt;p&gt;Once the MBR has been backed up, you can start the XP install process. Just make sure to specify the new partition as the installation destination. No need to format it (did that above using Vista.)&lt;/p&gt;
&lt;p&gt;After XP finishes its install the computer will reboot. XP will boot up because GRUB is now toast. Let it finish the install process completely--your old partitions and data will remain untouched.&lt;/p&gt;
&lt;p&gt;Next step is to get GRUB back. Boot up Knoppix again and find that MBR backup file that was created above. Use DD again to &lt;a href="http://www.knoppix.net/wiki/Rescue_FAQ#Q:_I.27d_like_to_backup.2Frestore_the_MBR."&gt;copy the original MBR&lt;/a&gt; back to the disk.&lt;/p&gt;
&lt;p&gt;When you reboot, you should see GRUB again. But you'll notice that XP is not one of the boot options. You'll need to modify the &lt;a href="http://wiki.linuxquestions.org/wiki/Grub.conf"&gt;GRUB config file&lt;/a&gt; (usually grub.conf--depends on your version of Linux) and add an entry for XP.&lt;/p&gt;
&lt;p&gt;Once you've added XP to the list of boot options in GRUB, reboot and select it from the list. If all goes well, XP should boot up (and so should all the other OS's.)&lt;/p&gt;
&lt;p&gt;If for some reason Vista won't boot anymore, you'll need to run Vista's &lt;a href="http://www.bleepingcomputer.com/tutorials/tutorial148.html"&gt;Startup Repair&lt;/a&gt; tool to fix it.&lt;/p&gt;
&lt;p&gt;That's it!&lt;/p&gt;
&lt;p&gt;(Well not quite, at least not for me. I soon learned that HP does not provide XP drivers for my Pavilion dv6500 laptop! I had to find a &lt;a href="http://www.laptopvideo2go.com/"&gt;hacked nVidia driver&lt;/a&gt; to install--one with a &lt;a href="http://www.laptopvideo2go.com/forum/index.php?showtopic=8128"&gt;modified INF file&lt;/a&gt; to allow installing on XP, among other things. Also, since this laptop has a SATA drive controller, the XP install CD does not see it and, since I don't have a floppy drive, I couldn't hit F6 to install it! Solution was to use &lt;a href="http://www.nliteos.com/"&gt;nLite &lt;/a&gt;to create a new XP install CD with the necessary driver.)&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;</description>
      <link>http://shootingstarbbs.kicks-ass.net/dnn/ShootingStarBBS/tabid/36/EntryID/9/Default.aspx</link>
      <author>admin@shootingstarbbs.kicks-ass.net</author>
      <comments>http://shootingstarbbs.kicks-ass.net/dnn/ShootingStarBBS/tabid/36/EntryID/9/Default.aspx#Comments</comments>
      <guid isPermaLink="true">http://shootingstarbbs.kicks-ass.net/dnn/Default.aspx?tabid=36&amp;EntryID=9</guid>
      <pubDate>Sat, 10 May 2008 08:00:00 GMT</pubDate>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://shootingstarbbs.kicks-ass.net/dnn/DesktopModules/Blog/Trackback.aspx?id=9</trackback:ping>
    </item>
    <item>
      <title>Vista patch (KB942624) breaks SSH port 445 forwarding?</title>
      <description>&lt;p&gt;I'd been using OpenSSH running under Cygwin for quite a while now and just recently started port forwarding SMB so I could copy files between local and remote computers over an encrypted tunnel.  More accurately, I wanted to sync files between Windows boxes and a remote NAS device running NSLU2-Linux using robocopy.  This involved installing a loopback adapter, assigning it an IP address (10.0.0.222), then running SSH:&lt;/p&gt;
&lt;p&gt;&lt;font face="Courier New"&gt;ssh -L 10.0.0.222:445:localhost:445 &lt;/font&gt;&lt;a href="http://shootingstarbbs.kicks-ass.netmailto:user@remoteip"&gt;&lt;font face="Courier New"&gt;user@remoteip&lt;/font&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Once connected, I can see my remote Windows shares by specify a UNC path (&lt;a href="http://shootingstarbbs.kicks-ass.netfile://\\10.0.0.222"&gt;\\10.0.0.222&lt;/a&gt;) in Windows Explorer.  This was all working great until I installed Vista patch KB942624 which fixes a security issue in SMB.  It fixes it so good that now I get the following error message with the above command right after I type in my password:&lt;/p&gt;
&lt;p&gt;&lt;font face="Courier New"&gt;bind: Operation not permitted&lt;br /&gt;
channel_setup_fwd_listener: cannot listen to port: 445&lt;br /&gt;
Could not request local forwarding.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;I've tested this on three different Windows Home Premium installations with the same result.  Uninstalling the patch reverts back to expected behavior (it works again.)  So I guess I won't be installing this patch. &lt;/p&gt;</description>
      <link>http://shootingstarbbs.kicks-ass.net/dnn/ShootingStarBBS/tabid/36/EntryID/8/Default.aspx</link>
      <author>admin@shootingstarbbs.kicks-ass.net</author>
      <comments>http://shootingstarbbs.kicks-ass.net/dnn/ShootingStarBBS/tabid/36/EntryID/8/Default.aspx#Comments</comments>
      <guid isPermaLink="true">http://shootingstarbbs.kicks-ass.net/dnn/Default.aspx?tabid=36&amp;EntryID=8</guid>
      <pubDate>Sun, 16 Dec 2007 08:00:00 GMT</pubDate>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://shootingstarbbs.kicks-ass.net/dnn/DesktopModules/Blog/Trackback.aspx?id=8</trackback:ping>
    </item>
    <item>
      <title>Windows Vista--aaaaaagggghhhh!</title>
      <description>&lt;p&gt;Why did I think it'd be a good idea to upgrade to Vista when I replaced two of my computers?  Probably because every Windows upgrade I've ever done (since Win3.1) was &lt;u&gt;never&lt;/u&gt; this troublesome!  My main issue?  User Account Control.  In theory it's a great idea (stolen entirely from Unix/Linux.)  The problem is that many, many programs won't run correctly with it enabled!  My favorite game won't even run because Punk Buster boots me off the server.  Haven't found a fix for that yet.  Do anything in the Command Prompt?  Better learn how to open it in Administrative mode and even then you may have problems.  I've finally turned off UAC... we'll see if that makes my life easier.&lt;/p&gt;</description>
      <link>http://shootingstarbbs.kicks-ass.net/dnn/ShootingStarBBS/tabid/36/EntryID/7/Default.aspx</link>
      <author>admin@shootingstarbbs.kicks-ass.net</author>
      <comments>http://shootingstarbbs.kicks-ass.net/dnn/ShootingStarBBS/tabid/36/EntryID/7/Default.aspx#Comments</comments>
      <guid isPermaLink="true">http://shootingstarbbs.kicks-ass.net/dnn/Default.aspx?tabid=36&amp;EntryID=7</guid>
      <pubDate>Thu, 13 Dec 2007 08:00:00 GMT</pubDate>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://shootingstarbbs.kicks-ass.net/dnn/DesktopModules/Blog/Trackback.aspx?id=7</trackback:ping>
    </item>
    <item>
      <title>New program available for Windows Media Services -- WMS Directory Browser</title>
      <description>&lt;p&gt;&lt;font size="2"&gt;&lt;a href="http://www.microsoft.com/windows/windowsmedia/forpros/server/server.aspx"&gt;Windows Media Services&lt;/a&gt; (WMS) Directory Browser is an &lt;a href="http://en.wikipedia.org/wiki/ASP.NET"&gt;ASP.Net&lt;/a&gt; application (HTTP handler) that allows you to view and stream multimedia files when using &lt;a target="_blank" href="http://blog.crowe.co.nz/archive/2006/03/18/603.aspx"&gt;IIS directory browsing&lt;/a&gt; mode.  Please click on the link under My Apps to the right for more information.&lt;/font&gt;&lt;/p&gt;</description>
      <link>http://shootingstarbbs.kicks-ass.net/dnn/ShootingStarBBS/tabid/36/EntryID/6/Default.aspx</link>
      <author>admin@shootingstarbbs.kicks-ass.net</author>
      <comments>http://shootingstarbbs.kicks-ass.net/dnn/ShootingStarBBS/tabid/36/EntryID/6/Default.aspx#Comments</comments>
      <guid isPermaLink="true">http://shootingstarbbs.kicks-ass.net/dnn/Default.aspx?tabid=36&amp;EntryID=6</guid>
      <pubDate>Sun, 14 Oct 2007 08:00:00 GMT</pubDate>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://shootingstarbbs.kicks-ass.net/dnn/DesktopModules/Blog/Trackback.aspx?id=6</trackback:ping>
    </item>
    <item>
      <title>Get an e-mail alert when you're close to exceeding your Verizon Wireless plan minutes</title>
      <description>Using AutoHotkey and Blat, this script will e-mail you when you're at risk of exceeding your family plan minutes. </description>
      <link>http://shootingstarbbs.kicks-ass.net/dnn/ShootingStarBBS/tabid/36/EntryID/5/Default.aspx</link>
      <author>admin@shootingstarbbs.kicks-ass.net</author>
      <comments>http://shootingstarbbs.kicks-ass.net/dnn/ShootingStarBBS/tabid/36/EntryID/5/Default.aspx#Comments</comments>
      <guid isPermaLink="true">http://shootingstarbbs.kicks-ass.net/dnn/Default.aspx?tabid=36&amp;EntryID=5</guid>
      <pubDate>Wed, 12 Sep 2007 07:00:00 GMT</pubDate>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://shootingstarbbs.kicks-ass.net/dnn/DesktopModules/Blog/Trackback.aspx?id=5</trackback:ping>
    </item>
    <item>
      <title>Join the grid!</title>
      <description>&lt;p&gt;Does your computer sit idle much of the time?  If so, consider putting that idle time to good use:  join the &lt;a href="http://www.worldcommunitygrid.org/"&gt;World Community Grid&lt;/a&gt; and the Shooting Star BBS team!&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;</description>
      <link>http://shootingstarbbs.kicks-ass.net/dnn/ShootingStarBBS/tabid/36/EntryID/4/Default.aspx</link>
      <author>admin@shootingstarbbs.kicks-ass.net</author>
      <comments>http://shootingstarbbs.kicks-ass.net/dnn/ShootingStarBBS/tabid/36/EntryID/4/Default.aspx#Comments</comments>
      <guid isPermaLink="true">http://shootingstarbbs.kicks-ass.net/dnn/Default.aspx?tabid=36&amp;EntryID=4</guid>
      <pubDate>Sun, 06 May 2007 08:00:00 GMT</pubDate>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://shootingstarbbs.kicks-ass.net/dnn/DesktopModules/Blog/Trackback.aspx?id=4</trackback:ping>
    </item>
    <item>
      <title>My foray into Linux</title>
      <description>I've been playing around with Linux for a few years now, mostly just to see what all the commotion was about, not to use it on a daily basis.&lt;br&gt;&lt;br&gt;In the past I've loaded up &lt;a href="http://fedoraproject.org/wiki/"&gt;Fedora&lt;/a&gt; and have installed later versions of it since then.  It never did a very good job detecting my hardware, so things like sound and video cards had to be manually configured which usually amounted to editing conf (configuration) files--not fun. &lt;br&gt;&lt;br&gt;Lately I've been playing with several other distros including &lt;a href="http://www.ubuntu.com/"&gt;Ubuntu&lt;/a&gt;, &lt;a href="http://www.opensuse.org/"&gt;openSUSE&lt;/a&gt;, &lt;a href="http://www.mepis.org/"&gt;MEPIS&lt;/a&gt;, and &lt;a href="http://pclinuxos.com/news.php"&gt;PCLinuxOS&lt;/a&gt;.  &lt;br&gt;&lt;br&gt;Ubuntu 6.10 looked and behaved a lot like Fedora Core 6.  It also didn't detect all my hardware.  So I wasn't very impressed.&lt;br&gt;&lt;br&gt;openSUSE 10.2 did a better job detecting my hardware and I liked its layout and usability better.  But it did not detect my ATI Radeon 9800 out of the box so I had to install the Linux driver available from ATI (now AMD.)  After that I was happy and able to set up &lt;a href="http://www.go-compiz.org/index.php?title=Home:Start"&gt;Compiz&lt;/a&gt;, the 3D desktop manager.&lt;br&gt;&lt;br&gt;I also tried the MEPIS 6.5 liveCD and surprisingly it &lt;i&gt;did&lt;/i&gt; detect my video card correctly along with all my other devices.  Yay!  I also liked its menu layout and how it functioned.  Since the video card was detected, a 3D desktop (&lt;a href="http://www.beryl-project.org/"&gt;Beryl&lt;/a&gt;) was also loaded automatically.&lt;br&gt;&lt;br&gt;PCLinuxOS, like MEPIS, also automatically detected my video card but did not automatically enable 3D effects (both Beryl and Compiz are apparently supported in this distro.)  I was able to manually enable Beryl.&lt;br&gt;&lt;br&gt;At this point, I'm torn over openSUSE and MEPIS.  I'm running &lt;a href="http://www.gnome.org/"&gt;Gnome&lt;/a&gt; in openSUSE but I'm starting to think I like &lt;a href="http://www.kde.org/"&gt;KDE&lt;/a&gt; better.  I'm planning on giving it a try with openSUSE soon.&lt;br&gt;&lt;br&gt;&lt;br&gt;</description>
      <link>http://shootingstarbbs.kicks-ass.net/dnn/ShootingStarBBS/tabid/36/EntryID/3/Default.aspx</link>
      <author>admin@shootingstarbbs.kicks-ass.net</author>
      <comments>http://shootingstarbbs.kicks-ass.net/dnn/ShootingStarBBS/tabid/36/EntryID/3/Default.aspx#Comments</comments>
      <guid isPermaLink="true">http://shootingstarbbs.kicks-ass.net/dnn/Default.aspx?tabid=36&amp;EntryID=3</guid>
      <pubDate>Sat, 07 Apr 2007 07:00:00 GMT</pubDate>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://shootingstarbbs.kicks-ass.net/dnn/DesktopModules/Blog/Trackback.aspx?id=3</trackback:ping>
    </item>
    <item>
      <title>First post</title>
      <description>Welcome!&lt;br&gt;&lt;br&gt;I just installed DotNetNuke and am planning to use it as my new homepage.  Check out the links on the left and feel free to snoop around.&lt;br&gt;&lt;br&gt;&lt;div align="center"&gt;-DC-&lt;br&gt;&lt;/div&gt;</description>
      <link>http://shootingstarbbs.kicks-ass.net/dnn/ShootingStarBBS/tabid/36/EntryID/1/Default.aspx</link>
      <author>admin@shootingstarbbs.kicks-ass.net</author>
      <comments>http://shootingstarbbs.kicks-ass.net/dnn/ShootingStarBBS/tabid/36/EntryID/1/Default.aspx#Comments</comments>
      <guid isPermaLink="true">http://shootingstarbbs.kicks-ass.net/dnn/Default.aspx?tabid=36&amp;EntryID=1</guid>
      <pubDate>Fri, 28 Jul 2006 07:00:00 GMT</pubDate>
      <slash:comments>3</slash:comments>
      <trackback:ping>http://shootingstarbbs.kicks-ass.net/dnn/DesktopModules/Blog/Trackback.aspx?id=1</trackback:ping>
    </item>
    <item>
      <title>Ten tips for a better running and more secure computer</title>
      <description>&lt;p&gt;&lt;font size="2"&gt;Ok, for all those people who have Microsoft Windows computers that run slowly and produce pop-up advertisements all the time, I'm going to do you a big favor and tell you what you need to do.  The best part: ALL OF THESE SOLUTIONS ARE FREE!&lt;br /&gt;
&lt;br /&gt;
&lt;font size="2"&gt;&lt;strong&gt; 1)  Check your hard drive&lt;/strong&gt;&lt;/font&gt;&lt;br /&gt;
&lt;br /&gt;
Open a Command Prompt (click Start, Run, and type "cmd" then hit Enter) and run "chkdsk c: /f" to check for file errors on your hard drive.&lt;br /&gt;
&lt;br /&gt;
&lt;font size="2"&gt;&lt;strong&gt; 2)  Run Windows Update&lt;/strong&gt;&lt;/font&gt;&lt;br /&gt;
&lt;br /&gt;
Go to Start, Programs, and click the Windows Update icon.  You'll need to be connected to the Internet for it to work.  Make sure you download all the Critical Updates, regardless of how long it will take!&lt;br /&gt;
&lt;br /&gt;
&lt;font size="2"&gt;&lt;strong&gt; 3)  Install anti-virus sofware (and keep it updated)&lt;/strong&gt;&lt;/font&gt;&lt;br /&gt;
&lt;br /&gt;
If you aren't running anti-virus software, you're asking for trouble.  Likewise, if you &lt;em&gt;think &lt;/em&gt;you're running it but haven't updated the signature files lately, you might as well not be running anti-virus sofware at all!&lt;br /&gt;
&lt;br /&gt;
Microsoft provides a free &lt;a href="http://onecare.live.com/site/en-us/default.htm"&gt;online scanner&lt;/a&gt; (OneCare) that you can run manually.  However, you still need to install anti-virus software on your computer for continous protection.  There are some decent free solutions out there like &lt;a href="http://free.grisoft.com/doc/1"&gt;AVG&lt;/a&gt;, &lt;a href="http://www.avast.com/eng/download-avast-home.html"&gt;Avast!&lt;/a&gt;, and &lt;a href="http://www.comodogroup.com/products/free_products.html"&gt;ComodoAV&lt;/a&gt;. &lt;br /&gt;
&lt;br /&gt;
&lt;/font&gt;            &lt;font size="2" color="#ff0000"&gt;Important&lt;/font&gt;&lt;font size="2"&gt;: You should only install &lt;u&gt;one&lt;/u&gt; anti-virus app!&lt;br /&gt;
&lt;br /&gt;
&lt;font size="2"&gt;&lt;strong&gt; 4)  Install or buy a firewall&lt;/strong&gt;&lt;/font&gt;&lt;br /&gt;
&lt;br /&gt;
First, find out if you need one.  Go to &lt;a href="http://www.grc.com/intro.htm"&gt;GRC&lt;/a&gt; and click the "ShieldsUp!" link.  If it says you have open ports, or you don't even know what a port is, read on...&lt;br /&gt;
&lt;br /&gt;
Hardware firewalls are the best (most internet routers have a &lt;a href="http://en.wikipedia.org/wiki/Network_address_translation"&gt;NAT&lt;/a&gt; firewall), but software versions work too and are generally cheaper and easier to use.  If you're running Windows XP or Vista, it comes with one, you just have to make sure you &lt;a href="http://support.microsoft.com/kb/283673"&gt;turn it on&lt;/a&gt;.  Note that XP's built-in firewall is only a one-way firewall meaning that it protects your computer from external Internet connections but does not stop software on your computer from connecting to the Internet (&lt;a href="http://en.wikipedia.org/wiki/Phoning_home"&gt;phoning home&lt;/a&gt;.)&lt;br /&gt;
&lt;br /&gt;
More robust firewalls are available, like &lt;a href="http://www.zonelabs.com/store/content/catalog/products/sku_list_za.jsp"&gt;ZoneAlarm&lt;/a&gt; and &lt;a href="http://www.comodogroup.com/products/free_products.html"&gt;Comodo&lt;/a&gt; (both free.)&lt;br /&gt;
&lt;strong&gt;&lt;br /&gt;
&lt;font size="2"&gt; 5) Search for ad/spyware&lt;/font&gt;&lt;/strong&gt;&lt;br /&gt;
&lt;br /&gt;
Some anti-virus programs do this already, but just in case, you can download &lt;a href="http://www.safer-networking.org/"&gt;Spybot&lt;/a&gt; and/or &lt;a href="http://www.lavasoftusa.com/"&gt;AdAware&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;font size="2"&gt;&lt;strong&gt; 6) Firefox browser (optional)&lt;/strong&gt;&lt;/font&gt;&lt;br /&gt;
&lt;br /&gt;
If you use Internet Explorer (IE), you might want to consider switching to a different browser.  IE is known for having a lot of bugs, and even today there are still known bugs that have yet to be patched.  Some are quite serious and can put you at risk just by surfing the net!  (Do a Google search on "IE unpatched" for a sample.)&lt;br /&gt;
&lt;br /&gt;
One browser that has gotten quite popular is &lt;a href="http://www.mozilla.com/"&gt;Mozilla Firefox&lt;/a&gt;.  It even has features IE doesn't!  For example, &lt;a href="https://addons.mozilla.org/en-US/firefox/addon/10"&gt;AdBlock&lt;/a&gt; with the &lt;a href="https://addons.mozilla.org/en-US/firefox/addon/1136"&gt;Filterset.G&lt;/a&gt; updater.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font size="2"&gt;You can also download the &lt;a href="http://www.mozilla.com/en-US/thunderbird/"&gt;Thunderbird&lt;/a&gt; e-mail client which has spam-blocking built in and is a great replacement for Outlook Express.&lt;br /&gt;
&lt;br /&gt;
&lt;font size="2"&gt;&lt;strong&gt; 7) Backup, backup, backup!&lt;/strong&gt;&lt;/font&gt;&lt;br /&gt;
&lt;br /&gt;
Anyone who has used computers long enough knows the importance of backing up files.  While there are many backup programs out there (Windows even comes with one), restoring a crashed OS where all files were lost can be a nightmare, if not impossible.  Unfortunately this is often the only solution if your system is infected by a virus or your hard drive dies.  One program I use is &lt;a href="http://www.runtime.org/dixml.htm"&gt;DriveImage XML&lt;/a&gt;.  It backs up the entire partition and allows individual file restores or entire partition restores via a &lt;a href="http://www.nu2.nu/pebuilder/"&gt;BartPE&lt;/a&gt; boot CD.&lt;br /&gt;
&lt;br /&gt;
&lt;font size="2"&gt;&lt;strong&gt; 8) Use a custom hosts file&lt;/strong&gt;&lt;/font&gt;&lt;br /&gt;
&lt;br /&gt;
There is a simple text file on most modern operating systems (Windows, Mac, Linux, etc.) that can be used to both find and block Internet sites by name.  This file is known as a &lt;a href="http://en.wikipedia.org/wiki/Hosts_file"&gt;hosts file&lt;/a&gt;.  By using a custom hosts file you can block access &lt;em&gt;from&lt;/em&gt; your computer &lt;em&gt;to&lt;/em&gt; many malicious websites and unwanted advertisements residing on the Internet.  That means that when you're surfing the Internet, advertisements on websites won't be displayed &lt;em&gt;regardless &lt;/em&gt;of which browser you're using!  It also means you're less likely to contract malware and, in the unlikely event that you do (or already have), it won't have much chance of communicating with other bad sites on the Internet.  For Windows users, I recommend installing &lt;a href="http://pwp.netcabo.pt/0413933601/abelhadigital/hostsman.html"&gt;Hostsman&lt;/a&gt; to update the hosts file automatically since the list of bad websites is always changing.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font size="2"&gt;&lt;strong&gt;9) Defragment your hard drive&lt;/strong&gt;&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font size="2"&gt;Some computers, especially older ones, can start to slow down due to &lt;a href="http://en.wikipedia.org/wiki/Fragmentation_%28computer%29"&gt;fragmented&lt;/a&gt; files on the hard drive.  Windows has a built-in file defragmentor but it's not very effective.  A more effective version is &lt;a href="http://www.softpedia.com/get/System/Hard-Disk-Utils/Power-Defragmenter.shtml"&gt;Power Defragmenter&lt;/a&gt;.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font size="2"&gt;&lt;strong&gt;10) Update your computer's BIOS firmware&lt;/strong&gt;&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font size="2"&gt;Just like the software you load on your computer, there is software that resides on the hardware chips in your computer, present at the time you bought it and put there by the manufacturer.  This software (or &lt;a href="http://en.wikipedia.org/wiki/Firmware"&gt;firmware&lt;/a&gt;) is what makes your computer work and often it can be updated too.  The process for doing this is more complex because you must visit the manufacturer's website and follow their instructions for updating.  For example, if you own a Dell you can download the updated BIOS firmware from their &lt;a href="http://support.dell.com/"&gt;support site&lt;/a&gt;.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font size="2"&gt;&lt;br /&gt;
If you're interested in learning more, visit &lt;a href="http://www.cert.org/tech_tips/before_you_plug_in.html"&gt;CERT&lt;/a&gt;.  &lt;/font&gt;&lt;/p&gt;</description>
      <link>http://shootingstarbbs.kicks-ass.net/dnn/ShootingStarBBS/tabid/36/EntryID/2/Default.aspx</link>
      <author>admin@shootingstarbbs.kicks-ass.net</author>
      <comments>http://shootingstarbbs.kicks-ass.net/dnn/ShootingStarBBS/tabid/36/EntryID/2/Default.aspx#Comments</comments>
      <guid isPermaLink="true">http://shootingstarbbs.kicks-ass.net/dnn/Default.aspx?tabid=36&amp;EntryID=2</guid>
      <pubDate>Sat, 08 Apr 2006 07:00:00 GMT</pubDate>
      <slash:comments>1</slash:comments>
      <trackback:ping>http://shootingstarbbs.kicks-ass.net/dnn/DesktopModules/Blog/Trackback.aspx?id=2</trackback:ping>
    </item>
  </channel>
</rss>