디스크
-
[Python] Windows OS Disk Usage Check. (윈도우 운영체제 디스크 사용량 체크)Python/Python Programming 2019. 10. 18. 21:40
import shutil.disk_usage(drive) : 드라이브의 전체용량, 사용량, 잔여량 정보를 리턴 import shutil drive = 'c:' c = dict([x for x in zip(['total','used','free'], shutil.disk_usage(drive))]) print(c) print(drive,'Partition used %d %%' %(c['used']/c['total']*100)) ----------------------------------------------------------------------------- {'total': 255005159424, 'used': 224621703168, 'free': 30383456256} c: Partition ..
-
Windows 2012 Server - 작업관리자에서 디스크 성능 카운트 활성화Windows/Windows 2008 , 2012 2018. 4. 21. 16:14
Windows 2012 Server 설치시 작업관리자에서 디스크 성능 카운트는 비활성화가 되어 있다. 이를 활성화 하려면 'diskperf -Y' 명령어를 통해서 활성화 해준다 DOC : https://blogs.technet.microsoft.com/canitpro/2013/12/02/step-by-step-enabling-disk-performance-counters-in-windows-server-2012-r2-task-manager/