mirror of
https://git.code.sf.net/p/ntfs-3g/ntfs-3g.git
synced 2024-11-23 10:04:00 +08:00
Typo fixes.
(Logical change 1.305)
This commit is contained in:
parent
0003d039bd
commit
9cdb31ec2d
2
CREDITS
2
CREDITS
@ -1,4 +1,4 @@
|
||||
The following people have contributed directly or indirectly to the linux-ntfs
|
||||
The following people have contributed directly or indirectly to the Linux-NTFS
|
||||
project.
|
||||
|
||||
The list is sorted alphabetically, so please keep it this way!
|
||||
|
2
NEWS
2
NEWS
@ -14,7 +14,7 @@ Merged the NTFS Gnome VFS module by Jan Kratochvil.
|
||||
|
||||
Added new utilities: ntfsclone by Szakacsits Szabolcs, ntfscluster by Richard
|
||||
Russon, ntfsinfo by Matthew Fanto, ntfsls originally by Lode Leroy, modified
|
||||
by Anton Altaparmakov, ntfscat by Richard Russon.
|
||||
by Anton Altaparmakov, and ntfscat by Richard Russon.
|
||||
|
||||
Library internal enhancements and API additions. Of particular note is the
|
||||
device io abstraction layer and the addition of the win32 device operations.
|
||||
|
@ -51,7 +51,7 @@
|
||||
* LOW priority *
|
||||
****************
|
||||
|
||||
- Do we attach attributes (ntfs_attr) to the corresponding ntfs_inode? Now we
|
||||
- Do we attach attributes (ntfs_attr) to the corresponding ntfs_inode? Now we
|
||||
just atach the inode to the attribute and expect the user to not shoot
|
||||
themselves in the foot.
|
||||
|
||||
|
@ -24,7 +24,7 @@ Thanks,
|
||||
- Cleanup to use ntfs_attr_* API for editing $MFTMirr, $Volume, and $LogFile.
|
||||
This has the immediate benefit of enabling attribute list support and making
|
||||
the code simpler.
|
||||
- On ntfs 3.0+ volumes need to disable the usn journal if it is active. This
|
||||
- On ntfs 3.0+ volumes need to disable the usn journal if it is active. This
|
||||
means deleting file $UsnJrnl from /$Extend directory.
|
||||
- On ntfs 3.0+ volumes need to mark the quota out of date? - Probably, but
|
||||
it shouldn't cause any corruption not doing so for the moment so this is
|
||||
|
@ -21,7 +21,7 @@ __u32 flags = 0x42
|
||||
__u64 min_size = 0x44
|
||||
__u64 max_size = 0x242
|
||||
|
||||
/* The $volume_version attribute has never been observed in the field. It
|
||||
/* The $volume_version attribute has never been observed in the field. It
|
||||
* probably never was used and was hence replaced by the $object_id in
|
||||
* Windows 2000. */
|
||||
__u16 name[64] = "$VOLUME_VERSION" in Win2k: "$OBJECT_ID"
|
||||
@ -80,7 +80,7 @@ __u32 flags = 0x80
|
||||
__u64 min_size = 0
|
||||
__u64 max_size = -1
|
||||
|
||||
/* The $symbolic_link attribute has never been observed in the field. It
|
||||
/* The $symbolic_link attribute has never been observed in the field. It
|
||||
* probably never was used and was hence replaced by the $reparse_point in
|
||||
* Windows 2000. */
|
||||
__u16 name[64] = "$SYMBOLIC_LINK" in Win2k: "$REPARSE_POINT"
|
||||
@ -121,8 +121,8 @@ __u64 min_size = 0
|
||||
__u64 max_size = 0x10000
|
||||
|
||||
/*
|
||||
* This is terminated by a single record all of whose fields are zero. This
|
||||
* also finishes the $AttrDef data attribute. I.e. the attribute size is the
|
||||
* This is terminated by a single record all of whose fields are zero. This
|
||||
* also finishes the $AttrDef data attribute, i.e. the attribute size is the
|
||||
* correct size of the sequence of attribute definitions (2560 bytes, i.e.
|
||||
* 16 attribute definitions of 160 bytes each).
|
||||
*/
|
||||
|
@ -1,17 +1,17 @@
|
||||
System files mft record numbers. All these files are always marked as used
|
||||
System files mft record numbers. All these files are always marked as used
|
||||
in the bitmap attribute of the mft; presumably in order to avoid accidental
|
||||
allocation for random other mft records. Also, the sequence number for each
|
||||
allocation for random other mft records. Also, the sequence number for each
|
||||
of the system files is always equal to their mft record number and it is
|
||||
never modified. (Only $MFT has a sequence number of 1, rather than 0.)
|
||||
|
||||
FILE_$MFT = 0, /* Master file table (mft). Data attribute
|
||||
FILE_$MFT = 0, /* Master file table (mft). Data attribute
|
||||
contains the entries and bitmap attribute
|
||||
records which ones are in use (bit==1). */
|
||||
FILE_$MFTMirr = 1, /* Mft mirror (copy of first four mft records)
|
||||
in data attribute. */
|
||||
FILE_$LogFile = 2, /* Journalling log in data attribute. */
|
||||
FILE_$Volume = 3, /* Volume name attribute and volume information
|
||||
attribute (flags and ntfs version). Windows
|
||||
attribute (flags and ntfs version). Windows
|
||||
refers to this file as volume DASD (Direct
|
||||
Access Storage Device). */
|
||||
FILE_$AttrDef = 4, /* Array of attribute definitions in data
|
||||
@ -25,12 +25,12 @@ FILE_$BadClus = 8, /* Contains all bad clusters in the non-resident
|
||||
data attribute. */
|
||||
FILE_$Secure = 9, /* Shared security descriptors in data attribute
|
||||
and two indexes into the descriptors.
|
||||
Appeared in Windows 2000. Before that, this
|
||||
Appeared in Windows 2000. Before that, this
|
||||
file was named $Quota but was unused. */
|
||||
FILE_$UpCase = 10, /* Uppercase equivalents of all 65536 Unicode
|
||||
characters in data attribute. */
|
||||
FILE_$Extend = 11, /* Directory containing other system files (eg.
|
||||
$ObjId, $Quota, $Reparse and $UsnJrnl). This
|
||||
$ObjId, $Quota, $Reparse and $UsnJrnl). This
|
||||
is new to NTFS3.0. */
|
||||
FILE_reserved12 = 12, /* Reserved for future use (records 12-15). */
|
||||
FILE_reserved13 = 13,
|
||||
|
@ -18,7 +18,7 @@ License : GPL
|
||||
Group : System Environment/Base
|
||||
%description
|
||||
The Linux-NTFS project (http://linux-ntfs.sf.net/) aims to bring full support
|
||||
for the NTFS filesystem to the Linux operating system. Linux-NTFS currently
|
||||
for the NTFS filesystem to the Linux operating system. Linux-NTFS currently
|
||||
consists of a static library and utilities such as mkntfs, ntfscat, ntfsls,
|
||||
ntfsresize, and ntfsundelete (for a full list of included utilities see man
|
||||
8 ntfsprogs after installation).
|
||||
|
Loading…
Reference in New Issue
Block a user