Contained WithinFind More DocumentationFeatured Support Resources | Descargar este libro en PDF (3134 KB)
Chapter 17 Managing File Systems (Overview)Managing file systems is one of your most important system administration tasks. This is a list of the overview information in this chapter. What's New in File Systems?This section describes new file system features in the Solaris Solaris Express release. File System Monitoring Tool (fsstat)Solaris Express 4/06: A new file system monitoring tool, fsstat, is available to report file system operations. You can use several options to report activity, such as by mount point or by file system type. For example, the following fsstat command displays all ZFS file system operations since the ZFS module was loaded:
For example, the following fsstat command displays all file system operations since the /export/ws file system mounted.
The default form is to report statistical information in easy to understand values, such as Gbytes, Kbytes, and Mbytes. For more information, see fsstat(1M). Solaris ZFS File SystemSolaris Express 12/05: ZFS, a revolutionary new file system, provides simple administration, transactional semantics, end-to-end data integrity, and immense scalability. In addition, ZFS provides the following administration features:
For more information about using ZFS, see Solaris ZFS Administration Guide. Enhancements to UFS File System Utilities (fsck, mkfs, and newfs)Solaris Express 12/05: The file system check utility, fsck, has been enhanced to include features from the FreeBSD 4.9 version of the fsck program, as well as other enhancements. The fsck utility in this Solaris release includes the following improvements:
In addition, the newfs and mkfs commands have been updated to include new options for displaying a file system's superblock information in text or dumping the superblock information in binary format.
The fsck utility uses this superblock information to search for backup superblocks. The following sections describe specific fsck enhancements and their corresponding error messages. For step-by-step instructions on using the fsck utility to repair a damaged superblock, see How to Restore a Bad Superblock ( Solaris Express Release). Automatic Search for Backup SuperblocksThe following fsck error message examples illustrate the automatic backup superblock discovery feature. If a file system has a damaged superblock and it was created with newfs or mkfs customized parameters, such as ntrack or nsect, using fsck's automatically discovered superblock for the repair process could damage your file system. In the case of a file system that was created with customized parameters and it has a bad superblock, fsck provides the prompt to cancel the fsck session:
The following example illustrates what would happen if you specified fsck's -y option in a damaged superblock scenario. You are automatically dropped out of the fsck session. A message is displayed to rerun it with the alternate superblock.
The following fsck error message scenario illustrates the new prompts for the backup superblock, but the fsck run is not canceled, in this example. Canceling the fsck session would be an appropriate response if this file system was created with customized parameters or if there is some other concern about running fsck on this file system. The various superblock error conditions are provided in italics as follows:
fsck Reports When it Needs to be RerunBetter reporting by fsck about when it needs to be rerun should alleviate the time and necessity of running it multiple times, which can be particularly time consuming on large file systems. The following new messages prompt you to rerun the fsck utility at the end of an error scenario:
Or:
These new prompts resolve the previous difficulty in determining whether fsck should be rerun or not. Unless you are prompted to rerun fsck as in the above messages, there is no need to run fsck, even after you see the following message:
However, it doesn't harm the file system to rerun fsck after this message. This message is just informational about fsck's corrective actions. New fsck Messages Regarding Extended AttributesNew fsck messages are included that report on and repair files with extended attributes. For example:
Better Handling of Duplicate Blocks or FragmentsThe fsck error messages now reports information about blocks, fragments, or a LFNs, which are the logical fragment numbers from the start of the file. For example, you might see output similar to the following:
fsck processes objects as fragments, but in previous Solaris releases, only reported object information as blocks. It now correctly reports as fragments. If fsck finds error conditions that involve duplicate blocks or fragments, fsck offers to display the uncleared files at end of the fsck output. For example, you might see output similar to the following:
Then, you can use the find -i inode-number command to identify the name of inode 38, in this example. Where to Find File System Management TasksUse these references to find step-by-step instructions for managing file systems.
Overview of File SystemsA file system is a structure of directories that is used to organize and store files. The term file system is used to describe the following:
Usually, you know from the context which meaning is intended. The Solaris OS uses the virtual file system (VFS) architecture, which provides a standard interface for different file system types. The VFS architecture enables the kernel to handle basic operations, such as reading, writing, and listing files. The VFS architecture also makes it easier to add new file systems. Types of File SystemsThe Solaris OS supports three types of file systems:
To identify the file system type, see Determining a File System's Type. Disk-Based File SystemsDisk-based file systems are stored on physical media such as hard disks, CD-ROMs, and diskettes. Disk-based file systems can be written in different formats. The available formats are described in the following table.
Each type of disk-based file system is customarily associated with a particular media device, as follows:
However, these associations are not restrictive. For example, CD-ROMs and diskettes can have UFS file systems created on them. The Universal Disk Format (UDFS) File SystemFor information about creating a UDFS file system on removable media, see How to Create a File System on Removable Media. The UDF file system is the industry-standard format for storing information on DVD (Digital Versatile Disc or Digital Video Disc) optical media. 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 x86 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 provides the following features:
The following features are not included in the UDF file system:
The UDF file system requires the following:
The Solaris UDF file system implementation provides the following:
Network-Based File SystemsNetwork-based file systems can be accessed from the network. Typically, network-based file systems reside on one system, typically a server, and are accessed by other systems across the network. With NFS, you can administer distributed resources (files or directories) by exporting them from a server and mounting them on individual clients. For more information, see The NFS Environment. Virtual File SystemsVirtual file systems are memory-based file systems that provide access to special kernel information and facilities. Most virtual file systems do not use file system disk space. However, the CacheFS file system uses a file system on the disk to contain the cache. Also, some virtual file systems, such as the temporary file system (TMPFS), use the swap space on a disk. CacheFS File SystemThe CacheFSTM file system can be used to improve the performance of remote file systems or slow devices such as CD-ROM drives. When a file system is cached, the data that is read from the remote file system or CD-ROM is stored in a cache on the local system. If you want to improve the performance and scalability of an NFS or CD-ROM file system, you should use the CacheFS file system. The CacheFS software is a general purpose caching mechanism for file systems that improves NFS server performance and scalability by reducing server and network load. Designed as a layered file system, the CacheFS software provides the ability to cache one file system on another. In an NFS environment, CacheFS software increases the client per server ratio, reduces server and network loads, and improves performance for clients on slow links, such as Point-to-Point Protocol (PPP). You can also combine a CacheFS file system with the AutoFS service to help boost performance and scalability. For detailed information about the CacheFS file system, see Chapter 20, Using The CacheFS File System (Tasks). NFS Version 4 and CacheFS Compatibility IssuesIf both the CacheFS client and the CacheFS server are running NFS version 4, files are no longer cached in a front file system. All file access is provided by the back file system. Also, since no files are being cached in the front file system, CacheFS-specific mount options, which are meant to affect the front file system, are ignored. CacheFS-specific mount options do not apply to the back file system. Note – The first time you configure your system for NFS version 4, a warning appears on the console to indicate that caching is no longer performed. If you want to implement your CacheFS mounts as in previous Solaris releases, then specify NFS version 3 in your CacheFS mount commands. For example:
Temporary File SystemThe temporary file system (TMPFS) uses local memory for file system reads and writes. Typically, using memory for file system reads and writes is much faster than using a UFS file system. Using TMPFS can improve system performance by saving the cost of reading and writing temporary files to a local disk or across the network. For example, temporary files are created when you compile a program. The OS generates a much disk activity or network activity while manipulating these files. Using TMPFS to hold these temporary files can significantly speed up their creation, manipulation, and deletion. Files in TMPFS file systems are not permanent. These files are deleted when the file system is unmounted and when the system is shut down or rebooted. TMPFS is the default file system type for the /tmp directory in the Solaris OS. You can copy or move files into or out of the /tmp directory, just as you would in a UFS file system. The TMPFS file system uses swap space as a temporary backing store. If a system with a TMPFS file system does not have adequate swap space, two problems can occur:
For information about creating TMPFS file systems, see Chapter 18, Creating UFS, TMPFS, and LOFS File Systems (Tasks). For information about increasing swap space, see Chapter 21, Configuring Additional Swap Space (Tasks). The Loopback File SystemThe loopback file system (LOFS) lets you create a new virtual file system so that you can access files by using an alternative path name. For example, you can create a loopback mount of the root (/) directory on /tmp/newroot. This loopback mounts make the entire file system hierarchy appear as if it is duplicated under /tmp/newroot, including any file systems mounted from NFS servers. All files will be accessible either with a path name starting from root (/), or with a path name that starts from /tmp/newroot. For information on how to create LOFS file systems, see Chapter 18, Creating UFS, TMPFS, and LOFS File Systems (Tasks). Process File SystemThe process file system (PROCFS) resides in memory and contains a list of active processes, by process number, in the /proc directory. Information in the /proc directory is used by commands such as ps. Debuggers and other development tools can also access the address space of the processes by using file system calls. Do not delete files in the /proc directory. The deletion of processes from the /proc directory does not kill them. /proc files do not use disk space, so there is no reason to delete files from this directory. The /proc directory does not require administration. Additional Virtual File SystemsThese additional types of virtual file systems are listed for your information. They do not require administration.
libc_hwcapThe mount output on an x86 system might include a loopback mount of a libc_hwcap library, a hardware-optimized implementation of libc. This libc implementation is intended to optimize the performance of 32-bit applications. This loopback mount requires no administration and consumes no disk space. Extended File AttributesThe UFS, NFS, and TMPFS file systems have been enhanced to include extended file attributes. Extended file attributes enable application developers to associate specific attributes to a file. For example, a developer of an application used to manage a windowing system might choose to associate a display icon with a file. Extended file attributes are logically represented as files within a hidden directory that is associated with the target file. You can use the runat command to add attributes and execute shell commands in the extended attribute namespace. This namespace is a hidden attribute directory that is associated with the specified file. To use the runat command to add attributes to a file, you first have to create the attributes file.
Then, use the runat command to list the attributes of the file.
For more information, see the runat(1) man page. Many Solaris file system commands have been modified to support file system attributes by providing an attribute-aware option. Use this option to query, copy, or find file attributes. For more information, see the specific man page for each file system command. Swap SpaceThe Solaris OS uses some disk slices for temporary storage rather than for file systems. These slices are called swap slices, or swap space. Swap space is used for virtual memory storage areas when the system does not have enough physical memory to handle current processes. Since many applications rely on swap space, you should know how to plan for, monitor, and add more swap space, when needed. For an overview about swap space and instructions for adding swap space, see Chapter 21, Configuring Additional Swap Space (Tasks). Commands for File System AdministrationMost commands for file system administration have both a generic component and a file system–specific component. Whenever possible, you should use the generic commands, which call the file system–specific component. The following table lists the generic commands for file system administration. These commands are located in the /usr/sbin directory. Table 17–1 Generic Commands for File System Administration
How File System Commands Determine the File System TypeThe generic file system commands determine the file system type by following this sequence:
Manual Pages for Generic and Specific File System CommandsBoth the generic commands and specific commands have manual pages in the man pages section 1M: System Administration Commands. The manual pages for the generic file system commands provide information about generic command options only. The manual page for a specific file system command has information about options for that file system. To look at a manual page for a specific file system, append an underscore and the abbreviation for the file system type to the generic command name. For example, to see the specific manual page for mounting a UFS file system, type the following:
Default Solaris File SystemsThe Solaris UFS file system is hierarchical, starting with the root directory (/) and continuing downwards through a number of directories. The Solaris installation process enables you to install a default set of directories and uses a set of conventions to group similar types of files together. For a description of the contents of Solaris file systems and directories, see filesystem(5). The following table provides a summary of the default Solaris file systems. Table 17–2 The Default Solaris File Systems
The root (/) and /usr file systems are required to run a system. Some of the most basic commands in the /usr file system (like mount) are also included in the root (/) file system. As such, they are available when the system boots or is in single-user mode, and /usr is not mounted. For more detailed information on the default directories for the root (/) and /usr file systems, see Chapter 23, UFS File System (Reference). UFS File SystemUFS is the default disk-based file system in Solaris OS. Most often, when you administer a disk-based file system, you are administering UFS file systems. UFS provides the following features.
For detailed information about the UFS file system structure, see Chapter 23, UFS File System (Reference). Planning UFS File SystemsWhen laying out file systems, you need to consider possible conflicting demands. Here are some suggestions:
For information on default file system parameters as well as procedures for creating new UFS file systems, see Chapter 18, Creating UFS, TMPFS, and LOFS File Systems (Tasks). 64-bit: Support of Multiterabyte UFS File SystemsThis Solaris release provides support for multiterabyte UFS file systems on systems that run a 64-bit Solaris kernel. Previously, UFS file systems were limited to approximately 1 terabyte on both 64-bit and 32-bit systems. All UFS file system commands and utilities have been updated to support multiterabyte UFS file systems. For example, the ufsdump command has been updated with a larger block size for dumping large UFS file systems:
Administering UFS file systems that are less than 1 terabyte remains the same. No administration differences exist between UFS file systems that are less than one terabyte and file systems that are greater than 1 terabyte. You can initially create a UFS file system that is less than 1 terabyte and specify that it can eventually be expanded into a multiterabyte file system by using the newfs -T option. This option sets the inode and fragment density to scale appropriately for a multiterabyte file system. Using the newfs -T option when you create a UFS file system less than 1 terabyte on a system running a 32-bit kernel enables you to eventually expand this file system by using the growfs command when you boot this system under a 64-bit kernel. For more information, see newfs(1M). You can use the fstyp -v command to identify whether a UFS file system has multiterabyte support by checking the following value in the magic column:
A UFS file system with no multiterabyte support has the following fstyp output:
You can use the growfs command to expand a UFS file system to the size of the slice or the volume without loss of service or data. For more information, see growfs(1M). Two new related features are multiterabyte volume support with the EFI disk label and multiterabyte volume support with Solaris Volume Manager. For more information, see EFI Disk Label and the Solaris Volume Manager Administration Guide. Features of Multiterabyte UFS File SystemsMultiterabyte UFS file systems include the following features:
Limitations of Multiterabyte UFS File SystemsLimitations of multiterabyte UFS file systems are as follows:
Where to Find Multiterabyte UFS TasksUse these references to find step-by-step instructions for working with multiterabyte UFS file systems.
UFS LoggingUFS logging bundles the multiple metadata changes that comprise a complete UFS operation into a transaction. Sets of transactions are recorded in an on-disk log. Then, they are applied to the actual UFS file system's metadata. At reboot, the system discards incomplete transactions, but applies the transactions for completed operations. The file system remains consistent because only completed transactions are ever applied. This consistency remains even when a system crashes. A system crash might interrupt system calls and introduces inconsistencies into a UFS file system. UFS logging provides two advantages:
Logging is enabled by default for all UFS file systems, except under the following conditions:
In previous Solaris releases, you had to manually enable UFS logging. Keep the following issues in mind when using UFS logging:
The UFS transaction log has the following characteristics:
If you need to enable UFS logging, specify the -o logging option with the mount command in the /etc/vfstab file or when you manually mount the file system. Logging can be enabled on any UFS file system, including the root (/) file system. Also, the fsdb command has new debugging commands to support UFS logging. In some operating systems, a file system with logging enabled is known as a journaling file system. UFS SnapshotsYou can use the fssnap command to create a read-only snapshot of a file system. A snapshot is a file system's temporary image that is intended for backup operations. See Chapter 26, Using UFS Snapshots (Tasks) for more information. UFS Direct Input/Output (I/O)Direct I/O is intended to boost bulk I/O operations. Bulk I/O operations use large buffer sizes to transfer large files (larger than 256 Kbytes). Using UFS direct I/O might benefit applications, such as database engines, that do their own internal buffering. Starting with the Solaris 8 1/01 release, UFS direct I/O has been enhanced to allow the same kind of I/O concurrency that occurs when raw devices are accessed. Now you can get the benefit of file system naming and flexibility with very little performance penalty. Check with your database vendor to see if it can enable UFS direct I/O in its product configuration options. Direct I/O can also be enabled on a file system by using the forcedirectio option to the mount command. Enabling direct I/O is a performance benefit only when a file system is transferring large amounts of sequential data. When a file system is mounted with this option, data is transferred directly between a user's address space and the disk. When forced direct I/O is not enabled for a file system, data transferred between a user's address space and the disk is first buffered in the kernel address space. The default behavior is no forced direct I/O on a UFS file system. For more information, see mount_ufs(1M). Mounting and Unmounting File SystemsBefore you can access the files on a file system, you need to mount the file system. When you mount a file system, you attach that file system to a directory (mount point) and make it available to the system. The root (/) file system is always mounted. Any other file system can be connected or disconnected from the root (/) file system. When you mount a file system, any files or directories in the underlying mount point directory are unavailable as long as the file system is mounted. These files are not permanently affected by the mounting process. They become available again when the file system is unmounted. However, mount directories are typically empty because you usually do not want to obscure existing files. For example, the following figure shows a local file system, starting with a root (/) file system and the sbin, etc, and opt subdirectories. Figure 17–1 Sample root (/) File System
To access a local file system from the /opt file system that contains a set of unbundled products, you must do the following:
Figure 17–2 Mounting a File System
For step-by-step instructions on how to mount file systems, see Chapter 19, Mounting and Unmounting File Systems (Tasks). The Mounted File System TableWhenever you mount or unmount a file system, the /etc/mnttab (mount table) file is modified with the list of currently mounted file systems. You can display the contents of this file by using the cat or more commands. However, you cannot edit this file. Here is an example of an /etc/mnttab file:
The Virtual File System TableManually mounting file systems every time you wanted to access them would be a very time-consuming and error-prone. To avoid these problems, the virtual file system table (the /etc/vfstab file) provides a list of file systems and information on how to mount them. The /etc/vfstab file provides two important features:
A default /etc/vfstab file is created when you install a system, depending on the selections during installation. However, you can edit the /etc/vfstab file on a system whenever you want. To add an entry, the information you need to specify is as follows:
The following is an example of an /etc/vfstab file for a system that runs a UFS root file system. Comment lines begin with #. This example shows an /etc/vfstab file for a system with two disks (c0t0d0 and c0t3d0).
In this example, root (/) and /usr, the mount at boot field value is specified as no. These file systems are mounted by the kernel as part of the boot sequence before the mountall command is run. The following vfstab example if from a system that runs a ZFS root file system.
ZFS file systems are mounted automatically by the SMF service at boot time. You can mount ZFS file systems from the vfstab by using the legacy mount feature. For more information, see Solaris ZFS Administration Guide. For descriptions of each /etc/vfstab field and information on how to edit and use the file, see Chapter 19, Mounting and Unmounting File Systems (Tasks). The NFS EnvironmentNFS is a distributed file system service that can be used to share resources (files or directories) from one system, typically a server, with other systems on the network. For example, you might want to share third-party applications or source files with users on other systems. NFS makes the actual physical location of the resource irrelevant to the user. Instead of placing copies of commonly used files on every system, NFS allows you to place one copy on one system's disk and let all other systems access it from the network. Under NFS, remote files are virtually indistinguishable from local files. For more information, see Chapter 4, Managing Network File Systems (Overview), in System Administration Guide: Network Services. A system becomes an NFS server if it has resources to share on the network. A server keeps a list of currently shared resources and their access restrictions (such as read/write or read-only access). When you share a resource, you make it available for mounting by remote systems. You can share a resource in these ways:
For information on how to share resources, see Chapter 19, Mounting and Unmounting File Systems (Tasks). For a complete description of NFS, see Chapter 4, Managing Network File Systems (Overview), in System Administration Guide: Network Services. NFS Version 4Sun's implementation of the NFS version 4 distributed file access protocol is included in the Solaris release. NFS version 4 integrates file access, file locking, and mount protocols into a single, unified protocol to ease traversal through a firewall and improve security. The Solaris implementation of NFS version 4 is fully integrated with Kerberos V5, also known as SEAM, thus providing authentication, integrity, and privacy. NFS version 4 also enables the negotiation of security flavors to be used between the client and the server. With NFS version 4, a server can offer different security flavors for different file systems. For more information about NFS Version 4 features, see What’s New With the NFS Service in System Administration Guide: Network Services. Automounting or AutoFSYou can mount NFS file system resources by using a client-side service called automounting (or AutoFS). AutoFS enables a system to automatically mount and unmount NFS resources whenever you access them. The resource remains mounted as long as you remain in the directory and are using a file within that directory. If the resource is not accessed for a certain period of time, it is automatically unmounted. AutoFS provides the following features:
The AutoFS service is initialized by the automount utility, which runs automatically when a system is booted. The automountd daemon runs continuously and is responsible for the mounting and unmounting of NFS file systems on an as-needed basis. By default, the /home file system is mounted by the automount daemon. With AutoFS, you can specify multiple servers to provide the same file system. This way, if one of these servers is down, AutoFS can try to mount the file system from another machine. For complete information on how to set up and administer AutoFS, see System Administration Guide: IP Services. Determining a File System's TypeYou can determine a file system's type by using one of the following: How to Determine a File System's TypeThis procedure works whether or not the file system is mounted. Determine a file system's type by using the grep command.
Information for the mount point is displayed. Note – If you have the raw device name of a disk slice, you can use the fstyp command to determine a file system's type (if the disk slice contains a file system). For more information, see fstyp(1M). Example 17–1 Determining a File System's TypeThe following example uses the /etc/vfstab file to determine the file system type for the /export file system.
The following example uses the /etc/mnttab file to determine the file system type of the currently mounted diskette.
The following example uses the fstyp command to determine the file system type.
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||