Linux "ntfscp" Command Line Options and Examples
copy file to an NTFS volume.

ntfscp will copy file to an NTFS volume. destination can be either file or directory.


Usage:

ntfscp [options] device source_file destination




Command Line Options:

-a
Write to this attribute.
ntfscp -a ...
-i
Treat destination as inode number.
ntfscp -i ...
-m
Minimize fragmentation when allocating space to the attribute. This is mostly useful when creating bigfiles.
ntfscp -m ...
-N
Write to attribute with this name.
ntfscp -N ...
-n
Use this option to make a test run before doing the real copy operation. Volume will be openedread-only and no write will be done.
ntfscp -n ...
-f
This will override some sensible defaults, such as not working with a mounted volume. Use this optionwith caution.
ntfscp -f ...
-h
Show a list of options with a brief description of each one.
ntfscp -h ...
-q
Suppress some debug/warning/error messages.
ntfscp -q ...
-V
Show the version number, copyright and license ntfscp.
ntfscp -V ...
-v
Display more debug/warning/error messages.DATA STREAMSAll data on NTFS is stored in streams, which can have names. A file can have more than one data streams, butexactly one must have no name. The size of a file is the size of its unnamed data stream. Usually when youdon't specify stream name you are access to unnamed data stream. If you want access to named data stream youneed to add ":stream_name" to the filename. For example: by opening "some.mp3:artist" you will open stream"artist" in "some.mp3". But windows usually prevent you from accessing to named data streams, so you need touse some program like FAR or utils from cygwin to access named data streams.EXAMPLESCopy new_boot.ini from /home/user as boot.ini to the root of an /dev/hda1 NTFS volume:ntfscp /dev/hda1 /home/user/new_boot.ini boot.iniCopy myfile to C:\some\path\myfile:stream (assume that /dev/hda1 letter in windows is C):ntfscp -N stream /dev/hda1 myfile /some/pathBUGSThere are no known problems with ntfscp. If you find a bug please send an email describing the problem to thedevelopment team:ntfs-3g-devel@lists.sf.netAUTHORSntfscp was written by Yura Pakhuchiy, with contributions from Anton Altaparmakov and Hil Liao. It was portedto ntfs-3g by Erik Larsson.DEDICATIONWith love to Marina Sapego.AVAILABILITYntfscp is part of the ntfs-3g package and is available from:http://www.tuxera.com/community/
ntfscp -v ...