Hi,
Very new to this, so please bare with me. First of all thank you for such a great program! I have just one question really, maybe two. I completed a feature documentary which is being screened this month. The request from the cinema is a DCI compliant, 24 fps DCP delivered on a Linux compatible drive. All good apart from the Linux part. I work on Windows, so do I have to create a Linux environment within a partition on the DCP drive? Will a DCP created within Windows work if it is copied to a Linux partition?
Thanks in advance.
D.
Linux Server
-
- Posts: 4
- Joined: Wed Nov 19, 2014 7:53 pm
Re: Linux Server
Created an EXT2 partition, using Diskinternals Linux reader to copy DCP into the partition. Anyone have experience of this? Could it work?
Thanks
D.
Thanks
D.
-
- Site Admin
- Posts: 2548
- Joined: Thu Nov 14, 2013 2:53 pm
Re: Linux Server
HI there,
That should work, but I haven't tried it myself... someone else might have.
That should work, but I haven't tried it myself... someone else might have.
-
- Posts: 4
- Joined: Wed Nov 19, 2014 7:53 pm
Re: Linux Server
Thanks, it didn't work, they were unable to ingest the DCP. So I'm reformatting the drive and trying again using the info from this link - http://isdcf.com/papers/ISDCF-Doc3-File ... ucture.pdfcarl wrote:HI there,
That should work, but I haven't tried it myself... someone else might have.
which is quite helpful.
Cheers.
-
- Posts: 9
- Joined: Sat Feb 01, 2014 3:05 pm
Re: Linux Server
I use a usb key with ubuntu installed.
procedure is (from a command line shell):
Run gparted
sudo gparted
In Gparted
Click on “Make a dos partition table”
Use add partition and format the drive as ext 2 or ext3.
Note the name of the partition (like sda1) and format it again in terminal with -I 128 inode The -j is for journal (ext3).
Mount the drive with (in Ubuntu may be the partition will be mounted automatically)
Make a directory for the DCP
Then use so everyone can write to it
Then find the dcp directory and copy it to the dcp directory.
Then make the dcp directory read only and executable.
procedure is (from a command line shell):
Run gparted
sudo gparted
In Gparted
Click on “Make a dos partition table”
Use add partition and format the drive as ext 2 or ext3.
Note the name of the partition (like sda1) and format it again in terminal with -I 128 inode The -j is for journal (ext3).
Code: Select all
sudo mkfs.ext2 -j -I 128 /dev/sda1
Code: Select all
sudo mount /dev/sda1 /mnt/disk
Make a directory for the DCP
Code: Select all
sudo mkdir /mnt/disk/dcp
Code: Select all
sudo chmod -R 777 /mnt/disk/dcp
Then find the dcp directory and copy it to the dcp directory.
Then make the dcp directory read only and executable.
Code: Select all
chmod -R 755 /mnt/disk/dcp
-
- Posts: 4
- Joined: Wed Nov 19, 2014 7:53 pm
Re: Linux Server
Hey,
Thanks, that's very useful!
I managed to get it to work by formatting the entire drive as EXT3, and simply copying the DCP folder contents (without the folder itself), straight onto the drive, no need for Ubuntu etc.
Cheers,
D.
Thanks, that's very useful!
I managed to get it to work by formatting the entire drive as EXT3, and simply copying the DCP folder contents (without the folder itself), straight onto the drive, no need for Ubuntu etc.
Cheers,
D.
-
- Posts: 9
- Joined: Sat Feb 01, 2014 3:05 pm
Re: Linux Server
The problem formatting drive without ubuntu is the Inode size. I not found tools for formatting drive in ext3 whit inode at 128 without Ubuntu or other linux distribution.
It's very important that Inode will be 128
It's very important that Inode will be 128
-
- Posts: 2804
- Joined: Tue Apr 15, 2014 9:11 pm
- Location: Germany
Re: Linux Server
It is only important for certain (older) servers to have an inode size of 128. But in general, DCP distribution aims for single-inventory and universal compatibility, hence the ISDCF proposed parameters should and will work with all servers. A lot of servers work with GUID/GPT, 3TB, NTFS, HFS+, exFat, etc., but if you're unlucky, the one you are sending your drive to is just the one that can't.
So:
MBR partition scheme (this needs special attention on all current general computer OS's, as they now default to GUID/GPT!!!)
EXT2 or EXT3 (no benefit in using EXT3), inode size 128
No discs larger than 2TB
- Carsten
So:
MBR partition scheme (this needs special attention on all current general computer OS's, as they now default to GUID/GPT!!!)
EXT2 or EXT3 (no benefit in using EXT3), inode size 128
No discs larger than 2TB
- Carsten