본문 바로가기
일상 팁

맥 화면 밝기 및 볼륨조절 창 없애기

by 라띠앵커 2021. 10. 17.
반응형

맥 화면 밝기 및 볼륨조절 창 없애기 방법입니다.

 

M1에서는 컴퓨터를 아예 종료한 뒤, 전원 및 지문 버튼을 꾹 계속 눌러서 복구모드에 진입합니다.

일반 맥에서는 컴퓨터 재시작시 Command + R 버튼을 꾹 계속 눌러서 복구모드에 진입합니다.

Options에 진입

 

 

How to Boot an M1 Mac Into Recovery Mode (Compared to an Intel Mac)

Macs can operate in macOS Recovery Mode, which allows you to run emergency maintenance on your desktop or laptop. It’s a special mode that loads native recovery tools that help you out when you are in a jam.

eshop.macsales.com

복구 모드에서 터미널을 켜서 아래 코드를 입력하여 System Integrity Protection을 해제합니다.

// System Integrity Protection 해제
$ csrutil disable

현재 상태는 아래 코드로 확인합니다.

// 현재 상태 확인
$ csrutil status

System Integrity Protection status: enabled. 또는
System Integrity Protection status: disabled. 라고 표시

컴퓨터 재시작하여 Terminal에서 아래를 입력하여 밝기 및 볼륨조절 시 띄워지는 창을 없앱니다.

launchctl unload -wF /System/Library/LaunchAgents/com.apple.OSDUIHelper.plist

이후 다시 복구모드에 진입하여 System Integrity Protection을 설정합니다.

// System Integrity Protection 설정
$ csrutil enable

이러면 끝입니다.

반응형