0 Members and 1 Guest are viewing this topic. Read 4352 times.
Well.... after middling to bad experiences with home NAS units (WD and Maxtor), I have to say I'm fairly impressed with Synology. Not perfect, but good. My unit (DS411slim) is definitely on the low end horsepower-wise, but with a bit of patience, it's doing pretty much everything I've asked of it so far. I had originally intended only to put one or maybe two drives in it for serving music files, but I've bought three WD Red drives for it now and am gradually expanding its tasks on the home network.The issue that I am having is to do with large dumps to the server using rsync. This could well be an Apple problem... after some time, rsync just halts. Then when I re-run the script, it fails, because the shared folder on the NAS has reappeared with a different name. oFor example, riginally I had /Volumes/iTunes, then /Volumes/iTunes-1, and now /Volumes/iTunes-2. I really have no idea why...
# My SMB auto mounts# Synology NAS/mnt/NAS -fstype=smbfs,soft smb://username:password@SYNOLOGY.LOCAL/HOMES# BDP-1/mnt/MUSIC -fstype=smbfs,soft smb://bryston:bryston@BRYSTON-BDP-1.LOCAL/MUSIC0#
Does anyone know how to keep a drive mapped in W8.1? Every time I reboot I need to remap to the Synology via the Synology manager.
Great! Thank you Jim, looks like that is working for me now. I had a permissions issue, which is my own fault for not following the actual instruction. Instead of$ sudo automount -vc$ ls -laF /mnt/MUSICI did:$ sudo -s$ automount -vc$ ls -laF /mnt/MUSICThis doesn't work, because the first user to ls the directory becomes the owner? With permissions 700. So once root owned it, regular old me couldn't access it. Took me a while to figure that out...
# Nightly backup of music0 0 * * * /usr/bin/rsync -avz --delete -e ssh /path/to/source/music username@nas.local:"/path/to/destination/music/" --exclude=.DS_Store --exclude=.apdisk --exclude=._.DS_Store --log-file=/tmp/rsync_crontab.log
The automount -vc mostly refreshes the configuration for the daemon (automountd), but yeah I think the first account that accesses the directory gets ownership. I only have the one account, but if you need to adjust the permissions you can read the mount_smbfs and mount man page for possible options and adjust them in the auto_smb file.
To avoid having your password as plain text in the auto_smb file you can just stick with rsync by setting up ssh.
The automount is working great!On a different item, I was getting Time Machine failures. Scratched my head over that one, and finally realized that it happened after I "entered" Time Machine. With the "Time Machine Backup" drive already mounted, TM was trying to find it and... failing? Ejecting the TM drive and then running TM succeeds. This must be an Apple problem of some kind. Anyway, at least I know why now. I'll just check it one more time now...Next up is to set up Windows backups. (Not my computers, my Win VM has all its data files in the host filesystem already.) I was going to use Crashplan to backup to the NAS and then selectively to the cloud, but CP won't allow you to backup to a NAS. Unless you actually install their software on the NAS, which means installing Java. I don't think my CPU has enough grunt for it (not to mention the hassle). That's nuts, it should just back up to a network share, why on earth not? Anyway, so much for CP then, the Synology Data Replicator utility looks like it works OK as a daily backup so I'll just use that.