DEV Community

Patrick Schanen
Patrick Schanen

Posted on

3 2

Qemu KVM Centos 7.0 install - build tmux 2.6

   58  wget https://github.com/tmux/tmux/releases/download/2.6/tmux-2.6.tar.gz
   59  tar xzf tmux-2.6.tar.gz
   60  cd tmux-2.6
   61  ./configure && make
# Install it first 
   62  sudo yum install libevent-devel
   64  sudo yum install ncurses-devel
   65  sudo yum install glibc-static
# END  
   67  ./configure && make
   68  sudo yum install gcc
   69  ./configure && make

   74  sudo make install

   78  ps -u | grep tmux
   79  tmux -V
Enter fullscreen mode Exit fullscreen mode
➜  tmux-2.6 sudo make install
make[1]: Entering directory `/home/psnebc/tmux-2.6'
 /usr/bin/mkdir -p '/usr/local/bin'
  /usr/bin/install -c tmux '/usr/local/bin'
make  install-exec-hook
make[2]: Entering directory `/home/psnebc/tmux-2.6'
if test xmdoc = xmdoc; then \
        sed -e "s|@SYSCONFDIR@|/etc|g" ./tmux.1 \
                >./tmux.1.mdoc; \
else \
        sed -e "s|@SYSCONFDIR@|/etc|g" ./tmux.1| \
                gawk -f./mdoc2man.awk >./tmux.1.man; \
fi
/usr/bin/mkdir -p /usr/local/share/man/man1
/usr/bin/install -c -m 644 ./tmux.1.mdoc \
        /usr/local/share/man/man1/tmux.1
make[2]: Leaving directory `/home/psnebc/tmux-2.6'
make[1]: Für das Ziel »install-data-am« ist nichts zu tun.
make[1]: Leaving directory `/home/psnebc/tmux-2.6'
➜  tmux-2.6 tmux --version
usage: tmux [-2CluvV] [-c shell-command] [-f file] [-L socket-name]
            [-S socket-path] [command [flags]]
➜  tmux-2.6 tmux -v
[exited]
➜  tmux-2.6 ps -u | grep tmux
psnebc    5786  0.0  0.0 112672   984 pts/0    S+   18:21   0:00 grep --color=auto --exclude-dir=.bzr --exclude-dir=CVS --exclude-dir=.git --exclude-dir=.hg --exclude-dir=.svn tmux
➜  tmux-2.6 tmux -V
tmux 2.6
Enter fullscreen mode Exit fullscreen mode

Postmark Image

Speedy emails, satisfied customers

Are delayed transactional emails costing you user satisfaction? Postmark delivers your emails almost instantly, keeping your customers happy and connected.

Sign up

Top comments (0)

Billboard image

The Next Generation Developer Platform

Coherence is the first Platform-as-a-Service you can control. Unlike "black-box" platforms that are opinionated about the infra you can deploy, Coherence is powered by CNC, the open-source IaC framework, which offers limitless customization.

Learn more

👋 Kindness is contagious

Dive into an ocean of knowledge with this thought-provoking post, revered deeply within the supportive DEV Community. Developers of all levels are welcome to join and enhance our collective intelligence.

Saying a simple "thank you" can brighten someone's day. Share your gratitude in the comments below!

On DEV, sharing ideas eases our path and fortifies our community connections. Found this helpful? Sending a quick thanks to the author can be profoundly valued.

Okay