What software is available to de-fragment Ubuntu filesystems?

I would like to defragment Ubuntu; however, I cannot find software that I can download. What is available?


Solution 1:

There is no good way to defragment Ubuntu, because it doesn't have a fragmenting filesystem like NTFS on Windows; i.e., there is no need to defragment. Take a look at Why is defragmentation unnecessary?

Solution 2:

The current default filesystem for Ubuntu is EXT4. This does not normally need de-fragmentation (by design).

kernel.org > Ext4 Howto

Ext4 was released as a functionally complete and stable filesystem in Linux 2.6.28, and it's getting included in all the modern distros (in some cases as the default fs), so if you are using a modern distro, it's possible that you already have Ext4 support and you don't need to modify your system to run Ext4.

And their reference to defragmentation:

Online defragmentation

(This feature is being developed and will be included in future releases). While delayed allocation, extents and multiblock allocation help to reduce the fragmentation, with usage filesystems can still fragment. For example: You write three files in a directory and continually on the disk. Some day you need to update the file of the middle, but the updated file has grown a bit, so there's not enough room for it. You have no option but fragment the excess of data to another place of the disk, which will cause a seek, or allocate the updated file continually in another place, far from the other two files, resulting in seeks if an application needs to read all the files on a directory (say, a file manager doing thumbnails on a directory full of images). Besides, the filesystem can only care about certain types of fragmentation, it can't know, for example, that it must keep all the boot-related files contiguous, because it doesn't know which files are boot-related. To solve this issue, Ext4 will support online defragmentation, and there's a e4defrag tool which can defragment individual files or the whole filesystem.


Still want to defrag ..

Check out: polishlinux.org > Ext4 defragmentation with e4defrag

To begin playing with e4defrag we must start compile of new kernel with patches needed to carry out the defragmentation. Below you will find a short description of that process, and if you would not like to use all those experimental patches for Ext4, then you should be interested in these seven only: ..