cp RUSTFS_CONFIG .configmake LLVM=1sudo make modules_install && sudo make installsudo rebootSelect your newly built kernel in GRUB- Create a disk image:
dd bs=4096 count=1000 if=/dev/zero of=ez_disk.img - Format the disk image:
fs/rustezfs/format_disk_as_ezfs ez_disk.img 1000 - Find a loop device:
sudo losetup --find --show ez_disk.img - Load file system:
sudo insmod fs/rustezfs/rustezfs.ko - Create mount point:
mkdir /mnt/ez - Mount file system:
sudo mount -t rustezfs /dev/loop<N> /mnt/ez
if you land in trouble you can follow this guide for kernel development: https://w4118.github.io/