You are not logged in. Your edit will be placed in a queue until it is peer reviewed.
We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.
-
Very interesting. I assumed all the inode tables etc. were at the start of the volume.EmmaV– EmmaV2015-05-18 03:02:22 +00:00Commented May 18, 2015 at 3:02
-
1@EmmaV distributing them across the disk, relatively close to the data they refer to, results in shorter seeks and faster disk access :)hobbs– hobbs2015-05-18 16:22:51 +00:00Commented May 18, 2015 at 16:22
-
are you sure NTFS have such large number of fragments? It has a free space bitmap and a different allocation algorithm so it doesn't produce so many fragments as the FAT familyphuclv– phuclv2022-03-15 02:58:19 +00:00Commented Mar 15, 2022 at 2:58
-
@phuclv, I haven't seen any evidence that they use a better allocation strategy. It isn't so much of an issue of the filesystem itself ( in other words, NTFS having an allocation bitmap doesn't matter ), but rather the allocation strategy Microsoft's filesystem drivers have always used is terrible. Rather than improve their allocation strategy, they just bought a defrag program from another developer that created it and bundled it with Windows and even set it to automatically run periodically by default these days. If you run it manually you can see how much fragmentation there is.psusi– psusi2022-03-31 19:35:25 +00:00Commented Mar 31, 2022 at 19:35
-
yes I used various defragmenters regularly since Windows 9x and even watch them running for hours. I have no need to care about them for years because NTFS also use extents like ext4 and never produces hundreds of fragments unless the disk is severely full and there's no space for the MFT to grow, in which case ext4 also has the same limimtationphuclv– phuclv2022-04-01 01:33:01 +00:00Commented Apr 1, 2022 at 1:33
|
Show 6 more comments
How to Edit
- Correct minor typos or mistakes
- Clarify meaning without changing it
- Add related resources or links
- Always respect the author’s intent
- Don’t use edits to reply to the author
How to Format
-
create code fences with backticks ` or tildes ~
```
like so
``` -
add language identifier to highlight code
```python
def function(foo):
print(foo)
``` - put returns between paragraphs
- for linebreak add 2 spaces at end
- _italic_ or **bold**
- indent code by 4 spaces
- backtick escapes
`like _so_` - quote by placing > at start of line
- to make links (use https whenever possible)
<https://example.com>[example](https://example.com)<a href="https://example.com">example</a>
How to Tag
A tag is a keyword or label that categorizes your question with other, similar questions. Choose one or more (up to 5) tags that will help answerers to find and interpret your question.
- complete the sentence: my question is about...
- use tags that describe things or concepts that are essential, not incidental to your question
- favor using existing popular tags
- read the descriptions that appear below the tag
If your question is primarily about a topic for which you can't find a tag:
- combine multiple words into single-words with hyphens (e.g. shell-script), up to a maximum of 35 characters
- creating new tags is a privilege; if you can't yet create a tag you need, then post this question without it, then ask the community to create it for you