首页 > 代码库 > ubuntu 13.10 编译安装conkeror
ubuntu 13.10 编译安装conkeror
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启动了。
ubuntu 13.10 编译安装conkeror
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。