<div dir="auto">It was a kernel module:<div dir="auto"><br></div><div dir="auto"><pre style="white-space:pre-wrap">#############################################
#
# Build Paragon ReFS kernel module
#</pre><pre style="white-space:pre-wrap">
paragon_refs_tar_gz=${work_dir}/Paragon-*-ReFS-Linux.tar.gz

function build-paragon-refs {
    local paragon_refs_src_dir=${work_dir}/paragon-src-refs

    if [ -f ${paragon_refs_tar_gz} ]; then
        mkdir -p ${paragon_refs_src_dir} || error-exit
        tar xf ${paragon_refs_tar_gz} -C ${paragon_refs_src_dir} || error-exit

        ( cd ${paragon_refs_src_dir} && ./configure --with-modulename=ReFS --with-ks-dir=${kernel_src_dir} --with-kernelversion=${KERNEL_VERSION} ) || error-exit
        ( cd ${paragon_refs_src_dir} && make driver ) || error-exit

        mkdir -p ${SUPERMIN_MODULES}/kernel/fs/ReFS || error-exit
        cp -f ${paragon_refs_src_dir}/ReFS.ko ${SUPERMIN_MODULES}/kernel/fs/ReFS/ || error-exit
        depmod -a --basedir ${kernel_modules_dir} ${KERNEL_VERSION} || error-exit

        echo 'alias fs_ReFS ReFS' > /etc/modprobe.d/ReFS.conf || error-exit
        echo '/etc/modprobe.d/ReFS.conf' > ${supermin_dir}/modprobe.d-ReFS-hostfiles || error-exit
    fi
}</pre><br><div data-smartmail="gmail_signature" dir="auto">--<br>  Mykola Ivanets</div></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">ср, 5 січ. 2022, 21:36 користувач Richard W.M. Jones <<a href="mailto:rjones@redhat.com">rjones@redhat.com</a>> пише:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">On Wed, Jan 05, 2022 at 09:27:34PM +0200, Nikolay Ivanets wrote:<br>
> p.s. Previously you could download the driver directly from their website. Now<br>
> you have to contact them. :-(<br>
> <br>
> --<br>
>   Mykola Ivanets<br>
> <br>
> ср, 5 січ. 2022, 21:21 користувач Nikolay Ivanets <<a href="mailto:stenavin@gmail.com" target="_blank" rel="noreferrer">stenavin@gmail.com</a>> пише:<br>
> <br>
>     There is ReFS driver for Linux by Paragon: <a href="https://www.paragon-software.com" rel="noreferrer noreferrer" target="_blank">https://www.paragon-software.com</a><br>
>     /home/refs-linux/<br>
> <br>
>     You are unlikely to include it onto libguestfs (it is proprietary and<br>
>     likely there are license restrictions) but I successfully used it my own to<br>
>     read ReFS file system from with libguestfs.<br>
<br>
Thanks - I didn't know aboutu this.<br>
<br>
Do you recall what they are providing?  eg. Kernel module, userspace<br>
FUSE binary, etc?<br>
<br>
Rich.<br>
<br>
-- <br>
Richard Jones, Virtualization Group, Red Hat <a href="http://people.redhat.com/~rjones" rel="noreferrer noreferrer" target="_blank">http://people.redhat.com/~rjones</a><br>
Read my programming and virtualization blog: <a href="http://rwmj.wordpress.com" rel="noreferrer noreferrer" target="_blank">http://rwmj.wordpress.com</a><br>
Fedora Windows cross-compiler. Compile Windows programs, test, and<br>
build Windows installers. Over 100 libraries supported.<br>
<a href="http://fedoraproject.org/wiki/MinGW" rel="noreferrer noreferrer" target="_blank">http://fedoraproject.org/wiki/MinGW</a><br>
<br>
</blockquote></div>