Thanks so much for helping to troubleshoot @hans.
- Your username or password has interfering characters in it. This may or may not be the case.
For example "%21" in a password is pretty bad as it will be converted to an exclamation point.
I carefully assume you had "!' in your password and not "%21", so in that case this wouldn't be the issue either.
Yes indeed, I have "!" in my password.
Two things to try:
1) Can you connect to the other share through Finder?
If yes, the let us see what the output of "mount" (in Terminal) looks like).
Here's the output:
raylam@raylam ~ % mount
/dev/disk3s1s1 on / (apfs, sealed, local, read-only, journaled)
devfs on /dev (devfs, local, nobrowse)
/dev/disk3s6 on /System/Volumes/VM (apfs, local, noexec, journaled, noatime, nobrowse)
/dev/disk3s2 on /System/Volumes/Preboot (apfs, local, journaled, nobrowse)
/dev/disk3s4 on /System/Volumes/Update (apfs, local, journaled, nobrowse)
/dev/disk1s2 on /System/Volumes/xarts (apfs, local, noexec, journaled, noatime, nobrowse)
/dev/disk1s1 on /System/Volumes/iSCPreboot (apfs, local, journaled, nobrowse)
/dev/disk1s3 on /System/Volumes/Hardware (apfs, local, journaled, nobrowse)
/dev/disk3s5 on /System/Volumes/Data (apfs, local, journaled, nobrowse, protect)
map auto_home on /System/Volumes/Data/home (autofs, automounted, nobrowse)
/Applications/CARROTweather.app on /private/var/folders/jn/0jjl8phs3ss9n2bm5kcmwqtr0000gq/T/AppTranslocation/24AEBE8A-831F-46FC-82BE-666C00993B56 (nullfs, local, nodev, nosuid, read-only, nobrowse, mounted by raylam)
/Applications/Spark.app on /private/var/folders/jn/0jjl8phs3ss9n2bm5kcmwqtr0000gq/T/AppTranslocation/2F7D6965-6C05-4FC5-86C8-075C9AEFBA1F (nullfs, local, nodev, nosuid, read-only, nobrowse, mounted by raylam)
/Applications/Camera Settings.app on /private/var/folders/jn/0jjl8phs3ss9n2bm5kcmwqtr0000gq/T/AppTranslocation/4C495AC8-F5D3-4E24-8385-5DF1258F6B0D (nullfs, local, nodev, nosuid, read-only, nobrowse, mounted by raylam)
//Ray%20Lam@vurtPro._smb._tcp.local/Downloads on /Volumes/Downloads (smbfs, nodev, nosuid, mounted by raylam)
I recognize the last line indicates the share is mounted.
2) Can you try a manual mount in Terminal and see if that shows us some info?
Steps in Terminal:
mkdir /Users/raylam/MountPoints/Test
mount_smbfs "//Ray%20Lam:password@192.168.1.50/Volumes" "/Users/raylam/MountPoints/Test"
(of course: replace "password" with your password)
This should mount your share, or very maybe display an error message.
If nothing is shown, see if there is anything to be found in "/Users/raylam/MountPoints/Test", and/or check the output of "mount" to see if the share has been mounted.
Here's what I'm getting, quite odd:
raylam@raylam ~ % mkdir /Users/raylam/MountPoints/Test
raylam@raylam ~ % mount_smbfs "//Ray%20Lam:!password@192.168.1.50/Volumes" "/Users/raylam/MountPoints/Test"
zsh: event not found: f3athering67@192.168.1.50/Volumes
raylam@raylam ~ % mount_smbfs "//Ray%20Lam:%21password@192.168.1.50/Volumes" "/Users/raylam/MountPoints/Test"
mount_smbfs: server rejected the connection: Authentication error
raylam@raylam ~ % mount_smbfs "//Ray%20Lam:!password@192.168.1.50/Volumes" "/Users/raylam/MountPoints/Test"
zsh: event not found: f3athering67@192.168.1.50/Volumes
raylam@raylam ~ % mount_smbfs "//Ray%20Lam:%21password@192.168.1.50/Volumes" "/Users/raylam/MountPoints/Test"
mount_smbfs: mount error: /Users/raylam/MountPoints/Test: No such file or directory
raylam@raylam ~ % mount_smbfs "//Ray%20Lam:%21password@192.168.1.50/Volumes" "/Users/raylam/MountPoints/Test"
mount_smbfs: mount error: /Users/raylam/MountPoints/Test: No such file or directory
raylam@raylam ~ % mkdir /Users/raylam/MountPoints/Test
mkdir: /Users/raylam/MountPoints/Test: File exists
raylam@raylam ~ % mount_smbfs "//Ray%20Lam:%21password@192.168.1.50/Volumes" "/Users/raylam/MountPoints/Test"
mount_smbfs: mount error: /Users/raylam/MountPoints/Test: No such file or directory
"!" doesn't work, but "%21" is telling me /Test doesn't exist even though it does.
This post was modified 2 years ago 2 times by
Anonymous