1. 내용
- centos7 서버에 ssh 원격 접속시 속도가 느림.
2. 해결방법
[root@hkand ]# vi /etc/ssh/sshd_config
UseDNS no
GSSAPIAuthentication no
[root@hkand ]# systemctl restart sshd
끝.
1. 내용
- centos7 서버에 ssh 원격 접속시 속도가 느림.
2. 해결방법
[root@hkand ]# vi /etc/ssh/sshd_config
UseDNS no
GSSAPIAuthentication no
[root@hkand ]# systemctl restart sshd
끝.
1. 내용
- centos에 기본 설치된 python 버전은 2.7.5임.
: 확인 명령어 python --version
- 2020.01.01 이후 python 2점대 버전은 더이상 유지보수 지원되지 않음.
- python 3점대 버전 설치 필요
2. 설치
[root@localhost src] yum install gcc openssl-devel bzip2-devel libffi-devel
[root@localhost src] wget https://www.python.org/ftp/python/3.9.5/Python-3.9.5.tgz
[root@localhost src] tar -xvf Python-3.9.5.tgz
[root@localhost src] cd Python-3.9.5/
[root@localhost src] ./configure --enable-optimizations
[root@localhost src] make altinstall
[root@localhost src] vi /root/.bashrc
alias python="/usr/local/bin/python3.9"
[root@localhost src] source /root/.bashrc
[root@localhost src] python -V
Python 3.9.5
3. 참고
https://www.python.org/doc/sunset-python-2/
끝.
ㅁ 내용
- 1989년 자넷 잭슨 Rhythm Nation 뮤직비디오를 재생시 시스템 충돌 발생함.
- 대상 : 노트북 5400 RPM HDD 등
- 뮤직비디오 주파수가 HDD 주파수와 일치하여 발생함.
ㅁ 출처
끝.