2021/08 썸네일형 리스트형 [draft] How to install JMeter on Linux How to install JMeter on LinuxInstallation platform$ cat /etc/os-releaseNAME="Amazon Linux"VERSION="2"ID="amzn"ID_LIKE="centos rhel fedora"VERSION_ID="2"PRETTY_NAME="Amazon Linux 2"ANSI_COLOR="0;33"CPE_NAME="cpe:2.3:o:amazon:amazon_linux:2"HOME_URL="https://amazonlinux.com/"Installing JAVA$ amazon-linux-extras install java-openjdk11$ java -versionopenjdk version "11.0.7" 2020-04-14 LTSOpenJDK Ru.. 더보기 [draft] GitHub 개인 액세스 토큰을 사용하는 방법 GitHub 개인 액세스 토큰을 사용하는 방법비밀번호로 접근 시 에러Support for password authentication was removed on August 13, 2021. Please use a personal access token instead.Please see https://github.blog/2020-12-15-token-authentication-requirements-for-git-operations/ for more information.$ git push -u origin mainUsername for 'https://github.com': admin@sangchul.krPassword for 'https://admin@sangchul.kr@github.com': re.. 더보기 [기타] 크롬 확장 프로그램 추천 크롬 확장 프로그램 추천 Auto Refresh Plus | Page Monitor 강력한 페이지 모니터 기능으로 자동으로 페이지를 새로고침합니다 Chrome Web Store를 통해 설치할 수 있습니다. Auto Refresh Plus 설치 후 설정 화면(시간 간격 설정) https://autorefresh.io 더보기 [draft] CentOS 8 Stream 설치(CentOS 8 스트림 설치) CentOS 8 Stream 설치(CentOS 8 스트림 설치)iso 다운로드download URL : https://www.centos.org/downloadISO Download URLhttp://mirror.kakao.com/centos/8-stream/isos/x86_64/CentOS-Stream-8-x86_64-20210120-dvd1.isoOracle VirtualBox에 VM 생성download URL : https://www.virtualbox.orgCentOS Stream 설치- Keyboard : 한국어- 언어 지원 : 한국어, English- 시간 및 날짜 : 아시아/서울- 소프트웨어 선택 : 최소 설치(표준, 레거시 UNIX 호환성, 개발용 툴)- 설치 대상 : 자동 파티션 설정- .. 더보기 [draft] iperf3를 설치하고 사용하는 방법 iperf3를 설치하고 사용하는 방법TCP/UDP 대역폭 성능 측정 도구iperf3는 네트워크 대역폭을 측정하기 위한 도구로 서버와 클라이언트 간의 대역폭 및 성능을 테스트하는 데 사용됩니다.테스트 환경$ cat /etc/redhat-releaseCentOS Linux release 7.9.2009 (Core)1. iperf3 패키지 설치서버, 클라이언트 패키지 설치CentOS 시스템yum install -y iperf3Ubuntu 시스템sudo apt-get updatesudo apt-get install iperf3iperf3 버전 정보iperf3 --version$ iperf3 --versioniperf 3.1.7Linux master 3.10.0-1160.36.2.el7.x86_64 #1 SMP .. 더보기 [draft] 리눅스에서 HTTP Proxy Server 설정하기 리눅스에서 HTTP Proxy Server 설정하기1. 로그인 세션 동안만 유지되는 방법export http_proxy=[proxy서버]:[proxy포트]export https_proxy=[proxy서버]:[proxy포트]unset http_proxyunset https_proxy2. 로그인 세션이 종료된 후에도 프록시를 유지시키는 방법*** .bashrc, .bash_profile, /etc/profilevim ~/.bashrcexport http_proxy=[proxy서버]:[proxy포트]export https_proxy=[proxy서버]:[proxy포트]source ~/.bashrc3. Proxy 설정 적용 확인env | grep -i proxyhttp_proxy 및 https_proxy 환경 변.. 더보기 [draft] CentOS 7에서 KVM 하이퍼바이저를 설치하는 방법 CentOS 7에서 KVM(Kernel-based Virtual Machine) 하이퍼바이저를 설치하는 방법테스트 환경$ cat /etc/redhat-releaseCentOS Linux release 7.8.2003 (Core)$ getconf LONG_BIT64$ uname -aLinux ntvm-peer01 3.10.0-1127.19.1.el7.x86_64 #1 SMP Tue Aug 25 17:23:54 UTC 2020 x86_64 x86_64 x86_64 GNU/LinuxKVM 호스트 확인시스템이 KVM을 지원하는지 확인해야 합니다.grep -E '(vmx|svm)' /proc/cpuinfo출력이 0이 아니라면, CPU에서 가상화 확장이 지원됩니다.KVM 모듈 로드KVM 모듈을 로드합니다.sudo .. 더보기 이전 1 다음