일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- 휴대용 선풍기
- 프론트
- html
- V20
- Iphone 12
- 맥북
- iphone
- 오난코리아
- Mac
- 맥
- 타임머신
- LG V20
- TimeMachine
- LUMENA
- EC2
- 웹 프로그래밍
- mysql
- wwdc 2020
- Fan Pro 3세대
- 아이폰12
- iOS 14
- 27UP850N
- It
- 루메나
- 샤오미
- 애플
- macbook
- 맥북프로
- 코딩
- AWS
Archives
- Today
- Total
이것저것 적어보는 블로그
맥 타임머신 속도 관련 명령어 (링크) 본문
반응형
출처 : 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
입력 후 재부팅
반응형
'Mac' 카테고리의 다른 글
애플 대학생 교육할인 구매 시, 대학생 찬스 이용 시 유의사항 (2023.01.18 수정) (151) | 2020.01.21 |
---|---|
맥 타임머신 로컬 스냅샷 삭제 (0) | 2019.12.31 |
맥 터미널에서 sudo 명령 Touch ID로 인증하기 (0) | 2019.11.06 |
애플 맥북프로 버터플라이 키보드 무상수리 (feat. 16년 제품의 백라이트 무상수리) (0) | 2019.06.07 |
맥 aptx/aac 활성화하기 (0) | 2019.02.06 |
Comments