hotcereal / cloud-saves-miyoo-mini-plus

Utilizing rclone, upload and download saves to and from your Miyoo Mini Plus.
57 stars 4 forks source link

SMB Share as Remote #5

Open Titanius-Smith opened 6 months ago

Titanius-Smith commented 6 months ago

Looks like the command in launch.sh is assuming a format of "cloud:Onion/saves", which has some implications for using SMB as the remote as the format translates to remote:share/folder in the case of SMB.

The "Onion" part of that command means the actual share name on the samba server must be named as such - this should probably be noted somewhere (if it is and I'm blind or misread the instructions feel free to close this out and tell me as such).

Working example excerpt from my Samba config:

[Onion]
   comment = Miyoo Mini Saves
   path = /home/mmp/cloudSaves
   browseable = yes
   readonly = no
   guest ok = no
   valid users = mmp

Works great once it's setup however, thanks for your efforts on this project!