Solaris 7 System Administration Supplement

Using the Universal Disk Format File System

The Solaris 7 11/99 release provides support for Universal Disk Format (UDF) , the industry-standard format for storing information on DVD devices. This information supplements information found in System Administration Guide, Volume I.

The UDF file system is provided as dynamically loadable, 32-bit and 64-bit modules, with system administration utilities for creating, mounting, and checking the file system on both SPARC and Intel platforms. The Solaris UDF file system works with supported ATAPI and SCSI DVD drives, CD-ROM devices, and disk and diskette drives. In addition, the Solaris UDF file system is fully compliant with the UDF 1.50 specification.

The UDF file system support is provided in the following new packages:

UDF Features and Benefits

In the Solaris 7 11/99 release, the UDF file system provides the following features:

The following features are not included in this UDF file system release:

Hardware and Software Requirements

The UDF file system requires the following:

UDF Compatibility Issues

This first Solaris UDF file system implementation provides:

How to Connect a DVD-ROM Device

  1. Become superuser.

  2. Create the /reconfigure file.


    # touch /reconfigure
    
  3. Shut down the system and turn off power.


    # init 0
    
  4. Connect the DVD-ROM device.

  5. Turn on power to the system.

How to Access Files on a DVD-ROM Device

  1. Verify the DVD-ROM device is automatically mounted.


    $ ls /cdrom
    

    Note -

    If the system has both a CD-ROM and DVD-ROM device, the CD-ROM might be named /cdrom/cdrom0 and the DVD-ROM might be named /cdrom/cdrom1. If the system only has a DVD-ROM device, then try using /cdrom/cdrom0.


  2. Display content with the ls command.


    $ ls /cdrom/cdrom1
    Copyright 	filea		fileb

    Automatic display with the Common Desktop Environment (CDE) file manager is not implemented yet. All other CDE file manager functions--drag and drop for copying and ImageTool features--are available.

How to Display UDF File System Parameters

Display UDF file system parameters by using the mkfs command.

  1. Become superuser.

  2. Display UDF file system parameters.


    # mkfs -F udfs -m /dev/rdsk/device-name
    

How to Create a UDF File System

Create a UDF file system by using the mkfs command.

  1. Become superuser.

  2. Create a UDF file system.


    # mkfs -F udfs /dev/rdsk/device-name
    
  3. Verify the UDF file system is created by mounting it.

See the man page, mkfs_udfs.1m, for more information.

How to Identify the UDF File System Type

Identify the UDF file system type by using the fstyp command.

  1. Become superuser.

  2. Determine whether a file system is a UDF file system.


    # fstyp -v /rdev/dsk/device-name
    

How to Check a UDF File System

Check the integrity of a UDF file system by using the fsck command.

  1. Become superuser.

  2. Check a UDF file system.


    # fsck -F udfs /dev/rdsk/device-name
    

See the man page, fsck_udfs.1m, for more information.

How to Mount a UDF File System

Mount a UDF file system.

  1. Become superuser.

  2. Mount a UDF file system.


    # mount -F UDFS /dev/dsk/device-name /mount-point
    
  3. Verify the UDF file system is mounted.


    # ls  /mount-point
    

See the man page, mount_udfs.1m, for more information.

How to Unmount a UDF File System

Unmount a UDF file system.

  1. Become superuser.

  2. Unmount a UDF file system.


    # umount /dev/dsk/device-name 
    

How to Label a Device With a UDF File System and Volume Name

Create a file system and volume name for a UDF file system.

  1. Become superuser.

  2. Create a file system and volume name for the UDF file system.


    # labelit -F UDFS /dev/rdsk/device-name fsname volume
    

See the man page, labelit_udfs.1m, for more information.