전체 글 썸네일형 리스트형 아파치 서버의 로그 삭제 스크립트 아파치 서버의 로그 삭제 스크립트 이 스크립트는 /var/logs 디렉터리에서 2일 이전에 수정된 파일을 찾아 삭제하는 역할을 합니다. vim cleanup_old_logs.sh #!/bin/bash # Script Name: cleanup_old_logs.sh # Description: Remove files in /var/logs that are older than 2 days cd /var/logs # Remove files modified more than 2 days ago find . -type f -mtime +2 -exec /bin/rm -f {} \; 주요 내용 cd /var/logs : 스크립트가 작업을 수행할 디렉터리로 이동합니다. find . -type f -mtime +2 -exe.. 더보기 bind recursive clients 모니터링 bind recursive clients 모니터링 무한 루프(while true)를 사용하여 주기적으로 rndc status | grep recursive 명령을 실행하고 결과를 출력합니다. rndc status | grep recursive 스크립트 편집 vim dns_status.sh #!/bin/bash while true do result=$(rndc status | grep recursive) if [ -n "$result" ] then echo "Recursive DNS status: $result" else echo "Failed to retrieve recursive DNS status." fi sleep 1 done 더보기 --- echo 명령어로 스크립트 저장 echo -e "#!/bi.. 더보기 [리눅스] gdb 사용법_core 덤프 gdb사용법 help 도움말, 명령어 분류 목록 출력 help [class] 해당 class에 속한 명령어 목록 표시 help [command] 해당 command에 대한 도움말 표시 *** class와 command의 축약형도 지원됨 더보기 [원도우] Microsoft Windows Server 2003 서비스 팩 Microsoft Windows Server 2003 서비스 팩 Microsoft Windows Server 2003 서비스 팩 1(32비트) http://www.microsoft.com/downloads/thankyou.aspx?familyId=22cfc239-337c-4d81-8354-72593b1c1f43&displayLang=ko Microsoft Windows Server 2003 서비스 팩 2(32비트) http://www.microsoft.com/downloads/details.aspx?displaylang=ko&FamilyID=1b9fe9e4-1d57-4698-a5cf-db271ed6d90a 더보기 [원도우] 원격 데스크탑 포트 번호 변경 (default:3389) 원격 데스크탑 포트 번호 변경 (default:3389) 1. 레지스트리(regedit) 편집기 실행 2. 레지스트리 하위 키로 이동 HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\TerminalServer\Wds\Repwd\Tds\Tcp 이름 : PortNumber 종류 : REG_DWORD 데이터 : 0x00000d3d(3389) ** 10진수를 선택하고 다른 포트번호를 입력 HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\TerminalServer\WinStations\RDP-Tcp 이름 : PortNumber 종류 : REG_DWORD 데이터 : 0x00000d3d(3389) ** 10진수를 선택하고 다른 .. 더보기 [원도우] 원도우 DNS 설치 변군 따라하기 원도우 DNS 설치 변군 따라하기 더보기 NFS(Network File System)를 구축하는 방법 NFS(Network File System)를 구축하는 방법 NFS를 설정하면 다른 컴퓨터에서 원격으로 파일 시스템을 마운트하여 공유할 수 있습니다. 단계 1: 필요한 패키지 설치 NFS 서버를 설치하기 전에 필요한 패키지를 설치합니다. sudo yum install nfs-utils 단계 2: 공유할 디렉토리 생성 공유할 디렉토리를 생성합니다. 이 예시에서는 /nfs_share 디렉토리를 생성합니다. sudo mkdir /nfs_share 단계 3: NFS 서버 설정 NFS 서버를 시작하고 부팅 시 자동으로 시작하도록 설정합니다. sudo systemctl start nfs-server sudo systemctl enable nfs-server /etc/exports 파일을 수정하여 공유할 디렉토리를 .. 더보기 [원도우] Windows Media Player 12 (윈도우7) Windows Media Player 12 (윈도우7) Winodws7 K, KN버전 Windows Media Player 다운로드 http://www.microsoft.com/downloads/details.aspx?FamilyID=31017ed3-166a-4c75-b90c-a6cef9b414c4&DisplayLang=ko 더보기 이전 1 ··· 237 238 239 240 241 242 243 ··· 270 다음