【Homebrew】git が2つある場合 【macOS】

git homebrew macos

👉 Re-installing Git on Mac OSX with Brew 

状況確認


~ % which git
/usr/local/bin/git

~ % git --version
git version 2.33.0

~ % which -a git 
/usr/local/bin/git
/usr/bin/git

~ % for i in $(which -a git); do echo -n "${i}:  "; ${i} --version; done
/usr/local/bin/git:  git version 2.33.0
/usr/bin/git:  git version 2.32.0 (Apple Git-132)

~ %  cat /etc/paths
/usr/local/bin
/usr/bin
/bin
/usr/sbin
/sbin

~ % sudo rm -rf /usr/bin/git
Password:
rm: /usr/bin/git: Operation not permitted

私の mac には2つの git パッケージがインストールされている。


sudo rm -rf /usr/bin/git wont work for El Capitan due to SIP restriction

削除しようとしても macOS側の git は消せない。

通常、残しておくしかない。

対応方法

実行するときの git を Homebrew側に向けておく必要がある。

以下3つのどれかを、bash でも zsh でも起動スクリプトに追加する。


export PATH=$PATH:/usr/local/bin/git


export PATH=/user/local/bin:$PATH


alias git="/usr/local/bin/git"

AndroidStudio の git 不具合のときに少し気になったのでメモ。

👉 Cannot Run Git : Cannot identify version of git executable: no response – on startup 


iPhone / iPad が Reflector に接続できない場合 【macOS Monterey】

ミラーリングから iMac に接続すると、

iPhone ミラーリング

あれ、画面いっぱいに iPhone 画面が表示されるんですが。

apple airplay

なんすかこれ。

 

Monterey ビルトインの AirPlay レシーバー

Wi-Fi 経由で Mac やiPhone の Apple製品の画面をミラーリングできるようになったとのこと。

apple-airplay receiver

👉 AirPlay を使って iPhone、iPad、iPod touch からビデオをストリーミングする/画面をミラーリングする - Apple サポート (日本) 
👉 Montereyのココが気になる 〜AirPlay編〜 | マイナビニュース 

この機能と衝突しているため、Reflector レシーバー が、iPhone 側から見えないそうです。

よって、

[システム環境設定] - [共有] から [AirPlayレシーバー] を OFF

にすると、Reflector のレシーバーが iPhone から見えるようになります。

[システム環境設定] - [共有] から [AirPlayレシーバー] を OFF

アイコンが、Apple TV のものに変化します。(Reflector3)

monterey airplay receiver off

👉 Connect an iPhone or iPad to Reflector 4 on macOS Monterey - Reflector 

まとめ

macOS Monterey ビルドインの新機能 AirPlayレシーバーをOFFにすると Reflector は使えるようになる。

👉 Reflector 4 | Screen mirror Android, iOS & Chrome OS to a bigger screen 


【Mac】Spotify アプリが真っ黒からの復活方法

spotify-blank-screen

Spotifyを終了します。Finderで、[Go]をクリックし、[フォルダに移動]をクリックして、~/Library/Application Supportと入力して、[Go]をクリックします。Spotifyフォルダを見つけて削除します。その後、Spotifyを再起動します。

Mac OSでSpotifyの黒い画面を修正する方法は?

何回も起こるので貼っとく。


rm -rf ~/Library/Application\ Support/Spotify

終了 → 削除 → 起動 となるので以下。



クリーンにログインとなります。

restart-spotify