LinuxからNTFSドライブにシンボリックリンク(別名:ジャンクションポイントまたは再解析ポイント)を作成する方法。から取得:http : //www.tuxera.com/community/ntfs-3g-advanced/extended-attributes/
必要に応じて: sudo apt-get attr
# Display the reparse data of the file source-file
getfattr -h -e hex -n system.ntfs_reparse_data source-file
# Copy the reparse data of the file source-file
# to the file target-file
REPARSE=`getfattr -h -e hex -n system.ntfs_reparse_data source-file | \
grep '=' | sed -e 's/^.*=//'`
setfattr -h -v $REPARSE -n system.ntfs_reparse_data target-file