nerdexam
Oracle

1Z0-820 · Question #45

You need to migrate a UFS file system named /production_ufs to a ZFS file system named /production_ufs. The /production_ufs file system cannot be taken down or be out of production during the…

The correct answer is E. Create the new zfs file system by using the zfs create -o shadow. ZFS Shadow Migration (zfs create -o shadow=<source>) is specifically designed for exactly this scenario: it creates a new ZFS filesystem that transparently pulls data from a live source (including UFS) in the background, allowing both filesystems to remain accessible…

Managing Data Storage

Question

You need to migrate a UFS file system named /production_ufs to a ZFS file system named /production_ufs. The /production_ufs file system cannot be taken down or be out of production during the migration, and the current /production_ufs file system must remain active until the /ptoduction_zfs file system is copied and ready. Which method allows you to meet both requirements? 1. Copy live data from /production_ufs to /production_zfs while /production_ufs is in use. 2. When the copy is complete, /production_zfs will contain an up-to date copy of /production_ufs

Options

  • ACreate a snapshot of the UFS file system.
  • BCreate a new Boot Environment.
  • CMirror the existing UFS file system by using SVM.
  • DCreate the new ZFS file system by using zfs create import to import data from the existing UFS file
  • ECreate the new zfs file system by using the zfs create -o shadow.

How the community answered

(39 responses)
  • A
    3% (1)
  • B
    8% (3)
  • C
    5% (2)
  • E
    85% (33)

Explanation

ZFS Shadow Migration (zfs create -o shadow=<source>) is specifically designed for exactly this scenario: it creates a new ZFS filesystem that transparently pulls data from a live source (including UFS) in the background, allowing both filesystems to remain accessible simultaneously until migration completes - perfectly satisfying both requirements.

Why the distractors fail:

  • A (UFS snapshot): fssnap creates a frozen, point-in-time read-only image - it captures a moment, not a live continuous copy, so changes after the snapshot are missed.
  • B (Boot Environment): beadm manages OS root environments for patching/upgrades; it has no role in migrating arbitrary data filesystems like /production_ufs.
  • C (SVM mirror): SVM mirroring duplicates at the block level - the result is still a UFS filesystem, not a ZFS one. It mirrors, it doesn't convert.
  • D (zfs create import): This command syntax does not exist in ZFS. zfs import is for importing ZFS pools from other hosts, not ingesting UFS data.

Memory tip: Think of the -o shadow option as casting a shadow - just like your shadow silently mimics your movements without interrupting you, ZFS shadow migration silently mirrors the source filesystem in the background while production keeps running. If you see "live UFS → ZFS with zero downtime," the answer is always shadow migration.

Topics

#File System Migration#ZFS Replication#Live Data Synchronization#UFS to ZFS

Community Discussion

No community discussion yet for this question.

Full 1Z0-820 Practice