O que é fragmentação de disco e ainda preciso desfragmentar?

Índice:

O que é fragmentação de disco e ainda preciso desfragmentar?
O que é fragmentação de disco e ainda preciso desfragmentar?

Vídeo: O que é fragmentação de disco e ainda preciso desfragmentar?

Vídeo: O que é fragmentação de disco e ainda preciso desfragmentar?
Vídeo: Windows 8: como mudar a região da Windows Store para outro país - YouTube 2024, Abril
Anonim
Os computadores modernos ainda precisam do tipo de procedimentos de desfragmentação de rotina que os computadores antigos exigiam? Continue lendo para aprender sobre a fragmentação e o que os sistemas operacionais e sistemas de arquivos modernos fazem para minimizar os impactos no desempenho.
Os computadores modernos ainda precisam do tipo de procedimentos de desfragmentação de rotina que os computadores antigos exigiam? Continue lendo para aprender sobre a fragmentação e o que os sistemas operacionais e sistemas de arquivos modernos fazem para minimizar os impactos no desempenho.

A sessão de Perguntas e Respostas de hoje nos é oferecida, cortesia da SuperUser - uma subdivisão do Stack Exchange, um agrupamento de sites de perguntas e respostas da comunidade.

A questão

Leitor de superusuário Simon Sheehan está curioso sobre o estado de desfragmentação em unidades modernas:

As a part of regular Windows maintenance, I defragment my hard drive. But why does the hard drive fragment on NTFS and FAT* systems? Apparently EXT* does not, why is this? Should I also be defragmenting my USB drives?

Vamos falar sobre algumas das respostas dos colaboradores para investigar a questão de Simon.

A resposta

O colaborador do SuperUser, Daniel R. Hicks, coloca a questão:

Fragmentation is not the issue it was 30 years ago. Back then you had hard drives that were scarcely faster than floppies, and processor memory sizes that were minuscule. Now you have very fast drives and large processor memories, and sometimes substantial buffering on the hard drive or in the controller. Plus sector sizes have gotten larger (or files are allocated in larger blocks) so that more data is inherently contiguous.

Operating systems have gotten smarter as well. Whereas DOS 1.x would have fetched each sector from disk as it was referenced, a modern OS is able to see that you have a file open for sequential access and can reasonably predict that you’ll be fetching additional sectors once you’ve consumed those you have now. Thus it can “pre-fetch” the next several (dozen) sectors.

And any more it’s often better to not have a file contiguous. On a (large) system where the file system is spread across multiple drives a file can actually be accessed faster if it is “spread” as well, since multiple disks can be seeking the file simultaneously.

I defragment every 2-3 years, whether my box needs it or not.

[I’ll add that the important thing is not so much whether the data on the disk gets defragmented as whether the free space does. FAT was terrible at this - unless you defragged things kept getting worse and worse until there were no two contiguous blocks of free space. Most other schemes can coalesce free space and allocate pieces in a somewhat “smart” fashion so the fragmentation reaches a certain threshold and then stabilizes, rather than getting worse and worse.]

Journeyman Geek adiciona as seguintes informações sobre sistemas de arquivos Linux:

ALL file systems fragment. ext and other Linux file systems fragment less due to the way they’re designed – to quote Wikipedia regarding the Linux Network Administrators’ Guide:

Modern Linux filesystem(s) keep fragmentation at a minimum by keeping all blocks in a file close together, even if they can’t be stored in consecutive sectors. Some filesystems, like ext3, effectively allocate the free block that is nearest to other blocks in a file. Therefore it is not necessary to worry about fragmentation in a Linux system.

I’d note though that ext4 has online defragmentation so eventually fragmentation IS an issue, even with Linux file systems.

Windows file systems have their clusters placed wherever there’s space to put them, and defrag runs around and replaces them. With Linux, files are preferentially placed where there’s enough space.

I’d note though, Windows 7 has scheduled defragmentation runs, so it isn’t really necessary to run defrag manually.

Um elemento da questão original que não foi abordada é se você deve ou não desfragmentar sua unidade flash. A desfragmentação é um processo muito intenso de leitura / gravação e deve ser evitado em dispositivos de armazenamento de estado sólido, como unidades flash e discos de estado sólido (SSDs). Para obter mais informações sobre desfragmentação, sistemas de arquivos e SSDs, confira os seguintes artigos do HTG:

  • HTG explica: Você realmente precisa Defrag seu PC?
  • HTG explica: O que é um Solid State Drive e o que eu preciso saber?
  • HTG explica: por que o Linux não precisa de desfragmentação

Tem algo a acrescentar à explicação? Soe fora nos comentários. Quer ler mais respostas de outros usuários do Stack Exchange com experiência em tecnologia? Confira o tópico de discussão completo aqui.

Recomendado: