It appears that ZFS interacts with /dev/dsk.

I have had success duplicating drive contents one slice at a time using a command similar to
cat /dev/rdsk/c1t3d0s0 > /dev/rdsk/c1t4d0s0.

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

usually r stands for raw disk - meaning you access it into a non buffered mode.

link|improve this answer
So, does this mean that they both access the same data in the same length and order, just in a different way? – George Bailey Dec 27 '10 at 16:12
yes - this is it – silviud Dec 28 '10 at 15:04
feedback

The /dev/rdsk devices are character devices. These are used for low level manipulation of the corresponding slice's data a character at a time. The /dev/dsk devices are block devices. These are used for accessing the slice's data in blocks in a structured manner through a filesystem.

ZFS works on storage pools. Storage pools are built using virtual devices (vdevs). Vdevs can be built from disks,partitions or block devices.

link|improve this answer
So, does this mean that they both access the same data in the same length and order, just in a different way? – George Bailey Dec 27 '10 at 16:07
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.