본문 바로가기

전체 글95

리눅스,윈도우에서 인터넷 속도 테스트. 윈도우 : 설치 필요 없음. 웹사이트에서 속도테스트 바로 됨. http://www.speedtest.net/ 리눅스 : 아래 2가지 방법으로 인터넷 속도 측정 가능. # wget -O /dev/null http://speedtest.sea01.softlayer.com/downloads/test100.zip # curl -o /dev/null http://speedtest.sea01.softlayer.com/downloads/test100.zip /dev/null : 이란 ? 아무것도 아닌 (null) 장치파일. 블랙홀 => 즉 이파일에 쓰는 모든 것은 영원히 사라진다. wget (또는 curl)에서 다운받은 파일을 어떤 경로에 어떤 파일 명으로 저장 할지 설정 한다. /dev/null 이면 파일을 다운 .. 2018. 2. 6.
CentOS 7 서비스 확인 CentOS 7 부터 서비스 데몬 관리 방법이 달라졌습니다. 기존의 init system 에서 systemd 로 기본 시스템 관리 데몬이 변경되었기 때문입니다. 1. 서비스 재실행(sshd 의 경우) systemctl restart sshd.service 2. 서비스 중지(sshd 의 경우) systemctl stop sshd.service 3. 서비스 시작(sshd 의 경우) systemctl start sshd.service 4. 서비스 상태보기(sshd 의 경우) systemctl status sshd.service 5. 부팅시 서비스 시작하기(sshd 의 경우) systemctl enable sshd.service 6. 부팅시 서비스 시작하지 않음(sshd 의 경우) systemctl disabl.. 2018. 2. 5.
CentOS7 minidlna 설치 https://www.certdepot.net/rhel7-install-minidlna-service/ 2018. 2. 5.
Centos 방화벽 설정 방화벽 Port 추가 명령어 #firewall-cmd --permanent --zone=public --add-port=4000-4100/tcp 방화벽 설정 리로드. # firewall-cmd --reload 방화벽 관련 더 많은 정보는 여기를 Click 하세요. 2018. 2. 5.
반응형