이것저것 적어보는 블로그

맥 타임머신 속도 관련 명령어 (링크) 본문

Mac

맥 타임머신 속도 관련 명령어 (링크)

dona0408 2019. 1. 11. 12:41
반응형

출처 : http://macnews.tistory.com/4280

터미널 명령어로 타임머신 프로세스 우선순위 높이기

sudo sysctl debug.lowpri_throttle_enabled=0

 

** 재부팅시 해당 설정값 날아감, 타임머신 백업전에 먼저 명렁어 활성화 후 진행

 

운영체제 재부팅 후에도 효과 유지하기

sudo nano /Library/LaunchDaemons/speedup-timemachine.plist

 

 nano 에디터 오픈 후 해당 소스 붙여넣기

<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <!-- Copy under /Library/LaunchDaemons and issue sudo launchctl load /Library/LaunchDaemons/fix-el-capitan-slow-time-machine-speed.plist --> <plist version="1.0">   <dict>     <key>Label</key>     <string>fix-el-capitan-slow-time-machine-speed</string>     <key>ProgramArguments</key>     <array>       <string>/usr/sbin/sysctl</string>       <string>debug.lowpri_throttle_enabled=0</string>     </array>     <key>RunAtLoad</key>     <true/>   </dict> </plist>

Control + O , Control + X 눌러서 빠져나오기

sudo chown root /Library/LaunchDaemons/speedup-timemachine.plist;sudo launchctl load /Library/LaunchDaemons/speedup-timemachine.plist


명령어 입력해 부팅시 자동 실행설정
---------------------------------------

------------------------------------------------------------------------------


+ 초기상태 복구 명령어

sudo launchctl unload -w /Library/LaunchDaemons/speedup-timemachine.plist;sudo rm -rf /Library/LaunchDaemons/speedup-timemachine.plist

 

입력 후 재부팅

반응형
Comments