Posts

Showing posts from November, 2009

Upgrading to Fedora 12

...was pain-free. Well, almost. The prep work for Fedora's latest version, Constantine, involved backing up important files and freeing up space. Like my move from Fedora 10 to 11 , I used PreUpgrade (I' didn't want to do the yum upgrade route -- it was too much work for something that should be trivial by now). Reading through the common F12 bugs was helpful since I got an overview of what to expect. After backing up my files to the nearly depleted 500-GB FreeAgent Desktop drive, I cleaned up /boot : $ df -h /boot $ curl -O 'http://skvidal.fedorapeople.org/misc/kernel-prune.py' $ chmod a+x kernel-prune.py $ ./kernel-prune.py # PKGS=`./kernel-prune.py` # yum remove $PKGS # tune2fs -r 0 `mount | awk '/\/boot/ {print $1}"` This involved trimming off the unused kernel versions still in /boot and adjusting the reserved filesystem blocks in that partition. It's safe to set the reserved blocks to "0" for /boot . (I've previously allocated 2...

Redirecting Wordpress feeds to Feedburner

(Hello. It's been a while since my last post. I mostly post on Twitter , Facebook and identi.ca now. I also maintain two "mini-blogs" on Tumblr and Posterous . My two loyal readers should head over there, follow my social network accounts, or subscribe to my aggregator . * hint, hint * :D Anyway...) I've been meaning to fold in posts from my two mini-blogs to Coredump, but exclude them in the feeds, since I plan on adding them to my aggregated lifestream . I still haven't found a good solution short of adding a new category (I don't like cluttering my too-many categories {all three of them!}) or mucking around with Wordpress' add_filter in functions.php (which will likely get lost when I update WP). So I ended up focusing on the feed itself. I've already set up a Feedburner feed long ago, when it was still *just* Feedburner and hadn't been eaten up by the Borg^H^H^H^HGoogle. I can add the feed URL as a link meta in the header, but that's...