红联Linux门户
Linux帮助

ubuntu 13.10编译安装conkeror

发布时间:2015-10-03 15:33:57来源:linux网站作者:csfreebird

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 


好了,运行命令,可以看到漂亮的浏览器了。

ubuntu 13.10编译安装conkeror

学习快捷键吧,将之设置为emacs默认浏览器。


在init.el中设置

;; browser 
(setq browse-url-browser-function 'browse-url-generic browse-url-generic-program "conkeror") 


现在在emacs中点击链接,conkeror启动了。
或者在M-x中运行命令browse-url-generic,然后输入url,就可以启动conkeror.


Ubuntu 14.04 conkeror启动问题:http://www.linuxdiyf.com/linux/14618.html