Slashdot Mirror


GRUB 1.99 Released With Support For ZFS and BtrFS

kthreadd writes "GNU GRUB has been updated to version 1.99. Among the many improvements are support for two new filesystems, BtrFS and ZFS. For Linux users this means that it's now possible to move to BtrFS entirely and not use it only for non-bootable volumes."

1 of 175 comments (clear)

  1. Re:Does this matter? by zsitvaij · · Score: 5, Informative

    To obtain all of the ext4 performance, tweaks, and reliability benefits, you MUST perform an ext4 format.

    That's not entirely correct. With two commands, you get a full conversion from ext3 to ext4 without a reformat, leaving your data in place:
    tune2fs -O extents,uninit_bg,dir_index /dev/DEV
    e2fsck -fDC0 /dev/DEV

    (On an unmounted filesystem, obviously. Source. )