sudo cdrwtool -i -d /dev/sr4
and dvd+rw-mediainfo /dev/sr4
do not indicate the UDF version.
(1.02, 1.50, 2.00, 2.01, 2.50, 2.60)
1 Answer
You can use udfinfo tool which is available from udftools project since version 2.0.
$ udfinfo /dev/sr4
It prints lot of information about UDF filesystem, including two UDF revision numbers:
udfrev=2.01
udfwriterev=2.01
First one is minimal UDF revision needed to read UDF filesystem and second one is minimal UDF revision to write/modify UDF filesystem.
Another option is to use blkid tool from util-linux project. But you need at least version 2.31.
$ blkid -p -s VERSION -o value /dev/sr4
It prints minimal UDF revision needed to read UDF filesystem:
2.01
-
Oh, you are this experienced PaliUDF editor from Wikipedia? Nice to hear from you! It is an honour! Feb 4, 2019 at 11:03
-
1I'm author of udfinfo tool. So if you find any problem with it please report it on project page.– PaliFeb 4, 2019 at 17:00
udisksctl info --block-device /dev/sr0 | grep Id
sr0
and you hadsr4
... so... make sure the device name matches whatever you are testing.