Serving Files with Python's SimpleHTTPServer Module
- 1 minServing Files with Python’s SimpleHTTPServer Module
based on: https://apple.stackexchange.com/questions/354363/brand-new-external-hard-drive-formatted-exfat-is-mounted-read-only
- Type
diskutil list
-
Find the drive, in this case it is
/dev/disk2s1
-
Unmount the drive with
umount /dev/disk2s1
-
Now create a directory in in /Volumes by running
sudo mkdir -p /Volumes/<name of your volume>
-
Mount the hard drive to this directory your created by running
sudo mount_exfat /dev/disk2s1 /Volumes/<name of your volume>
.