bir dosya sistemi en son ne zaman kontrol edildi?


19

Bir dosya sisteminin en son ne zaman fsck'd olduğunu bana hangi komut söyleyebilir? Bir randevu iyi olurdu, ama son fsck'ten beri bağ sayısı için razı olurdum.

Bunu her yerde fsck *, lsattr ve stat'de aradım ve görmüyorum.

Yanıtlar:


17

tune2fs -l ex için bu bilgileri verir.

sudo tune2fs -l /dev/sda1 | grep "Last checked"


bu yalnızca ext2 / ext3 / ext4 dosya sistemlerinde çalışır.
Jens Timmerman


7

Bunun dışında tune2fs -l, dumpe2fssize şu bilgileri de verecektir:

dumpe2fs /dev/sda1 | grep "Last Checked"
dumpe2fs /dev/sda1 | grep "Mount Count"

6

Herkese teşekkürler! Ve reiserfs için bağ debugreiserfssayısı ve son fsck çalışma tarihini gösteren bulundu .


0

eğer lvm kullanıyorsa

tune2fs -l /dev/sda5 | egrep -i "mount count|Check interval|Last|Next"

ile başarısız olacak:

tune2fs: Bad magic number in super-block while trying to open /dev/sda5

biri böyle yapmak zorunda kalacak:

tune2fs -l /dev/hostname-vg/root | egrep -i "mount count|Check interval|Last|Next"
Last mounted on:          /
Last mount time:          Wed Sep  4 17:45:12 2019
Last write time:          Wed Sep  4 17:45:10 2019
Mount count:              20
Maximum mount count:      -1
Last checked:             Fri Aug 30 16:09:19 2019
Check interval:           0 (<none>)
Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.