Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

mkudffs(1) [debian man page]

MKUDFFS(1)						    System Management Commands							MKUDFFS(1)

NAME
mkudffs - create an UDF filesystem SYNOPSIS
mkudffs [ switches ] device [ blocks-count ] DESCRIPTION
mkudffs is used to create a UDF filesystem on a device (usually a disk). device is the special file corresponding to the device (e.g /dev/hdX). blocks-count is the number of blocks on the device. If omitted, mkudffs automagically figures the file system size. OPTIONS
--help Display the usage and list of options. -b,--blocksize= block-size Specify the size of blocks in bytes. Valid block size vales are 1024, 2048 and 4096 bytes per block. If omitted, mkudffs block-size is 2048. -r,--udfrev= udf-revision Specify the udf revision to use. Valid revisions are 0x0201, 0x0200, 0x0150, and 0x0102. If omitted, mkudffs udf-revision is 0x0201. --lvid= logical-volume-ident Specify the logical volume identifier. --vid= volume-ident Specify the volume identifier. --vsid= volume-set-ident Specify the volume set identifier. --fsid= file-set-ident Specify the file set identifier. --strategy= strategy Specify the allocation strategy to use. Valid strategies are 4 and 4096. If omitted, mkudffs strategy is based on the media-type. --spartable= spartable-number Specify the number of sparing tables to write to disc. Valid numbers are 1 - 4. This option implies --media-type=cdrw. --media-type= media-type Specify the media type. Valid media types are: hd hard drive dvd DVD (Digital Versatile Disc) dvdram DVD-RAM (Digital Versatile Disc-Random Access Memory) worm WORM (Write Once Ready Many) mo MO (Magneto Optical) cdrw CD-RW (CD Read-Write) --space= space freedbitmap Freed bitmap freedtable Freed table unallocbitmap Unallocated bitmap unalloctable Unallocated table --ad= ad inicb Allocation Descriptors in ICB short Short Allocation Descriptors long Long Allocation Descriptors --noefe Don't Use Extended File Entries --u8 Use 8-bit unicode for file names --u16 Use 16-bit unicode for file names --utf8 Use UTF-8 for file names EXIT STATUS
mkudffs returns 0 if successful, non-zero if there are problems. AUTHOR
Ben Fennema <bfennema@falcon.csc.calpoly.edu> AVAILABILITY
mkudffs is part of the udftools package and is available from http://linux-udf.sourceforge.net. udftools-1.0.0b2 2002-02-09 MKUDFFS(1)

Check Out this Related Man Page

NEWFS_UDF(8)						    BSD System Manager's Manual 					      NEWFS_UDF(8)

NAME
newfs_udf -- construct a new UDF file system SYNOPSIS
newfs_udf [-cFM] [-L loglabel] [-P discid] [-p percentage] [-S setlabel] [-s size] [-t gmtoff] [-V max_udf] [-v min_udf] special DESCRIPTION
The newfs_udf utility creates an UDF file system on device special suitable for the media currently inserted. The options are as follow: -c Perform a crude surface check first to weed out disc faults on rewritable media. -F Force file system construction on non-empty recordable media. -L loglabel Set the disc logical label to the specified loglabel. -M Disable metadata partition creation when selected UDF version or media dictates this. For strict conformance and interchange, don't disable this unless its causing problems. -P discid Set the physical disc label to the specified discid. For strict conformance and interchange, don't set this manually. -p percentage Percentage of partition to be initially reserved for metadata on the Metadata partition. It defaults to 20 %. -S setlabel Set the disc set label to the specified setlabel. For strict conformance and interchange, don't set this manually. -s size Ignored for now. -t gmtoff Use the specified gmtoff as gmt time offset for recording times on the disc. -V max_udf Select max_udf as the maximum UDF version to be supported. For UDF version 2.50, use ``0x250'' or ``2.50''. -v min_udf Select min_udf as the minimum UDF version to be supported. For UDF version 2.01, use ``0x201'' or ``2.01''. NOTES
The UDF file system is defined for the entire optical medium. It can only function on the entire CD/DVD/BD so the raw partition has to be specified for read/write actions. For newfs_udf this means specifying the raw device with the raw partition, i.e. /dev/rcd0d or /dev/rcd0c. Some rewritable optical media needs to be formatted first before it can be used by UDF. This can be done using mmcformat(8). The default UDF version is version 2.01. EXAMPLES
newfs_udf -S "Encyclopedia" -L "volume 2" -P "copy-nr-1" /dev/rcd0d Create a file system, using the specified names on the device /dev/rcd0d with the default UDF version. dd if=/dev/zero of=bigdisk.2048.udf seek=9999999 count=1 vnconfig -c vnd0 bigdisk.2048.udf 2048/1/1/1 newfs_udf -L bigdisk /dev/rvnd0d Create a 4.8 GiB sparse file and configure it using vnconfig(8) to be a 2048 sector size disc and create a new UDF file system on /dev/rvnd0d. newfs_udf -L "My USB stick" /dev/rsd0d Create a new UDF file system on the inserted USB stick using its ``native'' sectorsize of 512. SEE ALSO
disktab(5), disklabel(8), mmcformat(8), newfs(8) HISTORY
The newfs_udf command first appeared in NetBSD 5.0. AUTHORS
Reinoud Zandijk <reinoud@NetBSD.org> BSD
December 23, 2009 BSD
Man Page