CentOS 6에서 yum으로 tmux 설치하기

CentOS 6에서 yum install을 사용한 Tmux 설치 방법을 알아보고, 실습을 통해 쉽게 적용하고 사용할 수 있습니다.


CentOS 6에서 yum install을 사용한 Tmux 설치 방법을 알아보고, 실습을 통해 쉽게 적용하고 사용할 수 있습니다.

tmux는 터미널 멀티플렉서로 단일 화면에서 여러 터미널을 생성하고 접속할 수 있습니다. 백그라운드에서 계속 실행 중이므로 접속 해제 후 다시 같은 화면으로 접속할 수 있습니다.
리눅스 관리 서버에서 tmux 실행 후 WEB, WAS, DB, NAS 등을 session으로 분류하고, window를 생성해서 서버에 ssh로 접속해서 관리할 수 있습니다.


실습 환경

  • 운영 체제(OS) : CentOS 6.10
  • tmux version : 1.6
  • IP 설정 및 인터넷이 가능한 환경

tmux 설치하기

epel-release 설치하기

[yum install epel-release -y]

[root@runit.cloud ssl]# yum install epel-release -y 10:06:35 $ yum install epel-release -y Loaded plugins: fastestmirror Setting up Install Process Repository base is listed more than once in the configuration Repository updates is listed more than once in the configuration Repository extras is listed more than once in the configuration Loading mirror speeds from cached hostfile * base: mirror.kakao.com * extras: mirror.kakao.com * updates: mirror.kakao.com Resolving Dependencies --> Running transaction check ---> Package epel-release.noarch 0:6-8 will be installed --> Finished Dependency Resolution Dependencies Resolved ============================================================================================================================================================================================================================================= Package Arch Version Repository Size ============================================================================================================================================================================================================================================= Installing: epel-release noarch 6-8 extras 14 k Transaction Summary ============================================================================================================================================================================================================================================= Install 1 Package(s) Total download size: 14 k Installed size: 22 k Downloading Packages: epel-release-6-8.noarch.rpm | 14 kB 00:00 Running rpm_check_debug Running Transaction Test Transaction Test Succeeded Running Transaction Warning: RPMDB altered outside of yum. Installing : epel-release-6-8.noarch 1/1 Verifying : epel-release-6-8.noarch 1/1 Installed: epel-release.noarch 0:6-8 Complete!

tmux 정보 확인하기

[yum info tmux]

[root@runit.cloud ssl]# yum info tmux 10:06:45 $ yum info tmux Loaded plugins: fastestmirror Repository base is listed more than once in the configuration Repository updates is listed more than once in the configuration Repository extras is listed more than once in the configuration Loading mirror speeds from cached hostfile * base: mirror.kakao.com * epel: nrt.edge.kernel.org * extras: mirror.kakao.com * updates: mirror.kakao.com Available Packages Name : tmux Arch : x86_64 Version : 1.6 Release : 3.el6 Size : 208 k Repo : epel Summary : A terminal multiplexer URL : http://sourceforge.net/projects/tmux License : ISC and BSD Description : tmux is a "terminal multiplexer." It enables a number of terminals (or : windows) to be accessed and controlled from a single terminal. tmux is : intended to be a simple, modern, BSD-licensed alternative to programs such : as GNU Screen.

tmux 1.6 설치하기

[yum install tmux -y]

