Book Image

Oracle Solaris 11: First Look

By : Philip P. Brown
Book Image

Oracle Solaris 11: First Look

By: Philip P. Brown

Overview of this book

Oracle Solaris provides innovative, built-in features that deliver breakthrough high availability, advanced security, efficiency, and industry-leading scalability and performance to help businesses grow. "Oracle Solaris 11: First Look" covers the new features and functionality of Oracle Solaris 11 and how these new features and improvements will make it easier to deploy services to the enterprise while improving performance and reducing total cost of ownership.This book starts with coverage of Image Packaging System and the new installation methods. It then moves swiftly to network configuration. The book also includes some security features and improvements.  
Table of Contents (19 chapters)
Oracle Solaris 11: First Look
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
IPS Package Reference
New ACL Permissions and Abbreviations
Index

ZFS, beadm, and zones


It should be noted that there is no longer any such thing as a "sparse" zone. Each zone has its own ZFS root filesystem, and a ZFS tree under that. They no longer share the root filesystem of the global zone, although they may have a clone of the global root filesystem. This is similar to, yet different from, the old style of sharing the /usr filesystem as read-only. The similarity resides in the fact that, if no changes are made, you only take up one zone's worth of filesystem space. The differences are rather critical however; changes made in the original are not reflected in any clones. Furthermore, the clones are writable, rather than read-only by default. However, it is possible to set a zone to have an "immutable" root. See Chapter 8, Security Improvements, for more details.

The zone-specific root filesystem is usually contained under:

$(zonepath)/rpool/ROOT

Because of this, it is also possible (and in a way, mandatory) to run beadm for zones. More details on...