1. Search for the disk name
diskutil list
Copy the code
2. List the files in the Volumes directory
ls /Volumes/
Copy the code
3. Change the hard disk to writable
sudo nano /etc/fstab
Copy the code
Enter (volumesName Name of the mobile disk)
LABEL=volumesName none ntfs rw,auto,nobrowse
4. Create a shortcut
sudo ln -s /Volumes/volumesName/ ~/Desktop/volumesName
Copy the code