3
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Macデフォルトでインストールされているアプリを削除する

Last updated at Posted at 2020-05-28

Books.appとか、Mail.appとかSiri.appとか、要らないので削除。

Screen Shot 2020-06-08 at 4.54.45 PM.png

macOS Catalina

1. Macをリカバリーモードで再起動する

(もしくは再起動時に [Cmd] + [Option] + [R])

sudo nvram "recovery-boot-mode=unused"
sudo reboot

2. MacのSystem Integrity Protectionを無効にする

Utilities > Terminalから実行

# csrutil enable --without fs
Screen Shot 2020-06-08 at 5.01.32 PM.png

3. 再起動後、ルートの読み込み権限を再マウント

sudo mount -uw /

4. 不必要なアプリを削除

$ cd /System/Applications 
$ sudo rm -rf Mail.app Books.app
Screen Shot 2020-06-08 at 5.04.28 PM.png

rm -rfした直後では、まだアプリのアイコンが表示される
Screen Shot 2020-06-08 at 5.04.46 PM.png

再起動後に再び開くと、ちゃんとアイコンが消えている
Screen Shot 2020-06-08 at 5.06.21 PM.png


macOS Catalinaより前のバージョン

1. Macをリカバリーモードで再起動する

(もしくは再起動時に [Cmd] + [Option] + [R])

sudo nvram "recovery-boot-mode=unused"
sudo reboot

2. MacのSystem Integrity Protectionを無効にする

Utilities > Terminalから実行

# csrutil disable
Screen Shot 2020-05-28 at 9.54.28 AM.png

3. リカバリーモードを終了して、再起動

# nvram -d recovery-boot-mode
# reboot

4. Terminalから削除

$ sudo rm -rf /Applications/Mail.app

すっきりした (^^)
Screen Shot 2020-05-28 at 10.16.02 AM.png

3
6
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?