Skip to content

Instantly share code, notes, and snippets.

@cloud8421
Forked from lambdalisue/install.sh
Created March 26, 2012 09:09
Show Gist options
  • Star 18 You must be signed in to star a gist
  • Fork 11 You must be signed in to fork a gist
  • Save cloud8421/2204072 to your computer and use it in GitHub Desktop.
Save cloud8421/2204072 to your computer and use it in GitHub Desktop.
Install tmux 1.6 on Ubuntu 10.04
wget -q -O - https://raw.github.com/gist/2204072/install_tmux_1.6_on_ubuntu_10.04.sh | sudo bash
#!/bin/bash
#
# Install tmux 1.6 on Ubuntu 10.04
#
# Ref: http://bionicraptor.co/2011/07/23/how-to-compiling-tmux-1-5-for-ubuntu-10-04/
#
DOWNLOAD_URL="http://downloads.sourceforge.net/project/tmux/tmux/tmux-1.6/tmux-1.6.tar.gz?r=http%3A%2F%2Ftmux.sourceforge.net%2F&ts=1326463650&use_mirror=jaist"
sudo apt-get install build-essential debhelper diffstat dpkg-dev fakeroot g++ g++-4.4 html2text intltool-debian libmail-sendmail-perl libncurses5-dev libstdc++6-4.4-dev libsys-hostname-long-perl po-debconf quilt xz-utils libevent-1.4-2 libevent-core-1.4-2 libevent-extra-1.4-2 libevent-dev
wget $DOWNLOAD_URL -O tmux-1.6.tar.gz
tar xvvf tmux-1.6.tar.gz
cd tmux-1.6/
./configure --prefix=/usr
make
sudo make install
@npiv
Copy link

npiv commented Mar 27, 2012

that was easy. thank you

@gior312
Copy link

gior312 commented Apr 16, 2012

Just what I was looking for. Thanks !

@lsaffie
Copy link

lsaffie commented Sep 3, 2012

nice!

@abhishek77in
Copy link

superb!

@chusiang
Copy link

It`s work!

Thank you :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment