Uma atualização para meados de 2012: OpenIndiana / Illumos (essencialmente uma bifurcação da comunidade do OpenSolaris) continua a usar a mesma abordagem, mas eu encontrei algumas diferenças na configuração e uma dica muito útil de
DAMIAN WOJSŁAW no link . A seguinte receita, que inclui as etapas iniciais para identificar um disco rígido USB externo com a partição NTFS, foi eficaz para mim na área de trabalho do OpenIndiana 151_a5:
## List attached removable storage devices:
$ rmformat -l
## even though counterintuitive, include the partition number "p0" as shown by rmformat
## Verify the pX partition number that contains the NTFS filesystem, typically "p1".
## make sure to exit without making changes, just looking for the partition number.
$ pfexec fdisk /dev/rdsk/c6t0d0p0
## ntfsprogs were installed, but not the actual ntfs-3g kernel modules
$ pkg search ntfs-3g
$ pfexec pkg install /system/file-system/ntfs-3g
## Something not quite complete about the FUSE install out of the box (thanks DAMIAN WOJSŁAW!)
## ( http://trochejen.blogspot.com/2011/11/openindiana-and-ntfs-3g.html )
$ pfexec ln -s /devices/pseudo/fuse\@0\:fuse /dev/fuse
## OK! Now mount it up
$ pfexec ntfs-3g /dev/dsk/c6t0d0p1 /mnt/backup/
## or you can now put add a vfstab entry about so:
/dev/dsk/c6t0d0p1 /dev/rdsk/c6t0d0p1 /mnt/backup ntfs-3g - no -