Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save jclosure/2732898f35adaf4a8bb79f7805bc7d87 to your computer and use it in GitHub Desktop.
Save jclosure/2732898f35adaf4a8bb79f7805bc7d87 to your computer and use it in GitHub Desktop.
install emacs 24.5 from src on Centos 6
yum install gcc make ncurses-devel
yum install giflib-devel libjpeg-devel libtiff-devel -y
cd /usr/local/src
wget http://ftp.gnu.org/pub/gnu/emacs/emacs-24.5.tar.gz
tar xzvf emacs-24.5.tar.gz
cd emacs-24.5
./configure --without-x --without-selinux
make && make install
which emacs
emacs --version
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment