转载自:http://whilesurfing.blogspot.jp/2012/06/make-rssowl-work-with-mint-13-maya.html
原文题目:Make RSSOwl work with Mint 13 (Maya)
Sigh, that took me a while to figure out. After re-installing my Linux base system (moved from an ancient but steadily upgraded Ubuntu to Mint 13 aka Maya because of their lovely Cinnamon desktop) I could not run RSSOwl anymore.
I’m using RSSOwl because of their nice Google Reader integration which enables me to keep track of all the news on different devices I’m using nowadays.
Anyhow, RSSOwl just failed to load on my brand new Mint with the error message “Failed to create the browser”, aborting the whole thing afterwards.
For Mint (and maybe other Ubuntu-related distributions out there) you need to do the following in order to make RSSOwl start successfully again:
- Go into your RSSOwl/xulrunner directory (e.g. /opt/rssowl/xulrunner) and execute:
chmod 755 $(file * | grep executable | sed ‘s/:.*//’) - Then, do a:
sudo ln -s /usr/lib/x86_64-linux-gnu/libhunspell-1.3.so.0 /usr/lib/x86_64-linux-gnu/libhunspell-1.2.so.0on a 64-bit system, or for 32-bit, do a:
sudo ln -s /usr/lib/x86_32-linux-gnu/libhunspell-1.3.so.0 /usr/lib/x86_32-linux-gnu/libhunspell-1.2.so.0
The first step makes sure that all file permissions for xulrunner (a component RSSOwl needs) are set correctly, the second step creates a symbolic link to point from libhunspell-1.2.so.0 to libhunspell-1.3.so.0. Xulrunner apparently is dynamically linked with the older libhunspell 1.2 but Mint already has version 1.3.
To manually figure out why xulrunner is unhappy a
./xulrunner –register-user
in the RSSOwl/xulrunner directory will tell you.
After the two steps above your RSSOwl installation should run without trouble again — happy reading!