TrueNAS and Final Cut Pro X

moiconstantino

Dabbler
Joined
Jul 12, 2020
Messages
10
Unsupported Volume Type
Choose a local, SAN, or supported SMB location.

This message shows up when I try to open FCPX file, anyone knows whats going on?
 

Attachments

  • Screen Shot 2020-07-12 at 5.06.53 PM.png
    Screen Shot 2020-07-12 at 5.06.53 PM.png
    84.7 KB · Views: 430

Samuel Tai

Never underestimate your own stupidity
Moderator
Joined
Apr 24, 2020
Messages
5,399
Is the network drive the FCPX refers to mounted in Finder?
 

Samuel Tai

Never underestimate your own stupidity
Moderator
Joined
Apr 24, 2020
Messages
5,399
Should be in the same location: Sharing->Windows shares. Within the share, enable VFS fruit. Restart the SMB service to make it take effect.
 

Samuel Tai

Never underestimate your own stupidity
Moderator
Joined
Apr 24, 2020
Messages
5,399
What version of TrueNAS is this, and are you running in HA mode?
 

Samuel Tai

Never underestimate your own stupidity
Moderator
Joined
Apr 24, 2020
Messages
5,399
Don't forget to restart SMB service after changing its settings. You may also need to unmount and remount the share.
 

anodos

Sambassador
iXsystems
Joined
Mar 6, 2014
Messages
9,553
You're sharing out the root level dataset via AFP and SMB simultaneously.
1) Create a new dataset to share out your data (not root level).
2) When you share out same path simultaneously, we try to coordinate locking between filesharing protocols. FreeBSD lacks support for kernel oplocks and so we have to turn this feature off in the case of mixed AFP/SMB. In your case since Final Cut probably expects oplock capabilities, it fails. This means you need to _not_ share via AFP and SMB simultaneously.
 

moiconstantino

Dabbler
Joined
Jul 12, 2020
Messages
10
You're sharing out the root level dataset via AFP and SMB simultaneously.
1) Create a new dataset to share out your data (not root level).
2) When you share out same path simultaneously, we try to coordinate locking between filesharing protocols. FreeBSD lacks support for kernel oplocks and so we have to turn this feature off in the case of mixed AFP/SMB. In your case since Final Cut probably expects oplock capabilities, it fails. This means you need to _not_ share via AFP and SMB simultaneously.
Do you have any tutorials or something to explain it better?
 

sretalla

Powered by Neutrality
Moderator
Joined
Jan 1, 2016
Messages
9,700
He means:
You are currently sharing like this:
Code:
Pool     <-- you are currently sharing this with both AFP and SMB
|
--Dataset1
|
--Dataset2
  |
  --Dataset3


What he wants you to do is to share only a dataset (like Dataset1 in my example here):
Code:
Pool
|
--Dataset1    <-- Share this with SMB only, not AFP
|
--Dataset2
  |
  --Dataset3


You can find the documentation at the top of this page and there's a chapter there on how to create a dataset if that's what's not clear.
 

moiconstantino

Dabbler
Joined
Jul 12, 2020
Messages
10
He means:
You are currently sharing like this:
Code:
Pool     <-- you are currently sharing this with both AFP and SMB
|
--Dataset1
|
--Dataset2
  |
  --Dataset3


What he wants you to do is to share only a dataset (like Dataset1 in my example here):
Code:
Pool
|
--Dataset1    <-- Share this with SMB only, not AFP
|
--Dataset2
  |
  --Dataset3


You can find the documentation at the top of this page and there's a chapter there on how to create a dataset if that's what's not clear.
got it.... thank you... this is my first NAS.. everything is new for me.
 
Top