this here thing shall serve as my development blog, my professional ramblings, my scratchpad... a well for my dying sanity.

welcome aboard.

13th November 2011

Post with 2 notes

Making a Minecraft launcher [for GNOME, using Fedora]

So. :D I just created a Minecraft launcher for Linux (for all users).

A small feat, sure, but it’s progress! I’M LEARNING THINGS!

(if you’re interested, read on for a quick excessively wordy, but simple tutorial on how)

Read More

Tagged: tutoriallinuxlauncherminecraftnotes

10th November 2011

Post with 7 notes

libpcre.so.3 == libpcre.so.0.0.1

If you try to install <things requiring libpcre.so.3> on Fedora, you might get an error about libpcre.so.3 not being found. To correct this, just symlink your /lib/libpcre.so.0 to libpcre.so.3, like this:

ln -s /lib/libpcre.so.0.0.1 /lib/libpcre.so.3

And reload your libraries with:

ldconfig -v

You don’t have to download that Debian version of libpcre, they just unilaterally chose to rename libpcre as version 3 for some reason, and because so many people use Ubuntu, it’s starting to creep into common usage.

Tagged: linuxnotestweakshelp

Source: sness.blogspot.com