With a few modifications to DSM, you can save your Final Cut Pro X library to your Synology NAS. Especially useful for those who have a 10GbE-enabled NAS.
Synology DS1618+ on Amazon:
10GbE NIC for Synology:
WATCH MORE VIDS… 👀
Arlo Ultra hands-on: should you choose it over the Arlo Pro 2?
Review: $399 Razer Core X Chroma eGPU – a "light" upgrade for the Mac's best eGPU
How to build a Thunderbolt 3 dual 4K ProRes video capture box with Sonnet x Blackmagic hardware!
Wireless Charging Case for AirPods review – $80 for….?!
Which iPad Should You Buy? iPad 6, iPad mini 5, iPad Air 3, or iPad Pro?
Logitech Slim Folio Pro review – bulky, but great for typists
Elgato Thunderbolt 3 Pro Dock Review
How to: 27-inch 5K iMac (2019) 128GB RAM Upgrade – Save $$$!
iPad Air 3 review: Semi-Pro!
AirPower is DEAD. Apple cancels its wireless charging mat!
iOS 12.3 beta 1 changes / features – redesigned TV app!
AirPods 2 review
iOS 12.2 – new Apple News+, new AirPlay features, AirPods support, and more!
Review: LG UltraFine 4K Display with Thunderbolt 3
Galaxy Buds from an AirPods user's perspective
Galaxy S10+ from an iPhone user's perspective
Review: Satechi stand for iMac includes a built-in hub
iOS 12.2 beta 4 – new changes / features!
Hands-on: Philips Hue Outdoor sensor
OWC ThunderBlade review
12 iPhone Safari tips everyone should know!
Is this the Apple 6K Display?
iOS 12.2 beta 3 Changes and Features!
My 🎥🎙🖥gear:
– Sony A7 III:
– Sony FE 16-35mm f/2.8 GM:
– Sony FE 85mm f/1.4 GM:
– Sony FE 90mm f/2.8 Macro G OSS:
– Sony RX100 VA:
– Atomos Ninja V:
– Sennheiser MKH-416:
– Audio Technica ATH-M50x:
– Universal Audio Arrow:
– Fotodiox 18-inch Flapjack:
– iMac Pro:
– MacBook Air:
– iPad Pro:
Follow:
FCPX Plugins by MotionVFX:
##########################
Affiliate Disclosure:
##########################
Note: Some of the links used in the description will direct you to Amazon. As an Amazon Associate, we earn revenue from qualifying purchases at no additional cost to you.

First
Nope I’m first
Jeff does an amazing job, helping up out on our day to day tech troubles.
sadly, if you add this option, the time machine support is disabled on the Synology NAS, you wont be able to start the time machine backup on this NAS.
You can keep AFP enabled, and use both Time Machine and Shared Storage for FCPX. I just recommended disabling AFP if you’re not actively using it.
I guess I can contribute to another great reason. Your MacBook Pro or iMac might not have enough storage for editing and store so editing of a NAS doesn’t take up space when editing except when you export but in the end. I edit off a SSD.
Another reason is that it allows you to have your working storage in a whole different area your office/house.
What would happen if two Macs open the same library at the same time.
Yan interesting question but you can set users and permissions not only to FCPX but to each individual library file as well
FCP X should only allow access to one. You’ll need to close a library before opening it on another computer.
9to5Mac the Synology NAS is such a versatile product. You can do so many things. You can also install 2 x ssd’s for the read / write cache. Wouldn’t that help for video editing off the nas?
This is a great video. I have 4 sata ssds working in raid 0 for my current fcpx projects but for old projects this is gold! Thanks Jeff!
We use a QNAP as it had 2x Thunderbolt 3 ports as well as 2x Gigabit Ethernet ports. Works a treat for multipke computers editing with FCPX!
Yeah, that’s a really nice option. Will have to check one out. Wish Synology had built in Thunderbolt 3.
9to5Mac yeah I love Synology products but that’s the only feature why we went with QNAP
hi Jeff, I just want to mention that ssh command works in your case because your local user account name matches with login name on NAS, if not, you can specify ssh username before @ sign like this — loginname@mynasip
And if you use standard ssh port, and this is 22, you can not mention it and not use -p flag
Some additional recommendations:
For maximum speed,, especially when using 10GbE, use the EXT4 file system instead of btrfs and ‘normal’ RAID instead of SHR (there is a benchmark page on the interwebs, unfortunately in German only).
Install the 3rd party ‘nano’ text editor package on the Synology (just google it). This works much more like a Mac text editor than the preinstalled vim editor.
ALWAYS use the “tesparm” command after Samba config changes. You can easily break SMB access by syntax errors in the config file(s).
Add ‘socket options=TCP_NODELAY,IPTOS_LOWDELAY’ to the smb.conf on the Syno.
Add ‘net.inet.tcp.delayed_ack=0’ to the /etc/sysctl.conf on the Mac.
Enable Ethernet MTU size of 9000 (Jumbo Buffers) on the Syno and the Mac (plus on the network switch in case of a switched (e.g. non-direct) connection).
very handy, thank you!!
I am so glad to see this kind of video!! I have the NAS and it is set up but I really dont know how to use it correctly. I just got the 10 g ethernet!!!
I love your videos, Jeff, but I have a lot of comments about your Terminal use. – Now I’ll start off by saying that none of what you did was wrong per se. Just not the recommended way of doing things, and you made things harder on yourself than you needed to.
I’ll not talk about ssh since others have already done that enough.
But it is not recommended to create an interactive root shell with sudo -i. Instead, use sudo in front of the commands that require super-user privileges. In your case that was basically all the commands, so fair enough, but it’s generally bad practice and I would encourage people to not create interactive root shells.
Furthermore, using vim is way harder for people who aren’t so used to the Terminal than using something like Nano. Nano is a much simpler text editor. You don’t need to switch to an insert mode to enter text, and when you quit and write the data, you don’t need to remember anything – all the commands are visible at the bottom of the screen. And nano is basically as common as vim out there.