[root@runit.cloud ssl]# yum install tmux -y 10:09:02 $ yum install tmux -y Loaded plugins: fastestmirror Setting up Install Process Repository base is listed more than once in the configuration Repository updates is listed more than once in the configuration Repository extras is listed more than once in the configuration Loading mirror speeds from cached hostfile * base: mirror.kakao.com * epel: nrt.edge.kernel.org * extras: mirror.kakao.com * updates: mirror.kakao.com Resolving Dependencies --> Running transaction check ---> Package tmux.x86_64 0:1.6-3.el6 will be installed --> Processing Dependency: libevent-1.4.so.2()(64bit) for package: tmux-1.6-3.el6.x86_64 --> Running transaction check ---> Package libevent.x86_64 0:1.4.13-4.el6 will be installed --> Finished Dependency Resolution Dependencies Resolved ============================================================================================================================================================================================================================================= Package Arch Version Repository Size ============================================================================================================================================================================================================================================= Installing: tmux x86_64 1.6-3.el6 epel 208 k Installing for dependencies: libevent x86_64 1.4.13-4.el6 base 66 k Transaction Summary ============================================================================================================================================================================================================================================= Install 2 Package(s) Total download size: 274 k Installed size: 721 k Downloading Packages: (1/2): libevent-1.4.13-4.el6.x86_64.rpm | 66 kB 00:00 (2/2): tmux-1.6-3.el6.x86_64.rpm | 208 kB 00:00 --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- Total 717 kB/s | 274 kB 00:00 warning: rpmts_HdrFromFdno: Header V3 RSA/SHA256 Signature, key ID 0608b895: NOKEY Retrieving key from file:///etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-6 Importing GPG key 0x0608B895: Userid : EPEL (6) Package: epel-release-6-8.noarch (@extras) From : /etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-6 Running rpm_check_debug Running Transaction Test Transaction Test Succeeded Running Transaction Installing : libevent-1.4.13-4.el6.x86_64 1/2 Installing : tmux-1.6-3.el6.x86_64 2/2 Verifying : libevent-1.4.13-4.el6.x86_64 1/2 Verifying : tmux-1.6-3.el6.x86_64 2/2 Installed: tmux.x86_64 0:1.6-3.el6 Dependency Installed: libevent.x86_64 0:1.4.13-4.el6 Complete!

tmux 설치 확인하기

tmux version 확인하기

[tmux -V]

[root@runit ssl]# tmux -V tmux 1.6

tmux 실행하기

[tmux]

[LINUX] CentOS 6에서 yum으로 tmux 설치하기
Tmux 실행 화면

마무리

Tmux 패키지를 yum을 통해 설치하는 방법에 대해 알아보았습니다.
yum을 통해 간단하게 Tmux를 설치하고 실행하는 실습을 통해 쉽게 설치하고 사용할 수 있습니다.


관련 글

[리눅스] CentOS 6에서 Tmux 소스 컴파일 설치하기

COMMENTS

이름

