热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

Ubuntu14.04安装Emacs24.5

nsitionalENhttp:www.w3.orgTRxhtml1DTDxhtml1-transitional.dtd
  • 1.前期准备工作
  • 2.安装基础构件工具
  • 3.下载emacs编译需要的依赖库
  • 4.下载emacs24.5编译安装
  • 5.下载并安装我的emacs配置文件
  • 6.配置tmux和zsh

1. 前期准备工作

操作系统Ubuntu 14.04 STL
修改更新源,更新系统,安装必要软件

$ cd /etc/apt
$ wget -c http://mirrors.163.com/.help/sources.list.trusty
$ mv sources.list sources.list.bak
$ mv sources.list.trusty sources.list
$ apt-get update
$ apt-get upgrade
$ apt-get install git zsh tmux curl

2. 安装基础构件工具

$ sudo apt-get install build-essential

3.下载emacs编译需要的依赖库

sudo apt-get build-dep emacs24

4.下载emacs24.5编译安装

wget -c http://ftp.gnu.org/gnu/emacs/emacs-24.5.tar.gz
tar zxf emacs-24.5.tar.gz
./configure  --with-x-toolkit=no
make
make install

5.下载并安装我的emacs配置文件

git clone https://github.com/robin-liu-1983/emacs-robin.d.git
cd emacs-robin.d
cp -rf emacs.d ~/.emacs.d

6. 配置tmux和zsh

sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
cp tmux.conf ~/.tmux.conf
cp zshrc-linux ~/.zshrc

为Emacs配置newLISP开发环境 2013-01/78463.htm

手把手教你学会 Emacs 主题配置 2012-10/72342.htm

Ubuntu下编译安装Emacs23  2009-08/21348.htm

手把手教你学会 Emacs 定制 2012-10/72341.htm

如何在GNU Emacs环境下编译并运行C/C++程序? 2012-08/68299.htm

Ubuntu安装Emacs出现到依赖问题及解决方案 2014-08/104975.htm


推荐阅读
author-avatar
campionezhao
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有