Beta Than Expected
Monday, April 14th, 2008 Posted in Linux, Mozilla | 2 Comments »
I haven’t been following the progress of Fedora 9 very closely (possibly because it took me until last month to finally upgrade my home PC to Fedora 8), but as the release date of April 29 May 13 approaches, I thought I’d take a look at the release notes for an overview of what’s new. Of course there’s the usual upgrades to the various desktop environments, including, finally, KDE4, but something that surprised me was the inclusion of Firefox 3 beta 5.
Admittedly, Linux distributions often include non-final software by necessity. Many open-source projects spend years in the 0.x state not because they don’t work well, but because the authors don’t feel that it’s complete yet. (Often, a project will take their checklist and build feature 1, stabilize it, add feature 2, stabilize that, etc. so that you get a program that’s a stable subset of the target. Off the top of my head, FreeRADIUS was quite stable long before it hit 1.0, and Clam AntiVirus has been quite usable despite the fact that its latest version is 0.93.)
Lately, though, there’s been a tendency toward sticking with the latest stable release, at least for projects that have reached that magical 1.0 number. Sometimes they go even further. Only a year and a half ago, Fedora planned to skip Firefox 2 and wait for version 3. (Clearly, they expected Firefox 3 would be out sooner!) So it was a surprise to see that this time, Fedora has decided to jump on the new version before it’s finished.
This is why you vote
Monday, January 28th, 2008 Posted in Linux | No Comments »
The code name for Fedora 9 Linux has been chosen, and it’s going to be Sulphur. Because a foul-smelling rock associated with rotten eggs and depictions of Hell is just what we want to identify an operating system. (Actually, it might not be too far off for Windows Vista.)
Bathysphere was only 8 votes behind. Weird, but considerably cooler.
Oh, well. At least it’s not Mayonnaise or Chupacabra. And some of the other names on that list are considerably worse.
When digiKam Failed to Connect
Wednesday, November 14th, 2007 Posted in Linux, Troubleshooting | 5 Comments »In the decade I’ve been using Linux, it’s gone from something that required lots of technical know-how just to set up, to something that (in its major flavors) can auto-detect most hardware and provides friendly GUIs for most configuration tasks. But every once in a while, I have the kind of experience that would turn a new user off of Linux. Usually because Fedora has decided to change something during an update.
In this case, it was a digital camera problem. Since we bought our Canon PowerShot SD600 last December, I’ve used KDE’s digiKam to transfer and manage the photos. DigiKam detected the camera and accessed the photos right out of the box, no configuration needed beyond telling it to remember the model. But something changed in the last two weeks, and last night I started getting an error message: Failed to connect to the camera. Oddly enough, it could still detect the camera when it was connected. But it couldn’t display or download the images.
I searched all over, hitting dead end after dead end, until I got a hint that it was a permissions problem. Read the rest of this entry »
There Wolf
Thursday, November 8th, 2007 Posted in Humor, Linux, Music | No Comments »
Fedora 8 has just been released, code-named “Werewolf.” As is tradition for this particular Linux distribution, the official release announcement is accompanied by an alternative, humorous announcement playing off the code name.
This time, the joke announcement is a song parody of Michael Jackson’s “Thriller.” And unlike a lot of really bad filk I’ve seen (online and otherwise), it’s surprisingly not bad (for all the subject matter is a bit odd. At least, from what I remember of the original song, it scans.
Double helping of Moonshine
Friday, June 8th, 2007 Posted in Comics, Linux | 4 Comments »
A question over at the Comic Bloc Forums reminded me that I hadn’t gotten around to writing a full profile of the Impulse villain, White Lightning. Fortunately I had a full list of appearances already, so I was able to look up the answer to the question, but it felt like being caught totally unprepared. So yesterday I re-read all her appearances, and tonight I wrote up a profile of White Lightning.
Just for fun, I did some searches for her name. Mostly I came up with cars, horses, wax and, of course, booze. And an alpaca. Back to the booze, there was one point at which the character was mistakenly identified as as Moonshine (later explained away as an in-world mix-up, which would have made more sense if she hadn’t been the one calling herself the wrong name!)
Now the funny thing: the “…in pop culture” section in Wikipedia’s article on Moonshine reminded me that Fedora 7, which just came out last week and which I installed at work a few days ago, is codenamed Moonshine.
The only way the timing could have been more appropriate would be if I’d written the character bio the same day as the Linux release.
Fedora 7 problems with glint video driver
Wednesday, June 6th, 2007 Posted in Linux, Troubleshooting | 1 Comment »Just a warning for any Fedora Linux users preparing to upgrade to Fedora 7: Grab the Live CD first and make sure that all your hardware works properly. If not, see if the fix is available before you actually upgrade.
I upgraded a system with a Permedia 2 video card, which uses the glint drivers. The installer couldn’t launch the GUI, but I’ve run into that fairly often, so I just used the text-based installer without thinking much of it. The upgrade process itself went fine, but on booting into the new system, it was unable to launch X. I kept getting the following error: Read the rest of this entry »
Mozilla + Linux
Monday, December 11th, 2006 Posted in Linux, Mozilla | No Comments »This is good news: Mozilla will be working more closely with various Linux distributors including Red Hat, Novell, Ubuntu, and yes, even Debian, to coordinate Firefox updates, configuration, etc.
There are two main issues: making Mozilla’s Firefox installer work everywhere (it mostly does, but on some systems you need to install some compatibility libraries first), and keeping the distributions’ versions in sync with the official one.
After the Debian IceWeasel debacle, and Fedora deciding to skip Firefox 2 and wait for Firefox 3, it’s good to know that Mozilla has recognized the problem and is working on it. One key piece of information: Red Hat and Novell will both be providing extended support for Firefox 1.5 past its official EOL next April.
Fixing Flash in Fedora Core 5
Monday, March 27th, 2006 Posted in Linux, Troubleshooting, Web | 6 Comments »I upgraded two computers at work to Fedora Core 5. One was a network upgrade that went without a hitch.* The other was trashed so badly I had to do a fresh install.
I’ve run into a couple of gotchas, among them the fact that text is missing in Flash animations. I messed with my font settings, checked SELinux logs, tried switching from the binary installer to the RPM package, to no avail. I tracked down a Fedora mailing list post that pointed to a mozilla bug that had been languishing for a few months, then added what I knew—which was that it affected Flash regardless of the browser.
On Sunday, commenter Dawid Gajownik tracked down the problem: Flash hard-codes the paths where it looks for fonts, instead of letting the X server tell it where to look. Fedora Core 5 includes a new X server, which no longer puts things in /usr/X11R6. Apparently symlinking the old font paths to the new ones works around the problem:
[root@X ~]# mkdir -p /usr/X11R6/lib/X11
[root@X ~]# cd /usr/X11R6/lib/X11
[root@X X11]# ln -s ../../../../etc/X11/fs
[root@X X11]# ln -s ../../../share/X11/fonts
I tried it with absolute links (to /etc/X11/fs and /usr/share/X11/fonts) instead of relative, and it worked fine.
Also, if SELinux is in enforcing mode, you need to allow text relocations on the Flash library. More info on that in Dawid’s bugzilla comment.
So this should take care of Flash until Macrodobe releases an updated version. They’re apparently heading straight for 8.5 on Linux, which is why they haven’t released Flash 8.0 yet.
*Almost. It turns out the repodata on disc 1 isn’t enough for a network or hard disk installation. I copied all the discs onto an internal web server, then had to grab the repodata folder from a mirror. Would’ve been fine with the CDs except for the annoying problem that the CD drive on that machine doesn’t work. Once I had that, though, the upgrade went smoothly.
Fedora Core 5—and Airport Extreme on Linux?
Monday, March 20th, 2006 Posted in Apple, Linux | 1 Comment »Fedora Core 5 was released today. I started downloading it this morning, and it should be done this afternoon. I’ll probably start updating the Fedora boxes at work later this week, though for my home system I may wait until RPMForge catches up.
Meanwhile, I’m reading the release notes, and found one item particularly interesting:
There are new experimental drivers that provide support for the widely-used Broadcom 43xx wireless chipsets (http://bcm43xx.berlios.de/).
Mandriva: Dual Upgrade
Tuesday, November 8th, 2005 Posted in Linux | No Comments »I just updated a system running Mandriva Linux 2006 and in the release notes I discovered that not only will it upgrade a Mandrake system, but it can now upgrade a Conectiva system. I suppose I shouldn’t be surprised, given that both used RPM as their package format/database, but I really had the impression that Mandriva was primarily Mandrake with some extra stuff from Conectiva. It’s nice to see that there really is a true upgrade path for both distributions.
Devoured by the Mandriva
Thursday, June 23rd, 2005 Posted in Linux | No Comments »The Mandrake/Conectiva merger has had a chance to sink in. I’m almost getting used to the name Mandriva. But I’m still trying to figure out last week’s announcement that Mandriva has bought Lycoris—or rather, has “purchase[d] several assets from Lycoris.” The big news is that they’re combining Mandriva Discovery (their entry-level desktop OS) with Lycoris Desktop/LX.
The main thing is, I can’t make out just what Mandriva has and has not bought. I can’t figure out whether there’s anything left of Lycoris, the company. Their CEO is moving to Mandriva to head up the new product. Their software collection and user forums are moving to Mandrake Club. Their flagship product is being merged with one of Mandriva’s. But the wording of the press release implies that they haven’t bought everything. If I were to guess, Lycoris might start focusing on their Tablet PC line.
What does seem to be happening is that Mandrake has begun collecting a number of the smaller commercial players in the Linux arena. Who knows? They may be in a position to challenge Red Hat and Novell soon.
Resolving SELinux audit errors on boot in Fedora Core 4
Wednesday, June 22nd, 2005 Posted in Linux, Troubleshooting | No Comments »I’ve upgraded two systems at work from Fedora Core 3 to Fedora Core 4: a desktop using the normal installer, and a test server upgrading with yum. The yum upgrade worked well except for two snags. The first was a conflict with the old kernel-utils package. I followed the recommendation by installing the new kernel first, rebooting, then removing the old kernel.
The second was that SELinux denied access to about a dozen services on start-up. It was in auditing mode, not enforcing mode, so the services still worked, but I wanted to be able to start enforcing the policy once I resolved some other issues.
Read the rest of this entry »
We have always been at war with Eastasia
Monday, June 6th, 2005 Posted in Apple, Linux | 2 Comments »The eternal Mac OS on Intel rumor resurfaced last week, and as always, my reaction was “I’ll believe it when I see it.” Well, I’ve seen it.
After five years of rumors, Apple has not only confirmed Mac OS X can run on Intel processors, but future Macs will run on Intel. No, they won’t be releasing a version of Mac OS that you can install on your PC, they’re “just” replacing the CPUs in future Macs. Apparently Intel has a better road map for future performance. (Hmm, better tell the marketing division, quick. The PowerMac page [archive.org] still touts the PowerPC’s superiority over the Pentium 4.)
It’s a switch on the order of—well, on the order of leaving the Motorola 68K for PowerPC. Back in those days, it was Apple vs. IBM Compatibles, and IBM was a partner in the PowerPC design. These days it’s Apple vs. Wintel, the Windows/Intel combination.
Apple seems to have everything planned out. Secretly running OS X on both PPC and x86 for the past five years, preparing developer tools to produce applications for both architectures, setting up a translation tool to run PPC apps on Intel chips. Microsoft and Adobe are already on board. It’s not a surprise, really—they’ve done it all before. Of course, we all know how well the best laid plans go…
I do have to wonder how this will affect Linux distributions aimed at the PowerPC line. Yellow Dog Linux, for instance, is also advertised as running on IBM’s own PowerPC systems. And depending on the rest of the hardware, standard x86 distros may have to incorporate formerly PPC-only code. Update: It hasn’t shown up on their website yet, but I just got an email from YDL stating that they will remain focused on PowerPC, remain “in good standing with Apple” as a reseller, and “expect [server OS] Y-HPC to gain an even greater userbase with existing Apple Xserve users.”
I also wonder which Intel chip line they plan on using. Everyone seems to be assuming it’s x86-based, and I’d guess it’s 64-bit (why go backwards from the G5?). In theory Apple could go with Itanium, since they don’t need to drag around x86 compatibility, and the extra volume might be enough to bring the price down.
Invisible Grub Boot Menu
Friday, April 29th, 2005 Posted in Linux, Troubleshooting | 7 Comments »I recently upgraded my computer’s motherboard and processor, and spent the next few days trying to work out which glitches were hardware related and which were coincidental. One problem I had was that the GRUB bootloader menu would not appear when the computer started. It was clearly there. It would boot to the default operating system after 10 seconds. If I hit an arrow key it would stop and wait for me to choose an OS. It just didn’t show up. All I got was a black screen with a cursor in the upper left corner.
On top of that, when Linux started booting, the screen was messed up as if the character set had been run through a meat grinder. You could tell what the letters were, but there was a ton of extra garbage. Then, when init set the character set, the gibberish cleared up and the screen looked normal again.
I had been dealing with other problems that looked like video card or driver issues, but I eventually realized that the problem had nothing to do with the hardware upgrade.
GPL Victorious Again
Tuesday, April 26th, 2005 Posted in Linux | No Comments »The gpl-violations.org project has scored another victory, this time against Fortinet, whom they accused of not only violating the GPL (by using GPL’ed source code without publicly releasing their changes) but actually trying to hide that usage with encryption.
Edit (I hit “publish” too soon!): They settled out of court, with Fortinet agreeing to make the source code available for their customized Linux kernel and other GPL’ed software they snurched from other projects, and to include the GPL in their licensing terms.
This is the latest in a string of victories for the gpl-violations.org project. Since starting the project in 2004, Welte has negotiated more than 30 out-of-court settlements.
But then, “the GPL has never been tested in court,” right?