가상 머신 생성,1,가상 머신 자동 시작,2,그라파나 비밀번호 초기화,1,데이터베이스 설치,1,리눅스 메모리,1,리눅스 명령어 자동 완성,2,리눅스 백업,1,리눅스 설치,1,리눅스 시스템 언어,1,리눅스 언어 설정,1,리눅스 원격 명령 실행,1,리눅스 프로세스,1,리눅스 한글 설정,1,리눅스 LOCALE,1,리버스 프록시,1,맥북,1,메모리,1,모바일 리다이렉션,1,모바일 페이지,1,백업 스크립트,1,버추얼박스 설치,1,보안 취약점,1,사설 인증서,1,서버 관리,2,소스 컴파일,1,슬랙 사용법,1,슬랙 시작,1,슬랙 초보자 가이드,1,엔진엑스 설치,1,원격 데스크톱 연결,1,웹 접속 제한,1,윈도우 비밀번호 초기화,1,윈도우 전원 옵션,1,윈도우 PATH,1,이미지 압축,1,이미지 용량 줄이기,1,인증서 생성,1,인증서 설치,1,자동 로그인,1,자빅스 한글,1,자체 서명,1,점검 스크립트,1,젠서버 설치,1,커널 삭제,1,콘솔 파란색 설정,1,클립보드 공유,1,파이썬 설치,1,파일 업로드 제한,1,프로세스 관리,1,프로세스 오류,1,한국어 설정,1,한글 설정,1,한영 전환,1,호스트 전용 네트워크,1,ADMIN 초기화,1,APACHE,1,APPLICATIONS,16,Big Sur,1,CentOS,4,CentOS 6,9,CentOS 7,4,CentOS 8,21,CentOS 8 설치,1,CentOS 설치 이미지 다운로드,1,CentOS ISO Download,1,CentOS-Base.repo,1,Citrix Hypervisor,2,DATABASES,1,dnf install httpd,1,DROPPING PACKET,1,GRAFANA,1,htpasswd,1,HTTP 기본 인증,2,HTTPS,1,IPTABLES,1,ISMS,1,ISO 저장소,1,JENNIFER,1,jennifer_admintool,1,jpg smaller,1,LINUX,29,macOS,2,MariaDB,1,MONITORING,3,NF_CONNTRACK,1,NGINX,9,NGINX 설치,1,NGINX SSL 설정,1,openssl 인증서 생성,1,pam 인증,1,passwd,1,PHP,1,PHP-FPM 설치,1,PuTTY,1,PYTHON,1,RSYNC,1,SFTP,1,Shift + Space 한영 전환,1,SLACK,2,slack 사용법,1,SSH 인증,1,SSH 자동 로그인,2,SSHPASS,3,SSL 경고 로그,1,SSL 인증서,1,su,1,SWAP,1,TABLE FULL,1,TABLEAU,1,tinypng,1,TIP,1,TMUX,3,TMUX 설치,2,useradd,1,userdel,1,VirtualBox,4,VIRTUALIZATION,7,VM,3,VMware,1,VMware 무료 라이센스,1,Vmware Fusion,1,wheel 그룹,1,WINDOWS,7,Windows 10,7,XCP-ng,2,XenServer,4,YUM,1,ZABBIX,1,
ltr
item
시스템 엔지니어의 세상: CentOS 6에서 yum으로 tmux 설치하기
CentOS 6에서 yum으로 tmux 설치하기
CentOS 6에서 yum install을 사용한 Tmux 설치 방법을 알아보고, 실습을 통해 쉽게 적용하고 사용할 수 있습니다.
https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhtc7gRhfiHTVJ1eC9mGy6oMnF3MgT39ehmIwmh7A_xVS3bA6qsZ11aEVZNGogCuMZ720wn2e8kQ7mAL5egu5_d56gX8whDG1wV0U8e0Yk_ECmZBHyksFYYdX6VT4oRB3lAI8jEAFzdE3A/s1600/tmux.png
https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhtc7gRhfiHTVJ1eC9mGy6oMnF3MgT39ehmIwmh7A_xVS3bA6qsZ11aEVZNGogCuMZ720wn2e8kQ7mAL5egu5_d56gX8whDG1wV0U8e0Yk_ECmZBHyksFYYdX6VT4oRB3lAI8jEAFzdE3A/s72-c/tmux.png
시스템 엔지니어의 세상
https://www.runit.cloud/2020/04/centos-tmux.html
https://www.runit.cloud/
https://www.runit.cloud/
https://www.runit.cloud/2020/04/centos-tmux.html
true
7559506062450536879
UTF-8
Loaded All Posts Not found any posts VIEW ALL Readmore Reply Cancel reply Delete By Home PAGES POSTS View All RECOMMENDED FOR YOU LABEL ARCHIVE SEARCH ALL POSTS Not found any post match with your request Back Home Sunday Monday Tuesday Wednesday Thursday Friday Saturday Sun Mon Tue Wed Thu Fri Sat January February March April May June July August September October November December Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec just now 1 minute ago $$1$$ minutes ago 1 hour ago $$1$$ hours ago Yesterday $$1$$ days ago $$1$$ weeks ago more than 5 weeks ago Followers Follow THIS PREMIUM CONTENT IS LOCKED STEP 1: Share to a social network STEP 2: Click the link on your social network Copy All Code Select All Code All codes were copied to your clipboard Can not copy the codes / texts, please press [CTRL]+[C] (or CMD+C with Mac) to copy Table of Content