Thanks for your suggestion. I was able to figure out my issue. Since I was specifying my Mac's login name and password in the mount command, the mounted folder should not include the "/Users/Dave" file path. Instead, this is what worked:
sudo mount -t cifs -o user=dave,password=xxxxx,rw,file_mode=0777,nounix,sec=ntlmssp,uid=$(id -u),gid=$(id -g),forceuid,forcegid, //192.168.50.114/pi_videos /home/pi/mac_videos
I also made sure I had a folder on the Raspberry Pi system called "/home/pi/mac_videos".
sudo mount -t cifs -o user=dave,password=xxxxx,rw,file_mode=0777,nounix,sec=ntlmssp,uid=$(id -u),gid=$(id -g),forceuid,forcegid, //192.168.50.114/pi_videos /home/pi/mac_videos
I also made sure I had a folder on the Raspberry Pi system called "/home/pi/mac_videos".
Statistics: Posted by cohoman — Tue Mar 05, 2024 12:05 am