Movatterモバイル変換


[0]ホーム

URL:


Jump to content
WikipediaThe Free Encyclopedia
Search

Universal Disk Format

From Wikipedia, the free encyclopedia
Vendor-neutral file system, used in practice for DVDs and other optical discs

UDF
Developer(s)ISO/IEC,Ecma International,OSTA
Full nameUniversal Disk Format
Introduced1995; 30 years ago (1995)
Partition IDsNot assigned but suggested:[1]
0x07 (MBR)
EBD0A0A2-B9E5-4433-87C0-68B6B72699C7 (GPT)
Limits
Max volume size2TiB (with 512-byte sectors), 8 TiB (with 2 KiB sectors, like most optical discs), 16 TiB (with 4 KiB sectors)[a][2]
Max file size16EiB
Max filename length255 bytes (path 1023 bytes[b])
Allowed filename
characters
Any 16-bitUnicodeCode point excludingU+FEFF andU+FFFE
Features
Dates recordedcreation, archive, modification (mtime), attribute modification (ctime), access (atime)
Date range
24:00:00.000, 1 January 1 (UTC)  – 23:59:59.999, 31 December 9999 (UTC)[3]
Date resolutionMicrosecond
ForksYes
AttributesVarious
File system
permissions
POSIX
Transparent
compression
No
Other
Supported
operating systems
Various

Universal Disk Format (UDF) is anopen, vendor-neutralfile system forcomputer data storage for a broad range of media. In practice, it has been most widely used forDVDs and neweroptical disc formats, supplantingISO 9660. Due to its design, it is very well suited to incremental updates on bothwrite-once and re-writableoptical media. UDF was developed and maintained by theOptical Storage Technology Association (OSTA).

In engineering terms, Universal Disk Format is aprofile of the specifications known as ISO/IEC 13346 and ECMA-167.[4]

Usage

[edit]

Normally,authoring software will master a UDF file system in a batch process and write it to optical media in a single pass. But whenpacket writing to rewritable media, such asCD-RW, UDF allows files to be created, deleted and changed on-disc just as a general-purposefilesystem would on removable media likefloppy disks andflash drives. This is also possible on write-once media, such asCD-R, but in that case the space occupied by the deleted files cannot be reclaimed (and instead becomes inaccessible).

Multi-session mastering is also possible in UDF, though some implementations may be unable to read disks with multiple sessions.[c]

History

[edit]
Optical discs
Optical media types
Standards

TheOptical Storage Technology Association standardized the UDF file system to form a common file system for all optical media: both forread-only media and for re-writable optical media. When first standardized, the UDF file system aimed to replaceISO 9660, allowing support for both read-only and writable media. After the release of the first version of UDF, theDVD Consortium adopted it as the official file system forDVD-Video andDVD-Audio.[5]

UDF shares the basicvolume descriptor format with ISO 9660. A "UDF Bridge" format is defined since 1.50 so that a disc can also contain a ISO 9660 file system making references to files on the UDF part.[6]

Revisions

[edit]

Multiple revisions of UDF have been released:[5][7]

  • Revision 1.00[d] (24 October 1995). Original Release.
  • Revision 1.01[e] (3 November 1995). Added DVD Appendix and made a few minor changes.
  • Revision 1.02[8] (30 August 1996). This format is used byDVD-Video discs.
  • Revision 1.50[9] (4 February 1997). Added support for CD-R/W Packet Writing and (virtual) rewritability on CD-R/DVD-R media by introducing the Virtual Allocation Table (VAT) structure. Added sparing tables for defect management on rewritable media such as CD-RW, and DVD-RW and DVD+RW. Add UDF bridge.
  • Revision 2.00[10] (3 April 1998). Added support for Stream Files, Access Control lists, Power Calibration, real-time files (forDVD recording) and simplified directory management. VAT support was extended.
  • Revision 2.01[11] (15 March 2000) is mainly a bugfix release to UDF 2.00. Many of the UDF standard's ambiguities were resolved in version 2.01.
  • Revision 2.50[12] (30 April 2003). Added the Metadata Partition facilitating metadata clustering, easier crash recovery and optional duplication of file system information: All metadata like nodes and directory contents are written on a separate partition which can optionally be mirrored. This format is used by some versions ofBlu-rays and mostHD-DVD discs.
  • Revision 2.60[13] (1 March 2005). Added Pseudo OverWrite method for drives supporting pseudo overwrite capability on sequentially recordable media. Has read-only compatibility with UDF 2.50 implementations.: 10  (SomeBlu-rays use this format.)

UDF Revisions are internally encoded asbinary-coded decimals; Revision 2.60, for example, is represented as0x0260.[13]: 23  In addition to declaring its own revision, compatibility for each volume is defined by the minimum read and minimum write revisions, each signalling the requirements for these operations to be possible for every structure on this image. A "maximum write" revision additionally records the highest UDF support level of all the implementations that has written to this image.[13]: 34  For example, a UDF 2.01 volume that does not use Stream Files (introduced in UDF 2.00) but uses VAT (UDF 1.50) created by a UDF 2.60-capable implementation may have the revision declared as0x0201, the minimum read revision set to0x0150, the minimum write to0x0150, and the maximum write to0x0260.

Uses

[edit]

While UDF was primarily developed for optical discs, it is also able to operate on other media such as hard disk drives and flash storage.[14]

UDF was for well over a decade the only open-specification andcross-platform-supported file system without a file size limitation of 4 GiB (roughly 4.3 GB), until the open-sourcing ofexFAT in 2019.[f] "Cross-platform" here means supported by all three majorly used operating systems, Windows and Mac OS and Linux.[15]

Specifications

[edit]

The UDF standard defines threefile system variations, called "builds". These are:

  • Plain (Random Read/Write Access). This is the original format supported in all UDF revisions
  • Virtual Allocation Table, also known asVAT (Incremental Writing). Used specifically for writing to write-once media
  • Spared (Limited Random Write Access). Used specifically for writing to rewritable media

Plain build

[edit]

Introduced in the first version of the standard, this format can be used on any type of disk that allows random read/write access, such ashard disks,DVD+RW andDVD-RAM media. Metadata (up to v2.50) and file data is addressed more or less directly. In writing to such a disk in this format, any physical block on the disk may be chosen for allocation of new or updated files.

Since this is thebasic format, practically any operating system or file system driver claiming support for UDF should be able to read this format.

VAT build

[edit]

Write-once media such asDVD-R andCD-R have limitations when being written to, in that each physical block can only be written to once, and the writing must happen incrementally. Thus theplain build of UDF can only be written to CD-Rs by pre-mastering the data and then writing all data in one piece to the media, similar to the way anISO 9660 file system gets written to CD media.

To enable a CD-R to be used virtually like a hard disk, whereby the user can add and modify files on a CD-R at will (so-called "drive letter access" on Windows), OSTA added theVAT build to the UDF standard in its revision 1.5. The VAT is an additional structure on the disc that allowspacket writing; that is, remapping physical blocks when files or other data on the disc are modified or deleted. For write-once media, the entire disc is virtualized, making the write-once nature transparent for the user; the disc can be treated the same way one would treat a rewritable disc.

The write-once nature of CD-R or DVD-R media means that when a file is deleted on the disc, the file's data still remains on the disc. It does not appear in the directory any more, but it still occupies the original space where it was stored. Eventually, after using this scheme for some time, the disc will be full, as free space cannot be recovered by deleting files. Special tools can be used to access the previous state of the disc (the state before the delete occurred), making recovery possible.

Not all drives fully implement version 1.5 or higher of the UDF, and some may therefore be unable to handle VAT builds.

Spared (RW) build

[edit]

Rewriteable media such asDVD-RW andCD-RW have fewer limitations than DVD-R and CD-R media. Sectors can be rewritten at random (though in packets at a time). These media can be erased entirely at any time, making the disc blank again, ready for writing a new UDF or other file system (e.g., ISO 9660 orCD Audio) to it. However, sectors of-RW media may "wear out" after a while, meaning that their data becomes unreliable, through having been rewritten too often (typically after a few hundred rewrites, with CD-RW).

The plain and VAT builds of the UDF format can be used on rewriteable media, with some limitations. If the plain build is used on a -RW media, file-system level modification of the data must not be allowed, as this would quickly wear out often-used sectors on the disc (such as those for directory and block allocation data), which would then go unnoticed and lead to data loss. To allow modification of files on the disc, rewriteable discs can be used like -R media using theVAT build. This ensures that all blocks get written only once (successively), ensuring that there are no blocks that get rewritten more often than others. This way, a RW disc can be erased and reused many times before it should become unreliable. However, it will eventually become unreliable with no easy way of detecting it. When using theVAT build, CD-RW/DVD-RW media effectively appears as CD-R or DVD+/−R media to the computer. However, the media may be erased again at any time.

