View Single Post
  #48  
Old 11-11-2020, 09:30 AM
Christopotamus Christopotamus is offline
Member
 
Join Date: Oct 2020
Location: USA
Posts: 2
Default Re: Can not save, "The system cannot find the file specified"

All of this is explained in the google doc I linked above, but I figured a way around the forum's filtering of my post:


Go to the Task Scheduler on the NAS and create a Triggered Task -> User Defined Script with the following settings and contents:


Give the task any name you’d like, such as “Fix Pro Tools Saving”
User should be set to “root”
Event should be set to “Boot-up”
Enabled should be checked.


Click on the “Task Settings” tab and paste in the following script:


Note: Replace "FORBIDDEN_WORD" with "sh" - no quotes



Code:
#!/bin/FORBIDDEN_WORD


 # Stop Samba
/usr/syno/sbin/synoservicecfg --stop samba


 # Create the new conf file

 echo "vfs objects = fruit
fruit:aapl = yes
fruit:encoding = native
fruit:locking = none
fruit:metadata = stream
fruit:resource = file" >> /var/tmp/nginx/smb.netbios.aliases.conf


# Start Samba
/usr/syno/sbin/synoservicecfg --start samba
Save this task.


You may click the task and press the “Run” button in the DSM, or simply reboot the NAS. Once the task has been run or the NAS has finished rebooting, you should be able to save your protools sessions.


If this doesn’t work for you I’d be happy to help troubleshoot further.
Reply With Quote