安装homebrow
https://gitee.com/cunkai/HomebrewCN
配置adb
brew cask install android-platform-tools
microsoft-remote-desktop-for-mac
挂载ntfs硬盘
1.首先查看本地已经挂载的ntfs硬盘:
mount | grep ntfs
结果如下:
/dev/disk3s1 on / (ntfs,…)2.然后卸载该硬盘:
sudo umount /dev/disk3s1
3.本地创建一个挂载目录,然后使用mount_ntfs再次挂载:
sudo mkdir /Volumes/mnt
sudo mount_ntfs -o rw,nobrowse /dev/disk3s1 /Volumes/mnt