Thespared build was added in revision 1.5 to address the particularities of rewriteable media. This build adds an extraSparing Table in order to manage the defects that will eventually occur on parts of the disc that have been rewritten too many times. This table keeps track of worn-out sectors and remaps them to working ones. UDF defect management does not apply to systems that already implement another form of defect management, such asMount Rainier (MRW) for optical discs, or a disk controller for a hard drive.

The tools and drives that do not fully support revision 1.5 of UDF will ignore the sparing table, which would lead them to read the outdated worn-out sectors, leading to retrieval of corrupted data.

Anoverhead that is spread over the entire disc reserves a portion of the data storage space, limiting the usable capacity of aCD-RW with e.g. 650 MB of original capacity to around 500 MB.[16]

Character set

[edit]

The UDF specifications[5] allow only one Character SetOSTA CS0, which can store anyUnicodeCode point excluding U+FEFF and U+FFFE. Additional character sets defined in ECMA-167 are not used.[4]: 7.2 

Since Errata DCN-5157, the range of code points was expanded to all code points from Unicode 4.0 (or any newer or older version), which includesPlane 1–16 characters such asEmoji. DCN-5157 also recommendsnormalizing the strings to Normalization Form C.[17]

The OSTA CS0 character set stores a 16-bit Unicode string "compressed" into 8-bit or 16-bit units, preceded by a single-byte "compID" tag to indicate the compression type. The 8-bit storage is functionally equivalent toISO-8859-1, and the 16-bit storage isUTF-16 in big endian. 8-bit-per-character file names save space because they only require half the space per character, so they should be used if the file name contains no special characters that can not be represented with 8 bits only.[18]

The reference algorithm neither checks for forbidden code points nor interpretssurrogate pairs, so likeNTFS the string may be malformed.[5]: 2.1.2, 6.4  (No specific form of storage is specified by DCN-5157, but UTF-16BE is the only well-known method for storing all of Unicode while being mostly backward compatible withUCS-2.)[17]

Compatibility

[edit]
This section needs to beupdated. The reason given is: For many operating systems, the information is a decade old and may or may not reflect the current situation accurately. Please help update this article to reflect recent events or newly available information.(November 2020)

ManyDVD players do not support any UDF revision other than version 1.02. Discs created with a newer revision may still work in these players if the ISO 9660 bridge format is used. Even if anoperating system claims to be able to read UDF 1.50, it still may only support theplain build and not necessarily either theVAT orSpared UDF builds.

Mac OS X 10.4.5 claims to support Revision 1.50 (seeman mount_udf), yet it can only mount disks of theplain build properly and provides no virtualization support at all. It cannot mount UDF disks with VAT, as seen with the Sony Mavica issue.[19][20] Releases before 10.4.11 mount disks with Sparing Table but does not read its files correctly. Version 10.4.11 fixes this problem.[21][22]

Similarly,Windows XP Service Pack 2 (SP2) cannot read DVD-RW discs that use the UDF 2.00 sparing tables as a defect management system.[23] This problem occurs if the UDF defect management system creates a sparing table that spans more than one sector on the DVD-RW disc. Windows XP SP2 can recognize that a DVD is using UDF, but Windows Explorer displays the contents of a DVD as an empty folder. A hotfix is available for this[24] and is included in Service Pack 3.[23]

Due to the default UDF versions and options, a UDF partition formatted by Windows cannot be written under macOS. On the other hand, a partition formatted by macOS cannot be directly written by Windows, due to the requirement of aMBR partition table. In addition, Linux only supports writing to UDF 2.01. A script for Linux and macOS calledformat-udf handles these incompatibilities by using UDF 2.01 and adding a fake MBR;[25] for Windows the best solution is using the command-line toolformat /FS:UDF /R:2.01.

Tools for repairing UDF file systems and for modifying their properties have been made for some operating systems. On Windows, thechkdsk tool is able to repair UDF file systems (if not too damaged, like any file system). A similar tool for Linux,udffsck, was under development by Vojtech Vladyka as an extension offsck, and it was planned to be added to theudftools package. However, it was abandoned by its developer in 2018.[26]

