如何列出可用的 zfs 压缩算法?

如何列出可用的 zfs 压缩算法?

我在生产系统上有一个 zfs 池,我想看看是否可以使用 zstd 压缩而不是当前的 gzip 设置。

有没有办法列出可用的压缩选项?

答案1

我找到了解决方案:只需运行zfs get即可显示可用选项。就我而言,答案是否定的 - zstd 不可用:

# zfs get
missing property argument
usage:
        get [-rHp] [-d max] [-o "all" | field[,...]]
            [-t type[,...]] [-s source[,...]]
            <"all" | property[,...]> [filesystem|volume|snapshot|bookmark] ...

The following properties are supported:

        PROPERTY       EDIT  INHERIT   VALUES
    enter code here
[...]
compression     YES      YES   on | off | lzjb | gzip | gzip-[1-9] | zle | lz4
[...]

相关内容