vi 편집기에서 찾기 하이라이트 표시하기
System Management2018. 3. 27. 12:57vi 편집기에서 찾기 하이라이트 표시하기

vi 편집기 명령어 => :set hlsearch

리눅스 운영체제 SBT(Simple Build Tool) 설치
System Management2017. 9. 20. 19:48리눅스 운영체제 SBT(Simple Build Tool) 설치

[Ubuntu] echo "deb https://dl.bintray.com/sbt/debian /" | sudo tee -a /etc/apt/sources.list.d/sbt.list sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 2EE0EA64E40A89B84B2DF73499E82A75642AC823 sudo apt-get update sudo apt-get install sbt [CentOS] curl https://bintray.com/sbt/rpm/rpm | sudo tee /etc/yum.repos.d/bintray-sbt-rpm.repo sudo yum install sbt

CentOS7.3 리눅스 glances 모니터링 툴 설치
System Management2017. 8. 29. 10:35CentOS7.3 리눅스 glances 모니터링 툴 설치

1). yum 명령어를 이용하여 python-pip, python-devel 패키지 설치 yum install python-pip python-devel 2). pip 명령어를 이용하여 glances 를 설치한다. pip install glances

Netdata 모니터링 설치
System Management2017. 8. 24. 13:54Netdata 모니터링 설치

1). 시스템 준비 명령어 [centos] yum install autoconf automake curl gcc git libmnl-devel libuuid-devel lm-sensors make MySQL-python nc pkgconfig python python-psycopg2 PyYAML zlib-devel [ubuntu] apt-get install zlib1g-dev uuid-dev libmnl-dev gcc make git autoconf autoconf-archive autogen automake pkg-config curl 2). 코드 다운로드 git clone https://github.com/firehol/netdata.git --depth=1 cd netdata 3). 설치 ./ne..

CentOS 리눅스 shell 변경 명령어
System Management2017. 2. 14. 18:17CentOS 리눅스 shell 변경 명령어

zsh 설치 후 chsh 명령어를 이용하여 기본 shell 변경 명령어 예제 chsh -l 위의 명령어로 현제 시스템에서 사용 가능한 shell 목록 확인 명령어 예제 chsh -s /usr/bin/zsh 혹시 위의 명령어로 사용자 기본 shell 이 변경되지 않으면 다음과 같은 명령어로 변경 시도 명령어 예제 chsh -s $(/usr/bin/zsh)

리눅스 서버 통신 네트워크 속도 성능 측정 명령어
System Management2017. 2. 13. 17:37리눅스 서버 통신 네트워크 속도 성능 측정 명령어

# 서버간(로컬 > 원격) 통신 네트워크 속도 성능 측정 원격 서버 실행 명령어: iperf -s 로컬 서버 실행 명령어: iperf -c {원격 IP} -i 1

리눅스 ssh-keygen 복사 명령어
System Management2017. 2. 13. 17:36리눅스 ssh-keygen 복사 명령어

ssh-copy-id localhost

image