A tool for toggling the write protection flag,udftune, was under development by Johannes Truschnigg in 2023 but could not be merged into the mainudftools package because its maintainer Pali Rohár has reportedly lost access to his GitHub account.[27]

Table of operating systems
  • Unless otherwise noted, read and write support means that only the plain UDF build is supported, but not the VAT and spared build.
  • Support for "read" means that a UDF formatted disk can be mounted by the system. It enables the user to read files from the UDF volume using the same interface that is used to access files on other disks connected to the computer.
  • Support for "write" means that, in addition to reading files from a mounted UDF volume, data such as files can be modified, added, or deleted.
UDF revision (read + write)Non-plain
Operating system1.021.502.0x2.502.60VATSparing tablesNote
AIX 5.2, 5.3, 6.1YesYesNoNo1.5 is default[28]
AmigaOS 4.0YesYes
BeOS/magnussoft ZETA/HaikuYesYesYesYesYes
OS/2 (includingeComStation andArcaOS)YesAdditional fee drivers on OS/2.
FreeBSD 5.0 and newerread onlyread only[29]NoNoNoNoYes
Linux kernel 2.2NoNoNoNoNoNoNo
Linux kernel 2.4YesYesYes[g]NoNoYesYes
Linux kernel 2.6.0–2.6.25YesYesYesNoNoYesYesKernel versions prior to 2.6.10 supported fewer media types.
Linux kernel 2.6.26 and newerYesYesYesread only[30]read only[13]: 10 YesYesPermission-related mounting options added in 2.6.30.[31] Auto-detection of UDF file system on hard disk is supported since version 2.6.30. Auto-detection of UDF file system on disk images was fixed in 4.11.
Mac OS 8.18.5YesNoNoNoNoNoNoSome earlier versions of Mac OS, such as7.5, 7.6, and 8.0 are also supported via third-party utilities, along with additional UDF version support for 8.1 and 8.5.[h]
Mac OS 8.6,Mac OS 9YesYesNoNoNoNoNoAdditional UDF version support via third-party utilities.[h]
Mac OS X 10.0–10.3YesYes[32]No[32]NoNoNoNo
Mac OS X 10.4YesYesYesNo[i][33]No[j]NoYes[k]Can create UDF 1.50 (plain build) volumes using thedrutil utility.
Mac OS X 10.5 and newerYesYesYesYes[34][33]read only[34][35]YesYesTo create, usenewfs_udf utility.
NetBSD 4.0read only[36]read onlyread onlyread onlyread onlyYesYesReading multi-session VAT, spared and metapartition variants
from all CD, DVD and BD variants as well as HDD and Flash media.
NetBSD 5.0YesYesYesYesYesYesYesWrite support for all builds and media including multi-session VAT.[37] Create new withnewfs_udf.
Limited writing on 2.50/2.60 (due to needing pre-allocated, fixed sized metadata partition).[38]
NetWare 5.1
NetWare 6
OpenBSD 3.8–3.9read only[39]NoNoNoNoNoNo
OpenBSD 4.0–4.6read onlyread only[40]NoNoNoYes[40]No
OpenBSD 4.7read onlyread onlyread onlyread only[41]read only[41]YesYes
Solaris 7 11/99+YesYes
Solaris 8/9/10YesYes
DOS,FreeDOS,Windows 3.11,Windows 95,Windows 95 OSR2+ and other DOS based OSNo[42]NoNoNoNoNoNoNo native support. Filesystems that have anISO9660 backward compatibility structure can be read.
Windows 98,Windows Meread only and only for CD/DVD optical disks[43][44][45][42]NoNoNoNoNoNoAdditional read/write support via third party utilities[l]
Windows 2000read only[45][46][47][48][42]read onlyNoNoNoNoNoAdditional read/write support via third party utilities[l]
Windows XP/Server 2003read only[47][48][42]read onlyread onlyNoNoYesYes[m]Additional read/write support via third party utilities[l]
Windows VistaYes[49][50][48][42]YesYesYesread only[49][50][48][42]YesYesReferred to by Microsoft asLive File System. Requires fake MBR partition on non-optical devices.
Windows 7 and newerYes[42]YesYesYesYesYesYes
Operating system1.021.502.0x2.502.60VATSparing tablesNote
UDF revision (read + write)Non-plain

