For the first time since upgrading Ubuntu from 20.04 LTS to 22.04 LTS, I got this error message when formatting a drive to put a DCP on. The actual command I used was:
It then proceeded to format the volume, and so I presume that it actually did so with 128-byte inodes, that this message was purely informational, and that I have a drive that is partitioned and formatted per the ISDCF specs for a DCP distribution drive. But this leads me to wonder if we could have problems further down the line, especially if future versions of mke2fs that appear before 2038 won't allow you to format a drive that way.
The version of mke2fs is 1.46.5.
I should try formatting a drive without the -I 128 tag and seeing if the common server models will read it anyways; if they won't, either we will have to maintain older versions of the formatting utility, or this could be a problem going forward.
Code:
mke2fs -t ext3 -I 128 -L "DCP" /dev/sdd
The version of mke2fs is 1.46.5.
I should try formatting a drive without the -I 128 tag and seeing if the common server models will read it anyways; if they won't, either we will have to maintain older versions of the formatting utility, or this could be a problem going forward.
Comment