LoginSignup
1
0

More than 3 years have passed since last update.

mac miniでmountコマンドが見つからない(mount: command not found)

Posted at

sudo mount -uw /を実行したら、sudo: mount: command not foundって出た。

環境

  • M1 Mac mini
  • Big Sur 11.1

対応

/sbinを見るとmountが存在したので、.zshrcに以下の変更をした。

PATH=/bin:/usr/bin:/usr/local/bin:${PATH}
↓に変更
PATH=/bin:/usr/bin:/usr/local/bin:/sbin:${PATH}

雑談

うーん、この辺の知識の乏しさを感じる。。。
こんなのはlinuxの学習でどうにかなるのだろうか。

参考記事:https://www.reddit.com/r/MacOSBeta/comments/dg0mst/command_not_found_mount_since_update_to_catalina/

1
0
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
1
0