See also

[edit]

Notes

[edit]
  1. ^232 ×block size
  2. ^This restriction might be lifted in newer versions.
  3. ^Multi-session mastering has always been part of the UDF specification. See [UDF 2.01/6.10.1], though earlier documents were not very clear that the anchor offsets are specified to be from the last session.
  4. ^Mentioned only in history of Revision 1.02.
  5. ^Not on the OSTA website. See§ External links. Also listed in the history of revision 1.02.
  6. ^WhileISO 9660 is able to overcome its 4 GiB file size limitation by containing multiple file entries with the same name that refer to the same file (see§ Directories and files), it is not well documented which operating systems support this feature, making its usefulness uncertain. Additionally, technical limitations make ISO 9660 unsuitable for hard disk and flash storage media anyway given that it was created only with factory-pressedCD-ROM that are never modified in mind. For example, files can not be added to an ISO 9660 file system without recreating it entirely or adding a new session (except if space was reserved for new files in advance on randomly writable media, but this hasn't been implemented so far as of 2025 given the lack of use), and the concept of multiple sessions does not exist on hard disks and flash storage given that they are randomly writable.
  7. ^Linux version 2.3.17–2.4.5 supports only UDF revision up to 2.00, Linux version 2.4.6 and newer supports also UDF revision 2.01.
  8. ^abRead and (depending on which utility is used) write support for UDF versions 1.02, 1.50, 2.00, and 2.01 (support for 1.50 is not natively present in 8.1 or 8.5, and 2.00 onwards was not supported by the classic Mac OS at all) on optical disks available with third party utilities such asAdaptec's UDF Volume Access or Software Architects' DVD-RAM Tune-Up utilities.
  9. ^Support via third party utilityToast 9+HD Plugin
  10. ^Support via third party utility Toast 9+
  11. ^Since version 10.4.11
  12. ^abcRead and write support for other UDF versions on optical disks available with third party utilities such asDLA,InCD or Toshiba/Panasonic/Matsushita UDF 2.5 driver. Read and write support for removable disks and hard disks available with third party utilities such as SAI's WriteUDF!.
  13. ^Service Pack 3 required

References

[edit]
  1. ^"Serverfault answer for: What is the partition id / filesystem type for UDF?".
  2. ^"Wenguang's Introduction to Universal Disk Format (UDF)".Google Sites. 1 February 2009. Section 5.1 Highlight of the UDF Format. Retrieved16 July 2014.
  3. ^ECMA 167 third edition, June 1997
  4. ^ab"ECMA-167 – Volume and File Structure for Write-Once and Rewritable Media using Non-Sequential Recording for Information Interchange"(PDF).
  5. ^abcd"OSTA – UDF Specifications".
  6. ^"ECMA Technical Report TR/71: DVD Read-Only Disk File System Specifications"(PDF). February 1998.
  7. ^"Wenguang's Introduction to Universal Disk Format (UDF)".
  8. ^"OSTA Universal Disk Format Specification Revision 1.02"(PDF).
  9. ^"OSTA Universal Disk Format Specification Revision 1.50"(PDF).
  10. ^"OSTA Universal Disk Format Specification Revision 2.00"(PDF).
  11. ^"OSTA Universal Disk Format Specification Revision 2.01"(PDF).
  12. ^"OSTA Universal Disk Format Specification Revision 2.50"(PDF).
  13. ^abcd"OSTA Universal Disk Format Specification Revision 2.60"(PDF).
  14. ^"mount(8) – Linux manual page". Retrieved10 March 2025.UDF is the "Universal Disk Format" filesystem defined by OSTA, the Optical Storage Technology Association, and is often used for DVD-ROM, frequently in the form of a hybrid UDF/ISO-9660 filesystem. It is, however, perfectly usable by itself on disk drives, flash drives and other block devices.
  15. ^In August 2019, Microsoft decided to lift some legal restrictions to exFAT and release its official specifications:John Gossman (28 August 2019)."exFAT in the Linux kernel? Yes!".Microsoft Open Source Blog. Retrieved10 March 2025.;Anthony Spadafora (29 August 2019)."Microsoft is bringing its exFAT patents to Linux and open source".Tech Radar. Retrieved10 March 2025.
  16. ^Thompson, Robert Bruce; Thompson, Barbara Fritchman (24 July 2003)."PC Hardware in a Nutshell: A Desktop Quick Reference" by Robert Bruce Thompson, Barbara Fritchman Thompson (2003) −– Chapter 11 (starting page 340): CD writers. "O'Reilly Media, Inc.".ISBN 9780596552343.
  17. ^ab"UDF 2.60 approved errata"(PDF). Retrieved22 April 2018.
  18. ^UDF 1.02 specification: 2.1.1 Character Sets (also present in later versions)
  19. ^"Sony Mavica UDF Compatibility Issue".Apple. 19 February 2012. Archived fromthe original on 26 April 2012. Retrieved16 July 2014.
  20. ^"Mac OS X UDF Compatibility Issues".Free(code). 11 July 2012. Retrieved16 July 2014.
  21. ^"Intel Update".Apple. 14 November 2007. Archived fromthe original on 28 March 2010. Retrieved16 July 2014.
  22. ^"PowerPC Update".Apple. 14 November 2007. Archived fromthe original on 31 May 2010. Retrieved16 July 2014.
  23. ^ab"CD-ROM Drive May Not Be Able to Read a UDF-Formatted Disc in Windows XP". Microsoft Support.Archived from the original on 15 December 2014.
  24. ^"Windows XP UDF hotfix". microsoft.com.
  25. ^"JElchison/format-udf: Bash script to format a block device (hard drive or Flash drive) in UDF".GitHub. 27 June 2020.The output is a drive that can be used for reading/writing across multiple operating system families: Windows, macOS, and Linux. This script should be capable of running in macOS or in Linux.
  26. ^udffsck 1.00-beta by argorain · Pull Request #7 · pali/udftools · GitHub
  27. ^udftune: Add initial implementation by jtru · Pull Request #63 · pali/udftools · GitHub (comment 1889687420 on January 12, 2024)
  28. ^"Welcome to the AIX 6.1 Information Center". IBM. Retrieved25 September 2010.
  29. ^"FreeBSD 5.0-RELEASE Release Notes".
  30. ^"Linux 3.13: fs/udf/udf_sb.h". 24 September 2013. Retrieved29 January 2014.
  31. ^"Linux 2.6.30 Changelog". 12 June 2009. Retrieved13 September 2015.
  32. ^ab"mount_udf manpage for Mac OS X 10.3".UDF 1.50 is supported. UDF 2.0 and later is not.
  33. ^ab"Disc Recording Release Notes for OS X v10.5".This release note describes changes to the Disc Recording frameworks from OS X version 10.4. The Disc Recording content creation engine now supports writing UDF 2.0 discs in addition to UDF 1.02 and 1.5.
  34. ^ab"mount_udf manpage for Mac OS X 10.5".Reading of all UDF revisions (1.02–2.60) on both block device (e.g. hard drives and USB drives) and most optical media is supported. Writing to block devices, DVD-RW and DVD+RW is supported with the following exceptions: (1) Cannot write Finder Info, Resource Fork, or other extended attributes in UDF volumes of revision 1.02 and 1.50; (2) Cannot write to mirrored metadata partition.
  35. ^"Mac Technology Overview – Kernel and Device Drivers Layer".OS X supports reading UDF revisions 1.02 through 2.60 on both block devices and most optical media, and it supports writing to block devices and to DVD-RW and DVD+RW media using UDF 2.00 through 2.50 (except for mirrored metadata partitions in 2.50).
  36. ^"Announcing NetBSD 4.0".Added UDF support for optical media and block devices, see mount_udf(8). Read-only for now.
  37. ^"NetBsd 5 release notes". NetBSD.
  38. ^"NetBSD System Manager's Manual". Retrieved25 September 2010.
  39. ^"OpenBSD 3.8".
  40. ^ab"OpenBSD 4.0".
  41. ^ab"The OpenBSD 4.7 Release". OpenBSD. Retrieved25 September 2010.
  42. ^abcdefg"[MS-FSCC]: File System Control Codes: 6 Appendix B: Product Behavior". 27 April 2022. Windows UDF File System Support table
  43. ^Microsoft Corporation (January 1998). "Chapter 10 – Disks and File Systems".Microsoft Windows 98 Resource Kit. Microsoft Press. p. 442.ISBN 978-1-57231-644-7. Retrieved9 September 2017.Windows 98 has a new read-only Universal Disk Format (UDF) system, which supports reading media formatted according to UDF specification 1.02.
  44. ^Microsoft Corporation (January 1998). "Chapter 28 – Windows 98 Architecture".Microsoft Windows 98 Resource Kit. Microsoft Press. p. 1316.ISBN 978-1-57231-644-7. Retrieved9 September 2017.The 32-bit, protected-mode UDF file system in Windows 98 is implemented according to Revision 1.02 of Universal Disk Format Specification by Optical Storage Technology Association (OSTA). It provides read-only access to UDF-formatted media, such as DVD discs. The UDF file system uses VCACHE and is dynamic, requiring no configuration or static allocation on the part of the user.
  45. ^abMatt Pietrek (November 1997)."A Programmer's Perspective on New System DLL Features in Windows NT 5.0, Part I". Microsoft Systems Journal. Retrieved9 September 2017.Windows NT 5.0 also adds UDF (Universal Disk Format). ... The UDF implementations shipping in both Windows 98 (UDF 1.02) and Windows NT 5.0 (UDF 1.50) are read-only.
  46. ^Russinovich, M. E.; Solomon, D. A. (2000)."Chapter 12 – File Systems".Inside Microsoft Windows 2000 (Third ed.). Redmond, Washington: Microsoft Press.ISBN 978-0-7356-1021-7.The Windows 2000 UDF file system implementation is ISO 13346-compliant and supports UDF versions 1.02 and 1.5. ... the Windows 2000 UDF driver (Udfs.sys) provides read-only support.
  47. ^abRussinovich, M. E.; Solomon, D. A. (2005). "Chapter 12 – File Systems".Microsoft Windows Internals, Fourth Edition: Microsoft Windows Server 2003, Windows XP, and Windows 2000 (Fourth ed.). Redmond, Washington: Microsoft Press. p. 691.ISBN 0-7356-1917-4.The UDF driver supports UDF versions 1.02, version 1.5 on Windows 2000, and versions 2.0 and 2.01 on Windows XP and Windows Server 2003. ... the Windows UDF driver (Udfs.sys) provides read-only support. Windows does not implement support for other UDF features, including named streams, access control lists, or extended attributes.
  48. ^abcd"2.3 About the UDF File System"(doc). Local File Systems for Windows (Report). Microsoft Corporation. 5 May 2004. pp. 6–8. WinHEC 2004 Version.
  49. ^abRussinovich, M. E.; Solomon, D. A.; Ionescu, A. (2009). "Chapter 12 – File Systems".Windows Internals, 5th Edition: Windows Vista and Windows Server 2008 (5th ed.). Redmond, Washington: Microsoft Press. p. 981.ISBN 978-0-7356-3796-2.The UDF driver supports UDF versions up to 2.60. The Windows UDF driver (Udfs.sys) provides read-write support ... when using UDF 2.50 and read-only support when using UDF 2.60. However, Windows does not implement support for certain UDF features such as named streams and access control lists.
  50. ^abRussinovich, M. E.; Solomon, D. A.; Ionescu, A. (2012). "Chapter 12 – File Systems".Windows Internals, Part 2, 6th Edition: Windows 7 and Windows Server 2008 R2 (6th ed.). Redmond, Washington: Microsoft Press. p. 393.ISBN 978-0-7356-6587-3.The UDF driver supports UDF versions up to 2.60. The Windows UDF driver (Udfs.sys) provides read-write support ... when using UDF 2.50 and read-only support when using UDF 2.60. However, Windows does not implement support for certain UDF features such as named streams and access control lists.

Further reading

[edit]
  • ISO/IEC 13346 standard, also known asECMA-167.

External links

[edit]
Disk and
non-rotating
Optical disc
Flash memory andSSD
host-sidewear leveling
Distributed parallel
NAS
Specialized
Pseudo
Encrypted
Types
Features
Access control
Interfaces
Lists
Layouts
Standards ofEcma International
Application interfaces
File systems (tape)
File systems (disk)
Graphics
Programming languages
Radio link interfaces
Other
List of Ecma standards (1961 – present)
IEC
ISO/IEC
Related
Retrieved from "https://en.wikipedia.org/w/index.php?title=Universal_Disk_Format&oldid=1283643510"
Categories:
Hidden categories:

[8]ページ先頭

©2009-2025 Movatter.jp