Questions tagged [udf]
Universal Disk Format (UDF) is a file system for storing data on optical media. It is considered to be a replacement of ISO 9660.
18 questions
3 votes
2 answers
925 views
Is there a way for a nonprivileged user to read/mount a UDF filesystem in linux without using sudo
I'm renting a node on a linux server. uname -a Linux 5.15.112-gentoo #2 SMP x86_64 AMD 64-Core Processor Authentic AMD GNU/Linux By nature as a renter I can't become superuser or even use sudo. I ...
3 votes
0 answers
736 views
Burning large files on BD. Capacity confusion
I have a couple of large files I want to burn to an M-Disc 50G BD-R DL. Files are larger than 4G so I have to use UDFv3, if I am not mistaken. (Or split, which I am not especially keen on doing.) A ...
1 vote
1 answer
2k views
How to find out UDF version of a DVD in Linux?
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) How can I find out the UDF version of a DVD?
-1 votes
2 answers
952 views
How to reliably mount UDF partition with /etc/fstab
My HDD Disk /dev/sdb: 927.5 GiB, 995875618816 bytes, 1945069568 sectors Units: sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 ...
3 votes
1 answer
2k views
How to convert .bin/.cue files into DVD-ROM UDF-ISO file in linux?
How to convert .bin/.cue files into DVD-ROM UDF-ISO file in linux ? I found that genisoimage can make CD-ROM UDF with that command: genisoimage -udf -o MY_FILE.iso ~/MY_DIR/ but I didn't find for ...
4 votes
1 answer
4k views
How to create a bootable hard disk image from an iso image?
I would like install a proprietary operating system onto my CentOS box using VirtualBox. There is a problem though, when I mount the install ISO image as a DVD, soon the installer complains of missing ...
1 vote
2 answers
602 views
Failing to format flashdrive to UDF
I'm trying to create a UDF partition on a flash drive to install grub2 (to boot ISOs from) ~$ export DSK=/dev/sdd # wipe the disk ~$ sudo dd if=/dev/zero of=${DSK} bs=512 count=2048 ~$ sudo sgdisk --...
16 votes
1 answer
24k views
Creating UDF image in Linux
It's embarrassing to imagine that there are no intelligent tools on Linux to create UDF images, similar to makeisofs, but I have yet to find any. The tool genisoimage does work for creating video disk ...