System Administration Guide: Basic Administration

Chapter 19 Formatting Removable Media (Tasks)

This chapter describes how to format removable media from the command line in the Solaris environment.

For information on the procedures associated with formatting removable media, see Formatting Removable Media (Task Map).

For background information on removable media, see Chapter 17, Managing Removable Media (Overview).

Formatting Removable Media (Task Map)

Task 

Description 

For Instructions 

1. Load unformatted media 

Insert the media into the drive and enter the volcheck command.

How to Load a Removable Media

2. Format the media 

Format removable media. 

How to Format Removable Media (rmformat)

3. (Optional.) Add a UFS file system 

Add a UFS file system to use the diskette for transferring files. 

How to Format Removable Media for Adding a File System

4. (Optional) Check the media 

Verify the integrity of the file system on the media. 

How to Check a File System on Removable Media

5. (Optional) Repair bad blocks on the media 

Repair any bad blocks on the media, if necessary. 

How to Repair Bad Blocks on Removable Media

6. (Optional) Apply Read or Write and Password Protection 

Apply read or write protection or password protection on the media, if necessary. 

How to Enable or Disable Write Protection on Removable Media

Formatting Removable Media Overview

The rmformat command is a non-superuser utility that you can use to format and protect rewritable removable media. The rmformat command has three formatting options:

Formatting Removable Media Guidelines

Keep the following in mind when formatting removable media:

Removable Media Hardware Considerations

This section describes removable media hardware considerations.

Diskette Hardware Considerations

Keep the following in mind when formatting diskettes:

A Solaris system can format diskettes for use on both Solaris and DOS systems. However, the hardware platform imposes some limitations. These limitations are summarized in the following table.

Platform Type 

Diskettes Format Type 

SPARC based systems 

UFS 

 

MS-DOS or NEC-DOS (PCFS) 

 

UDFS 

IA based systems 

UFS 

 

MS-DOS or NEC-DOS (PCFS) 

 

UDFS 

Diskettes formatted for UFS are restricted to the hardware platform on which they were formatted. In other words, a UFS diskette formatted on a SPARC based platform cannot be used for UFS on an IA platform, nor can a diskette formatted on an IA platform be used on a SPARC based platform. This is because the SPARC and IA UFS formats are different. SPARC uses little-endian bit coding, IA uses big-endian.

A complete format for SunOS file systems consists of the basic “bit” formatting plus the structure to support a SunOS file system. A complete format for a DOS file system consists of the basic “bit” formatting plus the structure to support either an MS-DOS or an NEC-DOS file system. The procedures required to prepare a diskette for each type of file system are different. Therefore, before you format a diskette, consider which procedure to follow. For more information, see Formatting Removable Media (Task Map).

On a Solaris system (either SPARC or IA), you can format diskettes with the following densities.

Diskette Size 

Diskette Density 

Capacity 

3.5” 

High Density (HD) 

1.44 Mbytes 

3.5” 

Double Density (DD) 

720 Kbytes 

By default, the diskette drive formats a diskette to a like density. This default means that a 1.44 Mbyte drive attempts to format a diskette for 1.44 Mbytes, whether the diskette is in fact a 1.44 Mbyte diskette or not, unless you instruct it otherwise. In other words, a diskette can be formatted to its capacity or lower, and a drive can format to its capacity or lower.

PCMCIA Memory Card Hardware Considerations

A Solaris platform can format PCMCIA memory cards for use on both Solaris and DOS platforms. However, the hardware platform imposes some limitations. These limitations are summarized in the following table.

Platform Type 

PCMCIA Memory Cards Format Type 

SPARC based systems 

UFS 

 

MS-DOS or NEC-DOS (PCFS) 

IA based systems 

UFS 

 

MS-DOS or NEC-DOS (PCFS) 

PCMCIA memory cards formatted for UFS are restricted to the hardware platform on which they were formatted. In other words, a UFS PCMCIA memory card formatted on a SPARC platform cannot be used for UFS on an IA platform. Likewise, PCMCIA memory cards formatted on an IA platform cannot be used on a SPARC platform. This is because the SPARC and IA UFS formats are different.

A complete format for UFS file systems consists of the basic “bit” formatting plus the structure to support a UFS file system. A complete format for a DOS file system consists of the basic “bit” formatting plus the structure to support either an MS-DOS or an NEC-DOS file system. The procedures required to prepare a PCMCIA memory card for each type of file system are different. Therefore, before you format a PCMCIA memory card, consider which file system you are using.

