This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
0. Download mountCifs.scpt | |
1. Create command in Tasks subfolder | |
2. In Command tab specify | |
a. Command: osascript | |
b. Arguments: mountCifs.scpt $URI$ C$ "$EffectiveUsernameWithoutDomain$" "$EffectivePassword$" | |
c. Working Directory: path to mountCifs.scpt | |
3. In Credentials tab select "Use the context credentials" (for getting credentials from remote connection) | |
4. Mark task as favorite | |
5. Execute task on remote connection | |
6. (For Royal TSX 3.0.0.14 beta or newer) To hide terminal window pop-up disable "Run in Terminal" checkbox at General tab of task |
If files or directory is inaccessible you need to normalize it from UTF-8 C (OSX) to D (Linux)
- Enable NFS on NAS
- Setup NFS permission on NAS for target directory
- From linux connect to NFS share (CentOS:
mount.nfs -w 192.168.1.100:/volume1/datastore/ /mnt/
) - Install convmv tool (CentOS:
yum install convmv
) - Open mounted directory
- Run command
convmv -r -f utf8 -t utf8 --nfc .
(dry-run)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### Cloudflare Dynamic DNS for Synology NAS | |
# 1. Open Synology Task Manager (Synology UI -> Control Panel -> Task Scheduler) | |
# 2. Create task, define schedule, notification, etc | |
# 5. Define this Bash Script and specify your zone, dnsrecord to updatte, and Cloudflare API Token (https://dash.cloudflare.com/profile/api-tokens) | |
#!/bin/bash | |
# Settings | |
zone=example.com | |
dnsrecord=abc.example.com | |
cloudflare_auth_token=12345678910QAZXSWEDCVFRTGB1234567890asdw |