Toi nghe noi rang neu doi o cung sang NTFS thi se tot hon cho bao mat. Cac ban co the lam on giai thich gium toi NTFS la gi va co che hoat dong cua no nhu the nao khong?
Khi cai Win XP va doi sang NTFS thi du lieu tren o cung co bi mat khong? Xin chan thanh cam on cac ban!
Manh Duc Bui
Hồi âm:
Bạn mà muốn biết cụ thể về NTFS thì phải đọc cả một cuốn sách dầy. Tuy nhiên cơ bản nhất là:
NTFS = NT (trong Windows NT = New Technology) File System.
FAT = File Allocation Table.
FAT dùng một bảng (kiểu bản đồ) để thể hiện các file và thư mục trên ổ cứng. Muốn tìm 1 File, máy tính sẽ nhìn vào "bản đồ" trước rồi lần ra cái file đó, vì vậy hơi mang tính "quan liêu". NTFS dùng hệ thống chỉ mục (index) để quản lý ổ cứng do vậy chặt chẽ và khắt khe hơn nhiều.
NTFS có những điểm sau đây ưu việt hơn FAT:
1. Chấp nhận lỗi của đĩa: nếu 1 sector trên đĩa cứng bị hỏng hệ điều hành sẽ biết và tự mình không ghi thông tin lên sector đó nữa (nếu là FAT điều này sẽ vẫn sảy ra) mà sẽ chọn 1 sector khác. Điều này là rất quan trọng vì ghi thông tin lên một sector bị hỏng là đồng nghĩa với việc vất thông tin đó đi. Tất nhiên nếu sector đó bị hỏng SAU khi thông tin đã được ghi lên thì có là NTFS thì cũng chịu.
2. Bảo mật: NTFS có rất nhiều tính năng bảo mật khác nhau, bạn có thể tại ra các mức bảo mật khác nhau cho đến từng file cụ thể. Thêm vào đó NTFS hộ trợ EFS (Encrypting File System - hệ thống mã hoá file) tạo điều kiện cho người dùng tăng tính năng bảo mật bằng cách mã hoá các file và thư mục. FAT chẳng có tính năng bảo mật gì hết trơn.
3. Nén file: NTFS cho phép bạn nén file lại để tiết kiện ổ đĩa. Điều này có thể thực hiện dễ dàng trên toàn ổ đĩa, trên 1 thư mục hay trên chỉ 1 file cụ thể. Ở FAT thì điều này là không tưởng.
4. Quản lý và hạn chế tài nguyên: cho phép, quản trị mạng hạn chế mức độ, dung lượng tại nguyên 1 user có thể sử dụng.
Tóm lại, việc chọn lựa giữa FAT và NTFS là khá dễ dàng. Chỉ có duy nhất 1 lý do để không dùng NTFS thôi: Đó là nếu bạn muốn dùng một hệ điều hành không đọc được NTFS (Windows 9x/ME) khác trên cùng 1 máy tính với Widnows NT (NT/2k/XP).
Dong Ngo
(NT File System) A file system used in Windows NT that uses the Unicode character set and allows file names up to 255 characters in length. The NTFS is designed to recover on the fly from hard disk crashes. Windows NT supports multiple file systems. It can run with a DOS/Windows FAT, an OS/2 HPFS and a native NTFS, each in a different partition on the hard disk. NT's security features require that the NTFS be used.
You may have heard that FAT offers performance advantages for volumes of less than 400MB. This adage may be true, but I've never seen any concrete evidence besides a pointer to an old Microsoft MCSE course manual. NTFS offers vastly superior robustness, reliability, and security, as well as much better performance than FAT on large volumes. Avoid FAT on your server, period-even to facilitate recovery
A. The default cluster size for a FAT partition is as follows:
Partition size Sectors per cluster Cluster size
<32MB 1 512 bytes
<64MB 2 1K
<128MB 4 2K
<255MB 8 4K
<511MB 16 8K
<1023MB 32 16K
<2047MB 64 32K
<4095MB 128 64K
This is why FAT volumes larger than 511MB are not recommended due to the
amount of potentially wasted space due to the 16KB and above cluster size.
The default for NTFS is as follows:
Partition size Sectors per cluster Cluster size
<512MB 1 512 bytes (or hardware sector size if greater than 512 bytes)
<1024MB 2 1K
<2048MB 4 2K
<4096MB 8 4K
<8192MB 16 8K
<16384MB 32 16K
<32768MB 64 32K
>32768 MB 128 64K
Security:
If the file/directory is on a NTFS partition there will be a security tab,
and within that dialog, a permissions button. If you press that button you
can grant access to users/groups on the resource at various levels.
There are six basic permissions
R - Read
W - Write
D - Delete
X - Execute
P - Change Permissions
O - Take Ownership
These can be assigned to a resource, however they are grouped for ease of use.
No Access - User has no access to the resource
List - R User can view directory and filenames in directory
Read - RX User can read files in directory and execute programs
Add - WX User can add files to the directory, but cannot read or change the
contents of the directory
Add & Read - RWX User has read and add permissions
Change - RWXD User has read, add, change contents and delete files
All - RWXDPO User can do anything she wants!
The permissions above can all be set on a directory, however this list is
limited for a file, and permissions that can be set are only No Access,
Read, Change and Full Control.
Another permission exists called "Special Access" (on a directory there will
be two, one for files, one for directories), and from this you can set which of the basic permissions should be assigned.
To convert to NTFS, use command:
convert
you don't lost your data during the conversion but you must have enough
space to do that. It may require a reboot to do a conversion. Please read
the message!
Ted H.