How to Load a Removable Media

  1. Insert the media.

  2. Make sure the media is formatted.

    If you aren't sure, insert it and check the status messages in the console, as described in Step 3. If you need to format the diskette, go to How to Format Removable Media (rmformat).

  3. Notify volume management.


    $ volcheck -v
    media was found

    Two status messages are possible:

    media was found

    Volume management detected the media and will attempt to mount it in the directory described in Table 18–1.

     

    If the media is formatted properly, no error messages appear in the console. 

     

    If the media is not formatted, the “media was found” message is still displayed, but the error messages similar to the following appear in the Console:

     

    fd0: unformatted diskette or no diskette in the drive

    fd0: read failed (40 1 0)

    fd0: bad format

    You must format the media before volume management can mount it. For more information, see Chapter 19, Formatting Removable Media (Tasks).

    no media was found

     Volume management did not detect the media. Make sure the media is inserted properly and run volcheck again. If unsuccessful, check the media, it could be damaged. You can also try to mount the media manually.

  4. Verify that the media was mounted by listing its contents.

    For example, do the following for a diskette:


    $ ls /floppy
    floppy0 myfiles

    As described earlier, floppy0 is a symbolic link to the actual name of the diskette, In this case, myfiles. If the diskette has no name but is formatted correctly, the system will refer to it as unnamed_floppy.

    If nothing appears under the /floppy directory, the diskette was either not mounted or is not formatted properly. To find out, run the mount command and look for the line that begins with /floppy (usually at the end of the listing):

    /floppy/name on /vol/dev/diskette0/name

    If the line does not appear, the diskette was not mounted. Check the console window for error messages.

How to Format Removable Media (rmformat)

You can use the rmformat command to format the media. By default, this command creates two partitions on the media: partition 0 and partition 2 (the whole media).

  1. Verify that the volume manager is running, which means you can use the shorter nickname for the device name.


    $ ps -ef | grep vold
    root   212     1  0   Nov 03 ?        0:01 /usr/sbin/vold

    For information on starting vold, see How to Restart Volume Management (vold). For information on identifying media device names, see Using Removable Media Names.

  2. Format the removable media.


    $ rmformat -F [ quick | long | force ] device-name
    

    See the previous section for more information on rmformat formatting options.

    If the rmformat output indicates bad blocks, see How to Repair Bad Blocks on Removable Media for information on repairing bad blocks.

  3. (Optional) Label the removable media with an 8-character label to be used in the Solaris environment.


    $ rmformat -b label device-name
    

    For information on creating a DOS label, see mkfs_pcfs(1M).

Examples—Formatting Removable Media

This example shows how to format a diskette.


$ rmformat -F quick /dev/rdiskette
Formatting will erase all the data on disk.
Do you want to continue? (y/n) y
.........................................................................

This example shows how to format a Zip drive.


$ rmformat -F quick /vol/dev/aliases/zip0
Formatting will erase all the data on disk.
Do you want to continue? (y/n) y
.........................................................................

How to Format Removable Media for Adding a File System

  1. Format the media.


    $ rmformat -F quick device-name
    
  2. (Optional) Create an alternate Solaris partition table.


    $ rmformat -s slice-file device-name
    

    A sample slice file looks like the following:


    slices: 0 = 0, 30MB, "wm", "home" : 
                  1 = 30MB, 51MB : 
                  2 = 0, 94MB, "wm", "backup" : 
                  6 = 81MB, 13MB

  3. Become superuser.

  4. Determine the appropriate file system type and select one of the following:

    1. Create a UFS file system.


      # newfs device-name
      
    2. Create a UDFS file system.


      # mkfs -F udfs device-name
      

Example—Formatting a Diskette for a UFS File System

The following example shows how to format a diskette and create a UFS file system on the diskette.


$ rmformat -F quick /vol/dev/aliases/floppy0
Formatting will erase all the data on disk.
Do you want to continue? (y/n)y
$ su
# /usr/sbin/newfs /vol/dev/aliases/floppy0
newfs: construct a new file system /dev/rdiskette: (y/n)? y
/dev/rdiskette: 2880 sectors in 80 cylinders of 2 tracks, 18 sectors
        1.4MB in 5 cyl groups (16 c/g, 0.28MB/g, 128 i/g)
