Can NTFS partitions be defragged within Linux? Does fsck work for this?
(Here and there I've seen a recommendation to use fsck -t ntfs --kerneldefrag /dev/XXX. Would this work?)
Asked
Active
Viewed 9,920 times
12
emacsomancer
- 499
- 6
- 18
2 Answers
11
There is a universal tool that can do defragmentation on linux called shake. You can download the source, or for Ubuntu users there's a PPA (the shake package in the official repository is unrelated).
I've just tested it on an NTFS filesystem mounted using ntfs-3g and it seemed to work without problems (no errors, the verbose output looks typical). So probably is filesystem-independent... Almost, since it can make use of extended attributes. To work without making use of those, you should use the -X option. Try using
shake --old=0 -v -X /some/directory/
From my experience, it has to be run as root.
Eborbob
- 123
- 5
rozcietrzewiacz
- 38,754
- 9
- 94
- 102
0
there is no such tool for linux.
you have to boot windows for that.
kuhkatz
- 366
- 2
- 2
-
1Where does the recommendation about using `fsck` come from, I wonder. – emacsomancer May 29 '11 at 16:55
-
2@BeSlayed an idiot or a jokester? – psusi May 30 '11 at 15:12
-
The answer is at least imprecise. True, there is probably no such tool that does this **at low level**, but defragmentation can be performed at higher level to a mounted filesystem (probably any). – rozcietrzewiacz Aug 05 '11 at 11:47
-
Mighty google says Ultra Defrag is being ported: http://b.andre.pagesperso-orange.fr/advanced-ntfs-3g.html – con-f-use Feb 03 '13 at 10:37