JavaScript is required to for searching.
Skip Navigation Links
Exit Print View
Oracle Solaris ZFS Administration Guide     Oracle Solaris 11 Express 11/10
search filter icon
search icon

Document Information

Preface

1.  Oracle Solaris ZFS File System (Introduction)

2.  Getting Started With Oracle Solaris ZFS

3.  Oracle Solaris ZFS and Traditional File System Differences

4.  Managing Oracle Solaris ZFS Storage Pools

5.  Managing ZFS Root Pool Components

6.  Managing Oracle Solaris ZFS File Systems

7.  Working With Oracle Solaris ZFS Snapshots and Clones

8.  Using ACLs and Attributes to Protect Oracle Solaris ZFS Files

New Solaris ACL Model

Syntax Descriptions for Setting ACLs

ZFS ACL Sets

ACL Inheritance

ACL Property (aclinherit)

Setting ACLs on ZFS Files

Setting and Displaying ACLs on ZFS Files in Verbose Format

Setting ACL Inheritance on ZFS Files in Verbose Format

Setting and Displaying ACLs on ZFS Files in Compact Format

Applying Special Attributes to ZFS Files

9.  Oracle Solaris ZFS Delegated Administration

10.  Oracle Solaris ZFS Advanced Topics

11.  Oracle Solaris ZFS Troubleshooting and Pool Recovery

A.  Oracle Solaris ZFS Version Descriptions

Index

Applying Special Attributes to ZFS Files

The following examples show how to apply and display special attributes, such as immutability or read-only access, to ZFS files.

For more information about displaying and applying special attributes, see ls(1) and chmod(1).

Example 8-14 Apply Immutability to a ZFS File

Use the following syntax to make a file immutable:

# chmod S+ci file.1
# echo this >>file.1
-bash: file.1: Not owner
# rm file.1
rm: cannot remove `file.1': Not owner

You can display special attributes on ZFS files by using the following syntax:

# ls -l/c file.1
-rw-r--r--   1 root     root      206674 Jun 15 13:31 file.1
                {A-----im--}

Use the following syntax to remove file immutability:

# chmod S-ci file.1
# ls -l/c file.1
-rw-r--r--   1 root     root      206674 Jun 15 13:31 file.1
                {A------m--}
# rm file.1

Example 8-15 Apply Read-Only Access to a ZFS File

The following example shows how to apply read-only access to a ZFS file.

# chmod S+cR file.2
# echo this >>file.2
-bash: file.2: Not owner

Example 8-16 Displaying and Removing ZFS File Attributes

You can display all special attributes with the following syntax:

# ls -l/v file.3
-rw-r-xr-x   1 root     root        2380 Jun 15 10:17 file.3
                {archive,nohidden,noreadonly,nosystem,noappendonly,nonodump,noimmutable,av_modified,noav_
quarantined,nonounlink}
# chmod S+cR file.3
# ls -l/v file.3
-rw-r-xr-x   1 root     root        2380 Jun 15 10:17 file.3
                {archive,nohidden,readonly,nosystem,noappendonly,nonodump,noimmutable,av_modified,noav_
quarantined,nonounlink}

Some of these attributes only apply in an Oracle Solaris SMB environment.

You can clear all attributes on a file. For example:

# chmod S-a file.3
# ls -l/v file.3
-rw-r-xr-x   1 root     root        2380 Jun 15 10:17 file.3
                {noarchive,nohidden,noreadonly,nosystem,noappendonly,nonodump,noimmutable,noav_modified,
noav_quarantined,nonounlink}