윈도우 서버에서 C드라이브 공간이 없어서 용량확보를 해야할 때 다음 작업을 통해, 용량을 정리를 할 수 있다. C:\Users\Administrator\AppData\Local\Temp C:\Windows\Temp C:\Windows\System32\winevt\Logs 의 불필요한 로그 C:\Windows\SoftwareDistribution\Download SoftwareDistribution : 윈도우 업데이트가 제대로 작동하지 않을 때 비워준다 ### wsus 정지 net stop wuauserv net stop bits ### wsus 실행 net start wuauserv net start bits
명령어 내용 mstsc /v: “IP” mstsc-원격데스크탑 연결, /v: “IP”(옵션)-이동할 IP주소 regedit 레지스트리 편집기 taskmgr Windows 작업 관리자 mrt Microsoft Windows 악성 소프트웨어 제거 도구 cmd 도스창 로딩 calc 계산기 로딩 osk 가상키보드 로딩 charmap 문자표 로딩 mspaint 그림판 로딩 sndvol32 마스터 볼륨창 로딩 iexplore 인터넷 익스플로어 msconfig 시스템 구성 유틸리티 cleanmgr 디스크 정리 로딩 magnify 돋보기창 로딩 mstsc 원격 데스크톱 연결 appwiz.cpl 프로그램 추가/제거 desk.cpl 디스플레이 정보 firewall.cpl 방화벽 설정 inetcpl.cpl 인터넷 옵션 ma..
시스템을 운영하다보면 하드웨어 정보가 필요한 경우가 있다. Hostname hostname 서버 정보 dmidecode -t 1 | grep Product | awk '{print 4,$5}' OS 정보 cat /etc/redhat-release uname -a CPU 사양 CPU 모델명 : cat /proc/cpuinfo | grep "model name" | uniq -c | awk '{print $5 $6, $7,$8, $9, $10 $11}' CPU당 물리 코어 수 : cat /proc/cpuinfo | grep "cpu cores" | tail -1 | awk '{print $4}' 물리 CPU 수 : cat /proc/cpuinfo | grep "physical id" | sort -u | w..