mastodon.sdf.org is part of the decentralized social network powered by Mastodon.
"I appreciate SDF but it's a general-purpose server and the name doesn't make it obvious that it's about art." - Eugen Rochko

Administered by:

Server stats:

2.5K
active users

Learn more

So, somebody wrote a program that converts, in-place, an volume into .

It even keeps an image of the original NTFS volume as a file in the resulting btrfs volume. This can be used to undo the conversion or deleted to free up space and make the conversion permanent.

That is absolutely wild.

github.com/maharmstone/ntfs2bt

GitHub - maharmstone/ntfs2btrfsGitHub
argv minus one

Btrfs is copy-on-write, so keeping an image of the original NTFS does *not* involve duplicating every file on it. The blocks of the NTFS image are shared with the files on the new btrfs.

Which, again, is wild. One file's contents can be *part of* another, much larger file's contents, without duplication (until one of them is written to).

@argv_minus_one Well for me it's kind of normal but I've been a ZFS user since at least 2007, so Copy-on-Write abilities are something I'm familiar with.