super-block backups (for fsck -F ufs -o b=#) at:
 32, 640, 1184, 1792, 2336,
# 

Example—Formatting a PCMCIA Memory Card for a UFS File System

The following example shows how to format a PCMCIA memory card and create a UFS file system on the card.


$ rmformat -F quick /vol/dev/aliases/pcmem0
$ su
# /usr/sbin/newfs -v /vol/dev/aliases/pcmem0
newfs: construct a new file system /vol/dev/aliases/pcmem0:(y/n)? y
.
.
.
#

Examples—Formatting Removable Media for a PCFS File System

This example shows how to create an alternate fdisk partition.


$ rmformat -F quick /dev/rdsk/c0t4d0s2:c
Formatting will erase all the data on disk.
Do you want to continue? (y/n)y
$ su
# fdisk /dev/rdsk/c0t4d0s2:c 
# mkfs -F pcfs /dev/rdsk/c0t4d0s2:c
Construct a new FAT file system on /dev/rdsk/c0t4d0s2:c: (y/n)? y
#

This example shows how to create a PCFS file system without an fdisk partition.


$ rmformat -F quick /dev/rdiskette
Formatting will erase all the data on disk.
Do you want to continue? (y/n)y
$ su
# mkfs -F pcfs -o nofdisk,size=2 /dev/rdiskette
Construct a new FAT file system on /dev/rdiskette: (y/n)? y
#

How to Check a File System on Removable Media

  1. Become superuser.

  2. Identify the name service and select one of the following:

    1. Check a UFS file system.


      # fsck -F ufs device-name
      
    2. Check a UDFS file system.


      # fsck -F udfs device-name
      
    3. Check a PCFS file system.


      # fsck -F pcfs device-name
      

Example—Checking a PCFS File System on Removable Media

The following example shows how check the consistency of a PCFS file system on media.


# fsck -F pcfs /dev/rdsk/c0t4d0s2
** /dev/rdsk/c0t4d0s2
** Scanning file system meta-data
** Correcting any meta-data discrepancies
1457664 bytes.
0 bytes in bad sectors.
0 bytes in 0 directories.
0 bytes in 0 files.
1457664 bytes free.
512 bytes per allocation unit.
2847 total allocation units.
2847 available allocation units.
# 

How to Repair Bad Blocks on Removable Media

You can only use the rmformat command to verify, analyze, and repair bad sectors that are found during verification if the drive supports bad block management. Most diskettes and PCMCIA memory cards do not support bad block management.

If the drive supports bad block management, a best effort is made to rectify the bad block. If the bad block cannot be rectified despite the best effort mechanism, a message indicates a failure to repair.

  1. Repair bad blocks on removable media.


    $ rmformat -c block-numbers device-name
    

    Supply the block number in decimal, octal, or hexadecimal format from a previous rmformat session.

  2. Verify the media.


    $ rmformat -V read device-name
    

Applying Read or Write and Password Protection to Removable Media

You can apply read protection or write protection and set a password on Iomega media such as Zip drives and Jaz drives.

How to Enable or Disable Write Protection on Removable Media

  1. Determine whether you want to enable or disable write protection and select one of the following:

    1. Enable write protection.


      $ rmformat -w enable device-name
      
    2. Disable write protection.


      $ rmformat -w disable device-name
      
  2. Verify whether the media's write protection is enabled or disabled.


    $ rmformat -p device-name
    

How to Enable or Disable Read or Write Protection and a Password on Iomega Media

You can apply a password with a maximum of 32 characters for Iomega media that support this feature. You cannot set read protection or write protection without a password on Iomega media. In this situation, you are prompted to provide a password.

You receive a warning message if you attempt to apply a password on media that does not support this feature.

  1. Determine whether you want to enable or disable read protection or write protection and a password.

    1. Enable read protection or write protection.


      $ rmformat -W enable device-name
      Please enter password (32 chars maximum): xxx
      Please reenter password:

      $ rmformat -R enable device-name
      Please enter password (32 chars maximum): xxx
      Please reenter password:
    2. Disable read protection or write protection and remove the password.


      $ rmformat -W disable device-name
      Please enter password (32 chars maximum): xxx
      

      $ rmformat -R disable device-name
      Please enter password (32 chars maximum): xxx
      
  2. Verify whether the media's read protection or write protection is enabled or disabled.


    $ rmformat -p device-name
    

Examples—Enabling or Disabling Read or Write Protection

This example shows how to enable write protection and set a password on a Zip drive.


$ rmformat -W enable /vol/dev/aliases/zip0
Please enter password (32 chars maximum): xxx
Please reenter password: xxx

This example shows how to disable write protection and remove the password on a Zip drive.


$ rmformat -W disable /vol/dev/aliases/zip0
Please enter password (32 chars maximum): xxx

This example shows how to enable read protection and set a password on a Zip drive.


$ rmformat -R enable /vol/dev/aliases/zip0
Please enter password (32 chars maximum): xxx
Please reenter password: xxx

This example shows to disable read protection and remove the password on a Zip drive.


$ rmformat -R disable /vol/dev/aliases/zip0
Please enter password (32 chars maximum): xxx