ubuntu 13.10 编译安装conkeror
时间:2022-04-03 09:43
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, 所以打开下面的文件
/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")
现在在emacs中点击链接,conkeror启动了。