| fsck.f2fs
Проверка файловой системы F2FS Тип файла: команда Рус usage: fsck.f2fs [options] device
[options]:
-a check/fix potential corruption, reported by f2fs
-c <num-cache-entry> set number of cache entries (default 0)
-m <max-hash-collision> set max cache hash collision (default 16)
-C encoding[:flag1,flag2] Set options for enabling casefolding
-d debug level [default:0]
-f check/fix entire partition
-g add default options
-l show superblock/checkpoint
-O feature1[feature2,feature3,...] e.g. "encrypt"
-p preen mode [default:0 the same as -a [1]]
-S sparse_mode
-t show directory tree
-q preserve quota limits
-y fix all the time
-V print the version number and exit
--dry-run do not really fix corruptions
--no-kernel-check skips detecting kernel change
--kernel-check checks kernel change
--debug-cache to debug cache when -c is used Комментарии https://wiki.archlinux.org/title/F2FS
F2FS (Flash-Friendly File System) — это файловая система, предназначенная
для флэш-памяти на основе NAND, оснащенной Flash Translation Layer.
В отличие от JFFS или UBIFS, он полагается на FTL для управления распределением записи.
Проверка и исправление файловых систем F2FS выполняются с помощью fsck.f2fs
предоставляемых f2fs-tools . Чтобы проверить файловую систему, выполните
# fsck.f2fs /dev/sdxY
В зависимости от результата смотрите fsck.f2fs(8) для доступных переключателей
для устранения несоответствий.
Например:
# fsck.f2fs -f /dev/sdxY
|
|