If you would like to share an iodyne container from Pro Data or Pro Mini to another computer over the network, you can do so with the file sharing built-in to your operating system. Below are instructions on how to do that for macOS.
macOS SMB Sharing
Add User Accounts
- System Settings → Users & Groups → Unlock.
- Add User → Change Standard to Sharing Only.
- For read-only access: Account Name: share_ro
- For read-write access: Account Name: share_rw
Grant Full Disk Access
- Settings → Privacy & Security → Full Disk Access.
- + → ⌘ ⇧ G → /usr/sbin/smbd → toggle ON.
- macOS will auto-enable Allow full disk access for all users – leave it on.
Share Desired Containers
- Settings → General → Sharing → File Sharing ︎→ Toggle On
- Click the ⓘ next to the File Sharing
- Shared Folders + → select your container(s)
- Modify Users table to reflect:
Name | Privilege |
Your Mac login | Read & Write |
share_ro | Read Only |
share_rw | Read & Write |
Everyone | No Access |
Connecting from other Macs
- Open Finder.
- In the sidebar under Locations click Network.
- Double-click the icon for your Mac.
- In the top-right of the window click Connect As…
- Choose Registered User
- For read-only access:
- Name: share_ro
- Password: (what you set above)
- For read-write access:
- Name: share_rw
- Password: (what you set above)
- ✓ Remember this password in my keychain → Connect.
- For read-only access:
- A list of shares appears — highlight SMB_Test → OK.
Optimize SMB Performance (Optional)
For optimal performance when hosting SMB shares from macOS, we recommend applying the following SMB performance tunables on the host Mac.
These settings optimize SMB behavior for dedicated media workflows and should only be applied to Macs that are acting as the SMB host.
Note
- Apply these settings only on the Mac hosting the SMB share.
- Administrator privileges are required.
- Restart the Mac after applying or removing the configuration.
- If the Mac is no longer being used as an SMB host, restore the default configuration by removing the custom tunables.
Tip: triple-click anywhere inside a code block to select the entire command, then press ⌘C to copy it.
Apply the SMB performance tunables
- Open Terminal.
- Run the following command:
sudo bash -c 'printf "%s\n" "[default]" "signing_required=no" "streams=yes" "notify_off=yes" "port445=no_netbios" "protocol_vers_map=2" "unix extensions = no" "veto files=/._*/.DS_Store/" > /etc/nsmb.conf'
- Restart the Mac.
Restore the default SMB configuration
If the Mac will no longer be used as an SMB host, remove the custom configuration.
- Open Terminal.
- Run the following command:
sudo rm /etc/nsmb.conf