Ein Update für Mitte 2012: OpenIndiana / Illumos (im Wesentlichen ein Community-Zweig von OpenSolaris) verwendet denselben Ansatz. Ich fand jedoch einige Unterschiede im Setup und einen sehr nützlichen Tipp von DAMIAN WOJSŁAW unter http: //trochejen.blogspot .com / 2011/11 / openindiana-and-ntfs-3g.html . Das folgende Rezept, das erste Schritte zur Identifizierung einer externen USB-Festplatte mit der NTFS-Partition enthält, war für mich auf OpenIndiana desktop 151_a5 wirksam:
## 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 -