-
Hello everyone, Thank you so much for this technique! I was in a bad situation and you help me a lot, DA is working again ! :) But with containers, Resolve only access to the directory "inside" the container. So its "mounts/resolve-home". I tried to mount a USB key and solid state. But, DA do not see files inside directory. My system can, but don't have permission when I mount in the mounts/resolve-home/XXX. Some one have a clue or a solution ? Thanks again for this :) Ps: I post the same message on the Blackmagic forum |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
This is easy to do!
It will hopefully mount properly, and you'll be able to access it from your computer. If you have problems writing to the SSD, make sure that the ownership and permissions of the drive are set properly. (Consider using
/dev/sda1 on /media/litozpl/mySSD type ext4 (rw,nosuid,nodev,relatime,errors=remount-ro,stripe=4,uhelper=udisks2) This means that it is on the sda (serial device A, aka a plugged in USB), partition 1, and it's mounted at You can also find the path information in Ubuntu by running the
RESOLVE_BIND_SOURCES=("/media/litozpl/mySSD") RESOLVE_BIND_TARGETS=("/mnt/mySSD") ./resolve.sh And you should be able to access the files from within the container (and from DaVinci Resolve) at Alternatively, if you'll be mounting this drive every time, you can create a file called RESOLVE_BIND_SOURCES=("/media/litozpl/mySSD")
RESOLVE_BIND_TARGETS=("/mnt/mySSD") Add any other RESOLVE_RC_PATH=./resolve.rc ./resolve.sh You can add additional SOURCES/TARGETS pairs if you wanted to mount more than one SSD/USB drive. See the Hope this is useful info. Enjoy! |
Beta Was this translation helpful? Give feedback.
-
Thank you so much Fat-Tire ! Every thing's fine. Now, I can start my jobs :) |
Beta Was this translation helpful? Give feedback.
This is easy to do!
It will hopefully mount properly, and you'll be able to access it from your computer. If you have problems writing to the SSD, make sure that the ownership and permissions of the drive are set properly. (Consider using
chown
orchmod
as needed)mount
command, which will show you that the SSD (in this example) is located at:/dev/sda1 on /media/litozpl/mySSD type ext4 (rw,nosuid,nodev,relatime,errors=remount-ro,stripe=4,uhelper=udisks2)
This means that it is on the sda (serial device A, aka a plugged in USB), partition 1, and it's mounted at
/media…