Trashing Computers..and Junk

I didn’t realize how much computer hardware I had acquired over the years until I came home to a very messy room this summer.

I’m typically a fairly organized individual with a clear desk and clear floor, but that sure wasn’t the case this summer.

I started sorting the “junk” in my room into different piles, one of them being an electronics pile (motherboards, wireless cards, video cards, ram, floppy drives, cd/dvd-roms, zip drives, power supplies, hard drives, tons of cables, etc).

I also didn’t realize how much I enjoied holding on to junk, but I think I reached a new level now that I can easily trash a floppy drive that’s in near “mint” condition, haha. 😛 Or the 10-20 phone cables I came across that I had saved for dial-up.

Now that I’ve collected a large garbage bag of electronics to drop off at the nearest thrift store, I can actually work efficiently once again in my room.

Hopefully I will be able to get back to blogging frequently. 😉

I’ve also been spending a lot of time lately doing some DIY repairs and detailing to several cars lately, so I might just be able to broaden the range of content on here a little more with some DIY guides. 😉

Installing Pidgin in Linux from Source

pidginAs many Linux users know by now, Gaim has been renamed for a second time to Pidgin due to legal issues with AOL over the use of ‘AIM’. Many distros of Linux operating systems still distribute the popular messenger client in older versions that are still under the title Gaim. I’m not the kind of person to use outdated software, so updating to Pidgin was one of the first things that I did when I made the move from Windows Vista to Ubuntu. I found the task to be a bit more lengthy than I had intended.

Most distros have communities that contribute packages that can install applications in a one step process by gathering all dependencies that are needed and installing them with the application. However, the great site that I’ve found for Debian packages seems to have a few packages lagging behind. I can’t have that. Who wants to install an older version of software than what is currently offered on the applications official site? Unfortunately there are no Debian packages available from Pidgin. That is not a problem! First things first:

  • Go to your Add or Remove application and completely remove anything associated with Gaim.
  • Open a terminal and install the following dev packages with the following commands (*The following terminal commands are for APT software package management systems. To use these commands with a different package manager you need to edit the syntax accordingly):
    • sudo apt-get install libglib2.0-dev
    • sudo apt-get install libxml2-dev
    • sudo aptitude install libnss-dev
    • sudo apt-get install libgtk2.0-dev
  • Go to www.Pidgin.im and download the source package.
  • Extract the source package and navigate to the folder that the files were extracted to in a terminal window.
  • You now need to configure and build Pidgin from the source files. Use the following commands in the terminal window to successfully configure Pidgin for your platform:
    • sudo ./configure
    • sudo make
    • sudo make install
  • Pidgin should now be successfully installed on your computer! You can now delete the source files that you downloaded from www.Pidgin.im.

If you experienced any problems while trying to follow this guide, please leave me a comment and I’ll try to help out. Always use Google.com to search for error messages before seeking help from others. Your questions are most likely already answered somewhere!