How To Install f2fs-tools on Fedora 36
Introduction
In this tutorial we learn how to install f2fs-tools
on Fedora 36.
What is f2fs-tools
NAND flash memory-based storage devices, such as SSD, and SD cards, have been widely being used for ranging from mobile to server systems. Since they are known to have different characteristics from the conventional rotational disks,a file system, an upper layer to the storage device, should adapt to the changes from the sketch. F2FS is a new file system carefully designed for the NAND flash memory-based storage devices. We chose a log structure file system approach, but we tried to adapt it to the new form of storage. Also we remedy some known issues of the very old log structured file system, such as snowball effect of wandering tree and high cleaning overhead. Because a NAND-based storage device shows different characteristics according to its internal geometry or flash memory management scheme aka FTL, we add various parameters not only for configuring on-disk layout, but also for selecting allocation and cleaning algorithms.
We can use yum
or dnf
to install f2fs-tools
on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install f2fs-tools.
Install f2fs-tools on Fedora 36 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install f2fs-tools
using dnf
by running the following command:
sudo dnf -y install f2fs-tools
Install f2fs-tools on Fedora 36 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install f2fs-tools
using yum
by running the following command:
sudo yum -y install f2fs-tools
How To Uninstall f2fs-tools on Fedora 36
To uninstall only the f2fs-tools
package we can use the following command:
sudo dnf remove f2fs-tools
f2fs-tools Package Contents on Fedora 36
/usr/lib/.build-id
/usr/lib/.build-id/68
/usr/lib/.build-id/68/cd880360483110c5c85d01a13471a5c183dea9
/usr/lib/.build-id/73
/usr/lib/.build-id/73/2e7948a0e1d5864da5e1ba695a9c58e3c67602
/usr/lib/.build-id/7b
/usr/lib/.build-id/7b/2b0185e4578b3bafcf3c0e1648239865e9e63d
/usr/lib/.build-id/7b/3106d163618e4039024a047f76dd934284639d
/usr/lib/.build-id/81
/usr/lib/.build-id/81/2a5d20d4dd08ca1e7784690f0ba7a231a8e6fc
/usr/lib/.build-id/ad
/usr/lib/.build-id/ad/0443eeaeb6a165d39988c84b71d24cb6e67090
/usr/lib/.build-id/d3
/usr/lib/.build-id/d3/d9c53bc66ceb119f3c4e53fb57ef89d74362d6
/usr/lib/.build-id/de
/usr/lib/.build-id/de/3827aaadda5b6f3fb9bfa64f964baf8a4a846d
/usr/lib/.build-id/e6
/usr/lib/.build-id/e6/3ec044c283ecb6ba60e007b364ba1d953d6a8b
/usr/lib/.build-id/f4
/usr/lib/.build-id/f4/eed337826aba71998b818dc69ab7e076c4f492
/usr/lib/libf2fs.so.8
/usr/lib/libf2fs.so.8.0.0
/usr/lib/libf2fs_format.so.7
/usr/lib/libf2fs_format.so.7.0.0
/usr/sbin/defrag.f2fs
/usr/sbin/dump.f2fs
/usr/sbin/f2fs_io
/usr/sbin/f2fscrypt
/usr/sbin/f2fstat
/usr/sbin/fibmap.f2fs
/usr/sbin/fsck.f2fs
/usr/sbin/mkfs.f2fs
/usr/sbin/parse.f2fs
/usr/sbin/resize.f2fs
/usr/sbin/sg_write_buffer
/usr/sbin/sload.f2fs
/usr/share/doc/f2fs-tools
/usr/share/doc/f2fs-tools/AUTHORS
/usr/share/doc/f2fs-tools/ChangeLog
/usr/share/licenses/f2fs-tools
/usr/share/licenses/f2fs-tools/COPYING
/usr/share/man/man8/defrag.f2fs.8.gz
/usr/share/man/man8/dump.f2fs.8.gz
/usr/share/man/man8/f2fs_io.8.gz
/usr/share/man/man8/f2fscrypt.8.gz
/usr/share/man/man8/fsck.f2fs.8.gz
/usr/share/man/man8/mkfs.f2fs.8.gz
/usr/share/man/man8/resize.f2fs.8.gz
/usr/share/man/man8/sload.f2fs.8.gz
References
Summary
In this tutorial we learn how to install f2fs-tools
on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).
title: “How To Install f2fs-tools on Fedora 36” linkTitle: “f2fs-tools” type: “docs” description: “In this tutorial we learn how to install f2fs-tools in Fedora 36. f2fs-tools is Tools for Flash-Friendly File System (F2FS)” date: “2022-08-17” lastmod: “2022-08-17” #image: /images/fedora/36/f2fs-tools-featured.png
Introduction
In this tutorial we learn how to install f2fs-tools
on Fedora 36.
What is f2fs-tools
NAND flash memory-based storage devices, such as SSD, and SD cards, have been widely being used for ranging from mobile to server systems. Since they are known to have different characteristics from the conventional rotational disks,a file system, an upper layer to the storage device, should adapt to the changes from the sketch. F2FS is a new file system carefully designed for the NAND flash memory-based storage devices. We chose a log structure file system approach, but we tried to adapt it to the new form of storage. Also we remedy some known issues of the very old log structured file system, such as snowball effect of wandering tree and high cleaning overhead. Because a NAND-based storage device shows different characteristics according to its internal geometry or flash memory management scheme aka FTL, we add various parameters not only for configuring on-disk layout, but also for selecting allocation and cleaning algorithms.
We can use yum
or dnf
to install f2fs-tools
on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install f2fs-tools.
Install f2fs-tools on Fedora 36 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install f2fs-tools
using dnf
by running the following command:
sudo dnf -y install f2fs-tools
Install f2fs-tools on Fedora 36 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install f2fs-tools
using yum
by running the following command:
sudo yum -y install f2fs-tools
How To Uninstall f2fs-tools on Fedora 36
To uninstall only the f2fs-tools
package we can use the following command:
sudo dnf remove f2fs-tools
f2fs-tools Package Contents on Fedora 36
/usr/lib/.build-id
/usr/lib/.build-id/31
/usr/lib/.build-id/31/c459ab4225eebcd4573a30f4669fe55bcd40d4
/usr/lib/.build-id/3b
/usr/lib/.build-id/3b/6c6b77dd5505203219c6f5b2e515d34072d2a2
/usr/lib/.build-id/3c
/usr/lib/.build-id/3c/be99110e678cdba38fa109ae93db992148909b
/usr/lib/.build-id/49
/usr/lib/.build-id/49/f20caa1df259d1d840171d933dc5e8644b6f5a
/usr/lib/.build-id/67
/usr/lib/.build-id/67/6fd2db369b28fd7c233d721f5e6ad98ef33edc
/usr/lib/.build-id/89
/usr/lib/.build-id/89/b59872c9855a18a1ff3dee5ecf01d33efcec30
/usr/lib/.build-id/94
/usr/lib/.build-id/94/433e2d2dd08123bb8f910c39a6659f371db824
/usr/lib/.build-id/b6
/usr/lib/.build-id/b6/6188e41b879500b2cd7f49ffaeff0bb9466b75
/usr/lib/.build-id/d2
/usr/lib/.build-id/d2/508a61496386055c7ae0479ddd212a2f2c594e
/usr/lib/.build-id/d4
/usr/lib/.build-id/d4/a2b004f1a581b459a28a5146f8c884a06c020d
/usr/lib64/libf2fs.so.8
/usr/lib64/libf2fs.so.8.0.0
/usr/lib64/libf2fs_format.so.7
/usr/lib64/libf2fs_format.so.7.0.0
/usr/sbin/defrag.f2fs
/usr/sbin/dump.f2fs
/usr/sbin/f2fs_io
/usr/sbin/f2fscrypt
/usr/sbin/f2fstat
/usr/sbin/fibmap.f2fs
/usr/sbin/fsck.f2fs
/usr/sbin/mkfs.f2fs
/usr/sbin/parse.f2fs
/usr/sbin/resize.f2fs
/usr/sbin/sg_write_buffer
/usr/sbin/sload.f2fs
/usr/share/doc/f2fs-tools
/usr/share/doc/f2fs-tools/AUTHORS
/usr/share/doc/f2fs-tools/ChangeLog
/usr/share/licenses/f2fs-tools
/usr/share/licenses/f2fs-tools/COPYING
/usr/share/man/man8/defrag.f2fs.8.gz
/usr/share/man/man8/dump.f2fs.8.gz
/usr/share/man/man8/f2fs_io.8.gz
/usr/share/man/man8/f2fscrypt.8.gz
/usr/share/man/man8/fsck.f2fs.8.gz
/usr/share/man/man8/mkfs.f2fs.8.gz
/usr/share/man/man8/resize.f2fs.8.gz
/usr/share/man/man8/sload.f2fs.8.gz
References
Summary
In this tutorial we learn how to install f2fs-tools
on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).