Showing posts with label howto. Show all posts
Showing posts with label howto. Show all posts

A Fedora/RPM LibreOffice repo exists!

My other tiny triumph of the day concerned LibreOffice.  Thanks to Fedora's insistence on excising a tool I rely on from their copy of OpenOffice I spent too many hours Saturday trying to install either LO 3.3.1 or an unmolested OO 3.3.  If I followed the instructions and installed the damn things from RPMs, the program segfaulted after the registration screen with the oh-so-useful error $sd_prog/$sd_binary. (I found jackall useful about that online...) Copying a chunk of files from the RPMs on top of an existing Fedora-mangled install basically got me nowhere aside from several yards closer to dumping Fedora.


Meanwhile, I intermittently searched the web (and various RPM/app sites) aggressively for a RPM repository, but all I found were repos for other distros, and the knowledge that LibreOffice will be available in Fedora 15 (which doesn't help me now).  Finally, Sunday night I discovered a Fedora-based repository with LibreOffice, courtesy of an intriguing distro I've never heard of before called Kororaa.

Their repo file didn't work right away (package managers kept telling me the repository was inaccessible), but a lucky guess let me figure out how to fix it.  Open a terminal/console and do "su" so you become root, then download their .repo file per their instructions:
wget http://kororaa.org/repos/kororaa.repo -O /etc/yum.repos.d/kororaa.repo
Once you've grabbed it, while still root, open the little bugger with your favorite text editor (I like nano):
nano /etc/yum.repos.d/kororaa.repo
On the "baseurl" line, change the part bolded here from the original:
http://kororaa.org/repos/kororaa/$releasever/$basearch
over to a more useful (as of right now; the number will change):
http://kororaa.org/repos/kororaa/14/$basearch/
(I'm not using Fedora 14 on this machine, but it doesn't seem to matter.)

All you should have to do from there is use your preferred package manager to remove any old copies of OpenOffice/LibreOffice and install the properly-functioning one from Kororaa.  I recommend also trying their distro out because it seems like a very good way to have your cake with Fedora and eat it too.

Custom Mounts In udev For Non-Techs

One of the only difficult aspects I've found about transitioning to SimplyMEPIS is that while Ubuntu relied on fstab (which sometimes did make me want to f*ing stab things) for mounting drives, SimplyMEPIS uses the evidently-more-popular method called udev.

I keep all of my music, photos, videos, etc. on an external drive partition named Biggus after the Monty Python character. ;) When I'm using the command-line or a program dialog that doesn't show individual drives, it's much easier if I know Biggus is always at /media/biggus than wondering which /media/sd* it's been stuck at this time. Same goes for things like my iRiver H10 media player, external backup partition, and so forth.

So, onwards to udev... I understood the basics quickly enough, but the way to really use it eluded me for a couple of days, in part because I was using a seriously-outdated guide. (Having barely passed C programming long ago, I knew I was in trouble when the howto made reference to one of its "easier" commands.) Thankfully I found Arch's Map Custom Device Entries with udev wiki article...

Since udev is capable of so many things that it seems dauntingly complex at first, I'll explain how I met success. I'll probably need the mini-guide in the future, and maybe it will help some other hapless end-user.