Posts Tagged ‘Linux’

Living with Linux: Time to Put Up or Shut Up

Thursday, June 8th, 2006

image

Dude, am I gettin’ a Dell?

I’ve been boasting to anyone who will listen that I’m willing to buy the first laptop that I can find on sale for $500 CAD or less. The ugly beast above isn’t quite that cheap, but for $649 I can get some pretty decent upgrades for free, including the all-important leather carrying case!

I only have until the end of today to decide, so feel free to send any of your wisdom my way. And in case you’re wondering…

1. What’s wrong with that other Dell you’ve been mucking around with?

The mighty Inspiron 7500, you mean? Considering it’s age, it’s more than lived up to my expectations. I currently have it running pretty smoothly under Xubuntu, a lightweight Linux distro optimized for older machines. But it has neither a battery or sound card, so is ultimately of limited use.

2. You giving up on Mac or something?!

Certainly not yet. All the video stuff I do requires it. But for basic internet and office tasks I not only think that the Mac is overkill, but that their software in this category is pretty crappy, especially when compared to free Linux alternatives. Consider also that for the price of one new MacBook I could get almost three of these Dell machines—and I don’t have to pay a premium for a modem or the colour black!

So while I’ve been testing out Ubuntu, Kubuntu and Xubuntu here and there, I won’t know for sure if I can live with Linux full-time until I actually try it. And try it I might…

Living with Linux: AFP, SMB… WTF?!

Friday, June 2nd, 2006

image

Believe it or not, you’re looking at the result of about a week’s worth of work!

Getting Linux to connect to the other Macs on my home network has been a real brain-buster, but I finally got it up and running… I think. Kubuntu doesn’t recognize Apple’s AFP protocol (known to people who speak regular English as “sharing”), so I had to install a Samba server on my Dell notebook. That part was actually easier than it sounds; it was all the mucking around with passwords and workgroup domains that really frustrated me.

I still don’t think I have it configured properly—the “Inspiron” seen the screen grab above is my Linux machine, so why is its address “mshome”?!—nonetheless, now the real test of Linux can begin, as I can transfer over all the docs, pics and more from my Mac and see how Kubuntu handles them…

Living with Linux: Installing Apps

Tuesday, May 30th, 2006

image

(Detail of Adept, the KDE package manager. Click here or on the image above to see the entire window…)

Upon my first successful install of Ubuntu my first task was to get the Flash Player working in Firefox—those YouTube videos don’t play themselves, ya know!

I was a little dismayed to find the following instructions at UbuntuGuide.org:

sudo apt-get install flashplayer-mozilla

My biggest fear of Linux was staring me right in the face—that I wouldn’t be able to do much without hammering out a bunch of command-line instructions in a terminal window. How could this be, when everything else on my KDE Desktop seemed so user-friendly?

Thankfully, a little poking around revealed a program called Adept. This “package manager” performs three critical tasks for a Linux installation:

  1. It keeps track of all the software installed on your system;
  2. It connects directly to repositories of downloadable applications and upgrades;
  3. It will install those apps and upgrades keeping in mind the stuff you’ve already got.

I used Adept to get my system software up to date and to install the default Kubuntu games package. It’s not quite as convenient as a Mac or Windows automatic software updater, but it does give the user more control over the process.

Now you can still go out into the wild and download whatever you like off the web, but unlike Mac or Windows it is most certainly not a drag and drop affair. As an example I tried to install the new Linux version of Google’s Picasa. I downloaded a package with a clickable Debian installer, but opening it brought up an error that a critical system component was missing.

My only other choice was to go back to the command-line, as per Google’s instructions:

If that doesn’t work, save the file in the /tmp directory, then open a terminal window and install with a command like

$ sudo dpkg -i /tmp/picasa_2.2.2820-5_i386.deb

or

$ su

# dpkg -i /tmp/picasa_2.2.2820-5_i386.deb

# exit

… And that didn’t work either.