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 diff between snapshots


If you have one or more snapshots of a filesystem, you can now take advantage of the saved metadata to do fast difference checks between them, or with the current filesystem, rather than having to manually traverse the filesystem with diff -r or rsync. It's not always two-second fast, but it is certainly convenient when you already have a snapshot made.

The only downside is that it does not tell you the actual file content that has changed, only that the file has changed overall. Even so, I have found this to be quite useful on occasions. For example, if there is some install command that you are not 100 percent confident of in what it does, creating a pre-install snapshot and then a diff, can tell you with certainty what happened on even a very large filesystem, with minimal system impact.

It can also tell you which files have merely been renamed whereas a normal diff would tell you "oldname file has been removed: newname file has been created".

Technically, there...