conkeror几年前我用过,还是一个不错的浏览器,这次因为笔记本只支持Ubuntu 13.10, 而不支持更新版本,就尝试着在Ubuntu 13.10上安装最新conkeror,但是没想到居然没有安装源。于是就编译吧,
当然还是要首先clone到源代码:
git clone git://repo.or.cz/conkeror.git
然后根据官方文档的提示:
To build your own Conkeror package, install fakeroot, quilt, and debhelper, then enter the directory of your Conkeror git clone and run: fakeroot debian/rules binary
一切顺利。然后要复制目录:
sudo cp -r ./debian/conkeror/usr/share/conkeror /usr/share/
/opt/conkeror/debian/bin/conkeror将一开始的值设置为
#!/bin/sh # Wrapper around xulrunner/firefox to start the xulrunner application conkeror # Written by Axel Beckert <abe@deuxchevaux.org> for the Debian Project # Find an appropriate xulrunner binary XULRUNNER=‘firefox -app‘
ln -s /opt/conkeror/debian/bin/conkeror /usr/bin/conkeror
学习快捷键吧,将之设置为emacs默认浏览器。
在init.el中设置
;; browser (setq browse-url-browser-function ‘browse-url-generic browse-url-generic-program "conkeror")
原文地址:http://blog.csdn.net/csfreebird/article/details/41732375