/etc/fstab and <fsck>

Hi,

I installed Manjaro in 2018 with Manjaro Architect and I have noticed that file systems checks <fsck> was not enabled.

When backuping my home folder with Grsync a few days ago, some errors show up and I was able to fix them using fsck on safe mode.

I have edited my /etc/fstab, enabled <fsck> and set up a frequency check with tune2fs on all my Ext4 partitions.

I was wondering why this is not enabled by default (if it’s relevant) ?

Think this is handled by systemd so no hook needed.

I dont have one either.
My fsck doesnt slow down my boot. It only runs when there was an issue.
(such as a failure, a quick reboot, etc)
It was probably set in some similar way … or if not as fancy as that, simply done outside of fstab.
(Such as by systemd hook as mentioned above)
I cant think of any manjaro edition (or architect profile) that simply disables fsck by default.

(maybe you can check your systemd services with something like systemctl --full | grep fsck)

For an example you can see this:
https://wiki.archlinux.org/index.php/Silent_boot#fsck

Hi,

Some more informations:

cat /etc/mkinitcpio.conf
# vim:set ft=sh
# MODULES
# The following modules are loaded before any boot hooks are
# run.  Advanced users may wish to specify all system modules
# in this array.  For instance:
#     MODULES=(piix ide_disk reiserfs)
MODULES=()

# BINARIES
# This setting includes any additional binaries a given user may
# wish into the CPIO image.  This is run last, so it may be used to
# override the actual binaries included by a given hook
# BINARIES are dependency parsed, so you may safely ignore libraries
BINARIES=()

# FILES
# This setting is similar to BINARIES above, however, files are added
# as-is and are not parsed in any way.  This is useful for config files.
FILES=()

# HOOKS
# This is the most important setting in this file.  The HOOKS control the
# modules and scripts added to the image, and what happens at boot time.
# Order is important, and it is recommended that you do not change the
# order in which HOOKS are added.  Run 'mkinitcpio -H <hook name>' for
# help on a given hook.
# 'base' is _required_ unless you know precisely what you are doing.
# 'udev' is _required_ in order to automatically load modules
# 'filesystems' is _required_ unless you specify your fs modules in MODULES
# Examples:
##   This setup specifies all modules in the MODULES setting above.
##   No raid, lvm2, or encrypted root is needed.
#    HOOKS=(base)
#
##   This setup will autodetect all modules for your system and should
##   work as a sane default
#    HOOKS=(base udev autodetect block filesystems)
#
##   This setup will generate a 'full' image which supports most systems.
##   No autodetection is done.
#    HOOKS=(base udev block filesystems)
#
##   This setup assembles a pata mdadm array with an encrypted root FS.
##   Note: See 'mkinitcpio -H mdadm' for more information on raid devices.
#    HOOKS=(base udev block mdadm encrypt filesystems)
#
##   This setup loads an lvm2 volume group on a usb device.
#    HOOKS=(base udev block lvm2 filesystems)
#
##   NOTE: If you have /usr on a separate partition, you MUST include the
#    usr, fsck and shutdown hooks.
HOOKS=(base udev autodetect modconf block filesystems keyboard fsck)

# COMPRESSION
# Use this to compress the initramfs image. By default, gzip compression
# is used. Use 'cat' to create an uncompressed image.
#COMPRESSION="gzip"
#COMPRESSION="bzip2"
#COMPRESSION="lzma"
#COMPRESSION="xz"
#COMPRESSION="lzop"
#COMPRESSION="lz4"

# COMPRESSION_OPTIONS
# Additional options for the compressor
#COMPRESSION_OPTIONS=()
cat /etc/fstab
# /dev/nvme0n1p2
UUID=22894444-57e9-4a63-b5ba-44e9f5bc8750	/         	ext4      	rw,noatime,data=ordered	0 1

# /dev/sda1
UUID=fd4157f6-965f-4864-96e5-36e4891c5584	/home     	ext4      	rw,noatime,data=ordered	0 2

# /dev/nvme0n1p1
UUID=3081-F516      	/boot/efi 	vfat      	rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,utf8,errors=remount-ro	0 2

# /swapfile
/swapfile none swap sw 0 0
systemctl list-units | grep fsck
systemd-fsck@dev-disk-by\x2duuid-3081\x2dF516.service                                     loaded active exited    File System Check on /dev/disk/by-uuid/3081-F516                             
systemd-fsck@dev-disk-by\x2duuid-fd4157f6\x2d965f\x2d4864\x2d96e5\x2d36e4891c5584.service loaded active exited    File System Check on /dev/disk/by-uuid/fd4157f6-965f-4864-96e5-36e4891c5584  
system-systemd\x2dfsck.slice                                                              loaded active active    system-systemd\x2dfsck.slice
journalctl | grep systemd-fsck
oct. 03 10:38:45 manjaro systemd-fsck[287]: fsck.fat 4.1 (2017-01-24)
oct. 03 10:38:45 manjaro systemd-fsck[287]: /dev/nvme0n1p1: 5 files, 72/140520 clusters
oct. 03 10:38:45 manjaro audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-3081\x2dF516 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 03 10:38:45 manjaro systemd-fsck[288]: /dev/sda1 : propre, 451673/61054976 fichiers, 35102571/244190636 blocs
oct. 03 10:38:45 manjaro audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-fd4157f6\x2d965f\x2d4864\x2d96e5\x2d36e4891c5584 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 03 10:42:28 manjaro systemd[1]: systemd-fsck@dev-disk-by\x2duuid-3081\x2dF516.service: Succeeded.
oct. 03 10:42:28 manjaro audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-3081\x2dF516 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 03 10:42:28 manjaro systemd[1]: systemd-fsck@dev-disk-by\x2duuid-fd4157f6\x2d965f\x2d4864\x2d96e5\x2d36e4891c5584.service: Succeeded.
oct. 03 10:42:28 manjaro audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-fd4157f6\x2d965f\x2d4864\x2d96e5\x2d36e4891c5584 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 03 10:42:44 manjaro systemd-fsck[304]: fsck.fat 4.1 (2017-01-24)
oct. 03 10:42:44 manjaro systemd-fsck[304]: /dev/nvme0n1p1: 5 files, 72/140520 clusters
oct. 03 10:42:44 manjaro audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-3081\x2dF516 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 03 10:42:44 manjaro systemd-fsck[305]: /dev/sda1 : propre, 451679/61054976 fichiers, 35102620/244190636 blocs
oct. 03 10:42:44 manjaro audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-fd4157f6\x2d965f\x2d4864\x2d96e5\x2d36e4891c5584 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 03 10:54:19 manjaro systemd[1]: systemd-fsck@dev-disk-by\x2duuid-3081\x2dF516.service: Succeeded.
oct. 03 10:54:19 manjaro audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-3081\x2dF516 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 03 10:54:20 manjaro systemd[1]: systemd-fsck@dev-disk-by\x2duuid-fd4157f6\x2d965f\x2d4864\x2d96e5\x2d36e4891c5584.service: Succeeded.
oct. 03 10:54:20 manjaro audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-fd4157f6\x2d965f\x2d4864\x2d96e5\x2d36e4891c5584 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 03 10:54:36 manjaro systemd-fsck[283]: fsck.fat 4.1 (2017-01-24)
oct. 03 10:54:36 manjaro systemd-fsck[283]: /dev/nvme0n1p1: 5 files, 72/140520 clusters
oct. 03 10:54:36 manjaro audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-3081\x2dF516 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 03 10:54:36 manjaro systemd-fsck[284]: /dev/sda1 : propre, 451677/61054976 fichiers, 35106887/244190636 blocs (vérification dans 5 montages)
oct. 03 10:54:36 manjaro audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-fd4157f6\x2d965f\x2d4864\x2d96e5\x2d36e4891c5584 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 03 10:59:21 manjaro systemd[1]: systemd-fsck@dev-disk-by\x2duuid-3081\x2dF516.service: Succeeded.
oct. 03 10:59:21 manjaro audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-3081\x2dF516 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 03 10:59:21 manjaro systemd[1]: systemd-fsck@dev-disk-by\x2duuid-fd4157f6\x2d965f\x2d4864\x2d96e5\x2d36e4891c5584.service: Succeeded.
oct. 03 10:59:21 manjaro audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-fd4157f6\x2d965f\x2d4864\x2d96e5\x2d36e4891c5584 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 03 12:31:17 manjaro systemd-fsck[304]: fsck.fat 4.1 (2017-01-24)
oct. 03 12:31:17 manjaro systemd-fsck[304]: /dev/nvme0n1p1: 5 files, 72/140520 clusters
oct. 03 12:31:17 manjaro audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-3081\x2dF516 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 03 12:31:17 manjaro systemd-fsck[305]: /dev/sda1 : propre, 451683/61054976 fichiers, 35106974/244190636 blocs (vérification dans 4 montages)
oct. 03 12:31:18 manjaro audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-fd4157f6\x2d965f\x2d4864\x2d96e5\x2d36e4891c5584 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 03 12:42:53 manjaro systemd[1]: systemd-fsck@dev-disk-by\x2duuid-3081\x2dF516.service: Succeeded.
oct. 03 12:42:53 manjaro audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-3081\x2dF516 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 03 12:42:53 manjaro systemd[1]: systemd-fsck@dev-disk-by\x2duuid-fd4157f6\x2d965f\x2d4864\x2d96e5\x2d36e4891c5584.service: Succeeded.
oct. 03 12:42:53 manjaro audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-fd4157f6\x2d965f\x2d4864\x2d96e5\x2d36e4891c5584 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 03 12:43:10 manjaro systemd-fsck[298]: fsck.fat 4.1 (2017-01-24)
oct. 03 12:43:10 manjaro systemd-fsck[298]: /dev/nvme0n1p1: 5 files, 72/140520 clusters
oct. 03 12:43:10 manjaro audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-3081\x2dF516 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 03 12:43:10 manjaro systemd-fsck[299]: /dev/sda1 : propre, 451684/61054976 fichiers, 35107038/244190636 blocs (vérification dans 3 montages)
oct. 03 12:43:10 manjaro audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-fd4157f6\x2d965f\x2d4864\x2d96e5\x2d36e4891c5584 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 03 12:44:25 manjaro systemd[1]: systemd-fsck@dev-disk-by\x2duuid-3081\x2dF516.service: Succeeded.
oct. 03 12:44:25 manjaro audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-3081\x2dF516 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 03 12:44:25 manjaro systemd[1]: systemd-fsck@dev-disk-by\x2duuid-fd4157f6\x2d965f\x2d4864\x2d96e5\x2d36e4891c5584.service: Succeeded.
oct. 03 12:44:25 manjaro audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-fd4157f6\x2d965f\x2d4864\x2d96e5\x2d36e4891c5584 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 03 12:44:42 manjaro systemd-fsck[290]: fsck.fat 4.1 (2017-01-24)
oct. 03 12:44:42 manjaro systemd-fsck[290]: /dev/nvme0n1p1: 5 files, 72/140520 clusters
oct. 03 12:44:42 manjaro audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-3081\x2dF516 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 03 12:44:42 manjaro kernel: audit: type=1130 audit(1601721882.545:6): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-3081\x2dF516 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 03 12:44:42 manjaro systemd-fsck[291]: /dev/sda1 : propre, 451684/61054976 fichiers, 35107038/244190636 blocs (vérification dans 2 montages)
oct. 03 12:44:42 manjaro audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-fd4157f6\x2d965f\x2d4864\x2d96e5\x2d36e4891c5584 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 03 12:44:42 manjaro kernel: audit: type=1130 audit(1601721882.788:7): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-fd4157f6\x2d965f\x2d4864\x2d96e5\x2d36e4891c5584 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 03 12:45:25 manjaro systemd[1]: systemd-fsck@dev-disk-by\x2duuid-3081\x2dF516.service: Succeeded.
oct. 03 12:45:25 manjaro audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-3081\x2dF516 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 03 12:45:25 manjaro systemd[1]: systemd-fsck@dev-disk-by\x2duuid-fd4157f6\x2d965f\x2d4864\x2d96e5\x2d36e4891c5584.service: Succeeded.
oct. 03 12:45:25 manjaro audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-fd4157f6\x2d965f\x2d4864\x2d96e5\x2d36e4891c5584 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 03 12:45:42 manjaro systemd-fsck[299]: fsck.fat 4.1 (2017-01-24)
oct. 03 12:45:42 manjaro systemd-fsck[299]: /dev/nvme0n1p1: 5 files, 72/140520 clusters
oct. 03 12:45:42 manjaro audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-3081\x2dF516 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 03 12:45:42 manjaro kernel: audit: type=1130 audit(1601721942.531:8): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-3081\x2dF516 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 03 12:45:42 manjaro systemd-fsck[300]: /dev/sda1 : propre, 451685/61054976 fichiers, 35107040/244190636 blocs (vérification lors du prochain montage)
oct. 03 12:45:42 manjaro audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-fd4157f6\x2d965f\x2d4864\x2d96e5\x2d36e4891c5584 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 03 12:45:42 manjaro kernel: audit: type=1130 audit(1601721942.768:9): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-fd4157f6\x2d965f\x2d4864\x2d96e5\x2d36e4891c5584 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 03 12:46:28 manjaro systemd[1]: systemd-fsck@dev-disk-by\x2duuid-3081\x2dF516.service: Succeeded.
oct. 03 12:46:28 manjaro audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-3081\x2dF516 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 03 12:46:28 manjaro systemd[1]: systemd-fsck@dev-disk-by\x2duuid-fd4157f6\x2d965f\x2d4864\x2d96e5\x2d36e4891c5584.service: Succeeded.
oct. 03 12:46:28 manjaro audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-fd4157f6\x2d965f\x2d4864\x2d96e5\x2d36e4891c5584 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 03 12:46:45 manjaro systemd-fsck[302]: fsck.fat 4.1 (2017-01-24)
oct. 03 12:46:45 manjaro systemd-fsck[302]: /dev/nvme0n1p1: 5 files, 72/140520 clusters
oct. 03 12:46:45 manjaro audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-3081\x2dF516 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 03 12:46:45 manjaro systemd-fsck[304]: /dev/sda1 a été monté 30 fois sans avoir été vérifié, vérification forcée.
oct. 03 12:46:50 manjaro systemd-fsck[304]: /dev/sda1: L'arbre d'extent de l'i-noeud 38535990 (au niveau 2) pourrait être plus étroit. IGNORÉ.
oct. 03 12:46:50 manjaro systemd-fsck[304]: /dev/sda1: L'arbre d'extent de l'i-noeud 38669410 (au niveau 1) pourrait être plus court. IGNORÉ.
oct. 03 12:47:05 manjaro systemd-fsck[304]: /dev/sda1 : 451686/61054976 fichiers (0.5% non contigus), 35107041/244190636 blocs
oct. 03 12:47:05 manjaro kernel: audit: type=1130 audit(1601722025.742:15): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-fd4157f6\x2d965f\x2d4864\x2d96e5\x2d36e4891c5584 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 03 12:47:05 manjaro audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-fd4157f6\x2d965f\x2d4864\x2d96e5\x2d36e4891c5584 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 03 13:37:17 manjaro systemd[1]: systemd-fsck@dev-disk-by\x2duuid-3081\x2dF516.service: Succeeded.
oct. 03 13:37:17 manjaro audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-3081\x2dF516 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 03 13:37:17 manjaro systemd[1]: systemd-fsck@dev-disk-by\x2duuid-fd4157f6\x2d965f\x2d4864\x2d96e5\x2d36e4891c5584.service: Succeeded.
oct. 03 13:37:17 manjaro audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-fd4157f6\x2d965f\x2d4864\x2d96e5\x2d36e4891c5584 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 03 18:34:26 manjaro systemd-fsck[302]: fsck.fat 4.1 (2017-01-24)
oct. 03 18:34:26 manjaro systemd-fsck[302]: /dev/nvme0n1p1: 5 files, 72/140520 clusters
oct. 03 18:34:26 manjaro audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-3081\x2dF516 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 03 18:34:26 manjaro kernel: audit: type=1130 audit(1601742866.542:6): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-3081\x2dF516 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 03 18:34:26 manjaro systemd-fsck[305]: /dev/sda1 : propre, 451721/61054976 fichiers, 36090795/244190636 blocs
oct. 03 18:34:27 manjaro audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-fd4157f6\x2d965f\x2d4864\x2d96e5\x2d36e4891c5584 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 03 18:34:27 manjaro kernel: audit: type=1130 audit(1601742867.015:7): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-fd4157f6\x2d965f\x2d4864\x2d96e5\x2d36e4891c5584 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 03 23:15:40 manjaro systemd[1]: systemd-fsck@dev-disk-by\x2duuid-3081\x2dF516.service: Succeeded.
oct. 03 23:15:40 manjaro audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-3081\x2dF516 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 03 23:15:40 manjaro systemd[1]: systemd-fsck@dev-disk-by\x2duuid-fd4157f6\x2d965f\x2d4864\x2d96e5\x2d36e4891c5584.service: Succeeded.
oct. 03 23:15:40 manjaro audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-fd4157f6\x2d965f\x2d4864\x2d96e5\x2d36e4891c5584 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 03 23:15:57 manjaro systemd-fsck[308]: fsck.fat 4.1 (2017-01-24)
oct. 03 23:15:57 manjaro systemd-fsck[308]: /dev/nvme0n1p1: 5 files, 72/140520 clusters
oct. 03 23:15:57 manjaro audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-3081\x2dF516 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 03 23:15:57 manjaro kernel: audit: type=1130 audit(1601759757.496:6): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-3081\x2dF516 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 03 23:15:57 manjaro systemd-fsck[310]: /dev/sda1 : propre, 451770/61054976 fichiers, 36112346/244190636 blocs
oct. 03 23:15:57 manjaro audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-fd4157f6\x2d965f\x2d4864\x2d96e5\x2d36e4891c5584 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 03 23:15:57 manjaro kernel: audit: type=1130 audit(1601759757.666:7): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-fd4157f6\x2d965f\x2d4864\x2d96e5\x2d36e4891c5584 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 03 23:37:27 manjaro systemd[1]: systemd-fsck@dev-disk-by\x2duuid-3081\x2dF516.service: Succeeded.
oct. 03 23:37:27 manjaro audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-3081\x2dF516 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 03 23:37:27 manjaro systemd[1]: systemd-fsck@dev-disk-by\x2duuid-fd4157f6\x2d965f\x2d4864\x2d96e5\x2d36e4891c5584.service: Succeeded.
oct. 03 23:37:27 manjaro audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-fd4157f6\x2d965f\x2d4864\x2d96e5\x2d36e4891c5584 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 03 23:37:45 manjaro systemd-fsck[302]: fsck.fat 4.1 (2017-01-24)
oct. 03 23:37:45 manjaro systemd-fsck[302]: /dev/nvme0n1p1: 5 files, 72/140520 clusters
oct. 03 23:37:45 manjaro audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-3081\x2dF516 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 03 23:37:45 manjaro systemd-fsck[303]: /dev/sda1 : propre, 451771/61054976 fichiers, 36112224/244190636 blocs
oct. 03 23:37:45 manjaro audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-fd4157f6\x2d965f\x2d4864\x2d96e5\x2d36e4891c5584 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 04 00:07:08 manjaro systemd[1]: systemd-fsck@dev-disk-by\x2duuid-3081\x2dF516.service: Succeeded.
oct. 04 00:07:08 manjaro audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-3081\x2dF516 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 04 00:07:08 manjaro systemd[1]: systemd-fsck@dev-disk-by\x2duuid-fd4157f6\x2d965f\x2d4864\x2d96e5\x2d36e4891c5584.service: Succeeded.
oct. 04 00:07:08 manjaro audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-fd4157f6\x2d965f\x2d4864\x2d96e5\x2d36e4891c5584 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 04 00:07:25 manjaro systemd-fsck[300]: fsck.fat 4.1 (2017-01-24)
oct. 04 00:07:25 manjaro systemd-fsck[300]: /dev/nvme0n1p1: 5 files, 72/140520 clusters
oct. 04 00:07:25 manjaro audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-3081\x2dF516 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 04 00:07:25 manjaro systemd-fsck[301]: /dev/sda1 : propre, 451777/61054976 fichiers, 36111801/244190636 blocs
oct. 04 00:07:25 manjaro audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-fd4157f6\x2d965f\x2d4864\x2d96e5\x2d36e4891c5584 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 04 00:10:49 manjaro systemd[1]: systemd-fsck@dev-disk-by\x2duuid-3081\x2dF516.service: Succeeded.
oct. 04 00:10:49 manjaro audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-3081\x2dF516 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 04 00:10:49 manjaro systemd[1]: systemd-fsck@dev-disk-by\x2duuid-fd4157f6\x2d965f\x2d4864\x2d96e5\x2d36e4891c5584.service: Succeeded.
oct. 04 00:10:49 manjaro audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-fd4157f6\x2d965f\x2d4864\x2d96e5\x2d36e4891c5584 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 04 10:30:57 manjaro systemd-fsck[301]: fsck.fat 4.1 (2017-01-24)
oct. 04 10:30:57 manjaro systemd-fsck[301]: /dev/nvme0n1p1: 5 files, 72/140520 clusters
oct. 04 10:30:57 manjaro audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-3081\x2dF516 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 04 10:30:57 manjaro systemd-fsck[302]: /dev/sda1 : propre, 451778/61054976 fichiers, 36111764/244190636 blocs
oct. 04 10:30:58 manjaro audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-fd4157f6\x2d965f\x2d4864\x2d96e5\x2d36e4891c5584 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 04 11:00:34 manjaro systemd[1]: systemd-fsck@dev-disk-by\x2duuid-3081\x2dF516.service: Succeeded.
oct. 04 11:00:34 manjaro audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-3081\x2dF516 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 04 11:00:34 manjaro systemd[1]: systemd-fsck@dev-disk-by\x2duuid-fd4157f6\x2d965f\x2d4864\x2d96e5\x2d36e4891c5584.service: Succeeded.
oct. 04 11:00:34 manjaro audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-fd4157f6\x2d965f\x2d4864\x2d96e5\x2d36e4891c5584 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 04 11:00:51 manjaro systemd-fsck[284]: fsck.fat 4.1 (2017-01-24)
oct. 04 11:00:51 manjaro systemd-fsck[284]: /dev/nvme0n1p1: 5 files, 72/140520 clusters
oct. 04 11:00:51 manjaro audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-3081\x2dF516 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 04 11:00:51 manjaro kernel: audit: type=1130 audit(1601802051.501:9): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-3081\x2dF516 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 04 11:00:51 manjaro systemd-fsck[285]: /dev/sda1 : propre, 451793/61054976 fichiers, 36111863/244190636 blocs
oct. 04 11:00:51 manjaro audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-fd4157f6\x2d965f\x2d4864\x2d96e5\x2d36e4891c5584 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 04 11:00:51 manjaro kernel: audit: type=1130 audit(1601802051.691:10): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-fd4157f6\x2d965f\x2d4864\x2d96e5\x2d36e4891c5584 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 04 11:11:14 manjaro systemd[1]: systemd-fsck@dev-disk-by\x2duuid-3081\x2dF516.service: Succeeded.
oct. 04 11:11:14 manjaro audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-3081\x2dF516 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 04 11:11:14 manjaro systemd[1]: systemd-fsck@dev-disk-by\x2duuid-fd4157f6\x2d965f\x2d4864\x2d96e5\x2d36e4891c5584.service: Succeeded.
oct. 04 11:11:14 manjaro audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-fd4157f6\x2d965f\x2d4864\x2d96e5\x2d36e4891c5584 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 04 11:11:31 manjaro systemd-fsck[291]: fsck.fat 4.1 (2017-01-24)
oct. 04 11:11:31 manjaro systemd-fsck[291]: /dev/nvme0n1p1: 5 files, 72/140520 clusters
oct. 04 11:11:31 manjaro audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-3081\x2dF516 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 04 11:11:31 manjaro systemd-fsck[292]: /dev/sda1 : propre, 451798/61054976 fichiers, 36116022/244190636 blocs
oct. 04 11:11:31 manjaro audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-fd4157f6\x2d965f\x2d4864\x2d96e5\x2d36e4891c5584 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 04 12:45:59 manjaro systemd[1]: systemd-fsck@dev-disk-by\x2duuid-3081\x2dF516.service: Succeeded.
oct. 04 12:45:59 manjaro systemd[1]: systemd-fsck@dev-disk-by\x2duuid-fd4157f6\x2d965f\x2d4864\x2d96e5\x2d36e4891c5584.service: Succeeded.
oct. 04 12:45:59 manjaro audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-3081\x2dF516 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 04 12:45:59 manjaro audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-fd4157f6\x2d965f\x2d4864\x2d96e5\x2d36e4891c5584 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 04 12:46:16 manjaro systemd-fsck[307]: fsck.fat 4.1 (2017-01-24)
oct. 04 12:46:16 manjaro systemd-fsck[307]: /dev/nvme0n1p1: 5 files, 72/140520 clusters
oct. 04 12:46:16 manjaro audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-3081\x2dF516 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 04 12:46:16 manjaro systemd-fsck[309]: /dev/sda1 : propre, 463703/61054976 fichiers, 36180485/244190636 blocs
oct. 04 12:46:16 manjaro audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-fd4157f6\x2d965f\x2d4864\x2d96e5\x2d36e4891c5584 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 04 17:35:33 manjaro systemd[1]: systemd-fsck@dev-disk-by\x2duuid-3081\x2dF516.service: Succeeded.
oct. 04 17:35:33 manjaro audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-3081\x2dF516 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 04 17:35:33 manjaro systemd[1]: systemd-fsck@dev-disk-by\x2duuid-fd4157f6\x2d965f\x2d4864\x2d96e5\x2d36e4891c5584.service: Succeeded.
oct. 04 17:35:33 manjaro audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-fd4157f6\x2d965f\x2d4864\x2d96e5\x2d36e4891c5584 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 04 19:56:41 manjaro systemd-fsck[294]: fsck.fat 4.1 (2017-01-24)
oct. 04 19:56:41 manjaro systemd-fsck[294]: /dev/nvme0n1p1: 5 files, 72/140520 clusters
oct. 04 19:56:41 manjaro audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-3081\x2dF516 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 04 19:56:41 manjaro systemd-fsck[295]: /dev/sda1 : propre, 463790/61054976 fichiers, 36185012/244190636 blocs
oct. 04 19:56:42 manjaro audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-fd4157f6\x2d965f\x2d4864\x2d96e5\x2d36e4891c5584 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 05 00:17:13 manjaro systemd[1]: systemd-fsck@dev-disk-by\x2duuid-3081\x2dF516.service: Succeeded.
oct. 05 00:17:13 manjaro audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-3081\x2dF516 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 05 00:17:13 manjaro systemd[1]: systemd-fsck@dev-disk-by\x2duuid-fd4157f6\x2d965f\x2d4864\x2d96e5\x2d36e4891c5584.service: Succeeded.
oct. 05 00:17:13 manjaro audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-fd4157f6\x2d965f\x2d4864\x2d96e5\x2d36e4891c5584 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 05 20:25:18 manjaro systemd-fsck[293]: fsck.fat 4.1 (2017-01-24)
oct. 05 20:25:18 manjaro systemd-fsck[293]: /dev/nvme0n1p1: 5 files, 72/140520 clusters
oct. 05 20:25:18 manjaro audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-3081\x2dF516 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 05 20:25:18 manjaro systemd-fsck[294]: /dev/sda1 : propre, 463823/61054976 fichiers, 36674296/244190636 blocs
oct. 05 20:25:19 manjaro audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-fd4157f6\x2d965f\x2d4864\x2d96e5\x2d36e4891c5584 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 05 22:54:47 manjaro systemd[1]: systemd-fsck@dev-disk-by\x2duuid-3081\x2dF516.service: Succeeded.
oct. 05 22:54:47 manjaro audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-3081\x2dF516 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 05 22:54:47 manjaro systemd[1]: systemd-fsck@dev-disk-by\x2duuid-fd4157f6\x2d965f\x2d4864\x2d96e5\x2d36e4891c5584.service: Succeeded.
oct. 05 22:54:47 manjaro audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-fd4157f6\x2d965f\x2d4864\x2d96e5\x2d36e4891c5584 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 06 18:52:11 manjaro systemd-fsck[289]: fsck.fat 4.1 (2017-01-24)
oct. 06 18:52:11 manjaro systemd-fsck[289]: /dev/nvme0n1p1: 5 files, 72/140520 clusters
oct. 06 18:52:11 manjaro audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-3081\x2dF516 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 06 18:52:11 manjaro kernel: audit: type=1130 audit(1602003131.479:10): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-3081\x2dF516 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 06 18:52:11 manjaro systemd-fsck[291]: /dev/sda1 : propre, 463854/61054976 fichiers, 36746845/244190636 blocs
oct. 06 18:52:11 manjaro audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-fd4157f6\x2d965f\x2d4864\x2d96e5\x2d36e4891c5584 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 06 23:30:18 manjaro systemd[1]: systemd-fsck@dev-disk-by\x2duuid-3081\x2dF516.service: Succeeded.
oct. 06 23:30:18 manjaro audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-3081\x2dF516 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 06 23:30:18 manjaro systemd[1]: systemd-fsck@dev-disk-by\x2duuid-fd4157f6\x2d965f\x2d4864\x2d96e5\x2d36e4891c5584.service: Succeeded.
oct. 06 23:30:18 manjaro audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-fd4157f6\x2d965f\x2d4864\x2d96e5\x2d36e4891c5584 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 07 08:10:51 manjaro systemd-fsck[289]: fsck.fat 4.1 (2017-01-24)
oct. 07 08:10:51 manjaro systemd-fsck[289]: /dev/nvme0n1p1: 5 files, 72/140520 clusters
oct. 07 08:10:51 manjaro audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-3081\x2dF516 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 07 08:10:51 manjaro kernel: audit: type=1130 audit(1602051051.499:6): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-3081\x2dF516 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 07 08:10:51 manjaro systemd-fsck[290]: /dev/sda1 : propre, 463897/61054976 fichiers, 36746644/244190636 blocs
oct. 07 08:10:51 manjaro audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-fd4157f6\x2d965f\x2d4864\x2d96e5\x2d36e4891c5584 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 07 08:10:51 manjaro kernel: audit: type=1130 audit(1602051051.982:8): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-fd4157f6\x2d965f\x2d4864\x2d96e5\x2d36e4891c5584 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 07 08:22:03 manjaro systemd[1]: systemd-fsck@dev-disk-by\x2duuid-3081\x2dF516.service: Succeeded.
oct. 07 08:22:03 manjaro audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-3081\x2dF516 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 07 08:22:04 manjaro systemd[1]: systemd-fsck@dev-disk-by\x2duuid-fd4157f6\x2d965f\x2d4864\x2d96e5\x2d36e4891c5584.service: Succeeded.
oct. 07 08:22:04 manjaro audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-fd4157f6\x2d965f\x2d4864\x2d96e5\x2d36e4891c5584 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 07 19:04:05 manjaro systemd-fsck[293]: fsck.fat 4.1 (2017-01-24)
oct. 07 19:04:05 manjaro systemd-fsck[293]: /dev/nvme0n1p1: 5 files, 72/140520 clusters
oct. 07 19:04:05 manjaro audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-3081\x2dF516 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 07 19:04:05 manjaro systemd-fsck[295]: /dev/sda1 : propre, 463907/61054976 fichiers, 36746615/244190636 blocs
oct. 07 19:04:06 manjaro audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-fd4157f6\x2d965f\x2d4864\x2d96e5\x2d36e4891c5584 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
oct. 07 19:07:11 manjaro dbus-daemon[634]: [system] Activating via systemd: service name='org.freedesktop.home1' unit='dbus-org.freedesktop.home1.service' requested by ':1.215' (uid=0 pid=2401 comm="sudo systemctl edit --full systemd-fsck-root.servi")
oct. 07 19:07:11 manjaro sudo[2401]: vcottineau : TTY=pts/0 ; PWD=/home/vcottineau ; USER=root ; COMMAND=/usr/bin/systemctl edit --full systemd-fsck-root.service
oct. 07 20:10:09 manjaro dbus-daemon[634]: [system] Activating via systemd: service name='org.freedesktop.home1' unit='dbus-org.freedesktop.home1.service' requested by ':1.412' (uid=0 pid=5277 comm="sudo systemctl edit --full systemd-fsck@.service ")
oct. 07 20:10:09 manjaro sudo[5277]: vcottineau : TTY=pts/0 ; PWD=/var/log ; USER=root ; COMMAND=/usr/bin/systemctl edit --full systemd-fsck@.service

If I understand well, I am using the fsck hook for the root partition and systemd-fsck@.service for non-root partitions.

From the Arch Wiki (fsck - ArchWiki): systemd will fsck all file systems having a fsck pass number greater than 0 (either from /etc/fstab or a user-supplied unit file).

All my partitions were having a pass number equal to 0. I had to edit manually /etc/fstab to make it equal to 1 or 2 and adjust the check frequency with tune2fs as it was set to -1 (never).

Errors reported by Grsync were all related to my home folder like .thunderbird/, .cache/ and some others. I guess that the fsck was never run because these errors were not caused by a failure or a quick reboot.

I will install Manjaro 20.1.1 in a VM to check how it’s done.

On a fresh Manjaro installation:

cat /etc/mkinitcpio.conf
# vim:set ft=sh
# MODULES
# The following modules are loaded before any boot hooks are
# run.  Advanced users may wish to specify all system modules
# in this array.  For instance:
#     MODULES=(piix ide_disk reiserfs)
MODULES=""

# BINARIES
# This setting includes any additional binaries a given user may
# wish into the CPIO image.  This is run last, so it may be used to
# override the actual binaries included by a given hook
# BINARIES are dependency parsed, so you may safely ignore libraries
BINARIES=()

# FILES
# This setting is similar to BINARIES above, however, files are added
# as-is and are not parsed in any way.  This is useful for config files.
FILES=""

# HOOKS
# This is the most important setting in this file.  The HOOKS control the
# modules and scripts added to the image, and what happens at boot time.
# Order is important, and it is recommended that you do not change the
# order in which HOOKS are added.  Run 'mkinitcpio -H <hook name>' for
# help on a given hook.
# 'base' is _required_ unless you know precisely what you are doing.
# 'udev' is _required_ in order to automatically load modules
# 'filesystems' is _required_ unless you specify your fs modules in MODULES
# Examples:
##   This setup specifies all modules in the MODULES setting above.
##   No raid, lvm2, or encrypted root is needed.
#    HOOKS=(base)
#
##   This setup will autodetect all modules for your system and should
##   work as a sane default
#    HOOKS=(base udev autodetect block filesystems)
#
##   This setup will generate a 'full' image which supports most systems.
##   No autodetection is done.
#    HOOKS=(base udev block filesystems)
#
##   This setup assembles a pata mdadm array with an encrypted root FS.
##   Note: See 'mkinitcpio -H mdadm' for more information on raid devices.
#    HOOKS=(base udev block mdadm encrypt filesystems)
#
##   This setup loads an lvm2 volume group on a usb device.
#    HOOKS=(base udev block lvm2 filesystems)
#
##   NOTE: If you have /usr on a separate partition, you MUST include the
#    usr, fsck and shutdown hooks.
HOOKS="base udev autodetect modconf block keyboard keymap filesystems"

# COMPRESSION
# Use this to compress the initramfs image. By default, gzip compression
# is used. Use 'cat' to create an uncompressed image.
#COMPRESSION="gzip"
#COMPRESSION="bzip2"
#COMPRESSION="lzma"
#COMPRESSION="xz"
#COMPRESSION="lzop"
#COMPRESSION="lz4"

# COMPRESSION_OPTIONS
# Additional options for the compressor
#COMPRESSION_OPTIONS=()
cat /etc/fstab
# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a device; this may
# be used with UUID= as a more robust way to name devices that works even if
# disks are added and removed. See fstab(5).
#
# <file system>             <mount point>  <type>  <options>  <dump>  <pass>
UUID=DBFC-4573                            /boot          vfat    defaults,noatime 0 2
UUID=14dd9c95-8a44-441e-ada7-d8d7a370ef08 /              ext4    defaults,noatime 0 1
UUID=08f829e6-a42e-4616-bca0-9c3d5c1c5bbe /home          ext4    defaults,noatime 0 2
sudo systemctl --no-pager status systemd-fsck-root.service
● systemd-fsck-root.service - File System Check on Root Device
     Loaded: loaded (/etc/systemd/system/systemd-fsck-root.service; enabled-runtime; vendor preset: disabled)
     Active: inactive (dead)
  Condition: start condition failed at Wed 2020-10-07 19:04:04 CEST; 3h 19min ago
       Docs: man:systemd-fsck-root.service(8)
sudo systemctl --no-pager status systemd-fsck@*
● systemd-fsck@dev-disk-by\x2duuid-08f829e6\x2da42e\x2d4616\x2dbca0\x2d9c3d5c1c5bbe.service - File System Check on /dev/disk/by-uuid/08f829e6-a42e-4616-bca0-9c3d5c1c5bbe
     Loaded: loaded (/usr/lib/systemd/system/systemd-fsck@.service; static)
     Active: active (exited) since Wed 2020-10-07 22:04:02 CEST; 18min ago
       Docs: man:systemd-fsck@.service(8)
    Process: 291 ExecStart=/usr/lib/systemd/systemd-fsck /dev/disk/by-uuid/08f829e6-a42e-4616-bca0-9c3d5c1c5bbe (code=exited, status=0/SUCCESS)
   Main PID: 291 (code=exited, status=0/SUCCESS)

oct. 07 22:04:01 manjaro systemd[1]: Starting File System Check on /dev/disk/by-uuid/08f829e6-a42e-4616-bca0…c5bbe...
oct. 07 22:04:02 manjaro systemd-fsck[297]: /dev/vda3 : propre, 69/4554752 fichiers, 430373/18218411 blocs
oct. 07 22:04:02 manjaro systemd[1]: Finished File System Check on /dev/disk/by-uuid/08f829e6-a42e-4616-bca0…c1c5bbe.

● systemd-fsck@dev-disk-by\x2duuid-DBFC\x2d4573.service - File System Check on /dev/disk/by-uuid/DBFC-4573
     Loaded: loaded (/usr/lib/systemd/system/systemd-fsck@.service; static)
     Active: active (exited) since Wed 2020-10-07 22:04:02 CEST; 18min ago
       Docs: man:systemd-fsck@.service(8)
    Process: 292 ExecStart=/usr/lib/systemd/systemd-fsck /dev/disk/by-uuid/DBFC-4573 (code=exited, status=0/SUCCESS)
   Main PID: 292 (code=exited, status=0/SUCCESS)

oct. 07 22:04:01 manjaro systemd[1]: Starting File System Check on /dev/disk/by-uuid/DBFC-4573...
oct. 07 22:04:02 manjaro systemd-fsck[312]: fsck.fat 4.1 (2017-01-24)
oct. 07 22:04:02 manjaro systemd-fsck[312]: /dev/vda1: 336 files, 14655/130812 clusters
oct. 07 22:04:02 manjaro systemd[1]: Finished File System Check on /dev/disk/by-uuid/DBFC-4573.
Hint: Some lines were ellipsized, use -l to show in full.

So systemd-fsck-root.service and systemd-fsck@.service are in use.
No hook anymore in /etc/mkinitcpio.conf
Pass numbers in /etc/fstab are set correctly.

I suppose that Manjaro Architect is using the same settings.

So I have no explanation why pass numbers in my /etc/fstab were not set.
Anyway, I fixed it so I am fine.

This topic was automatically closed 15 days after the last reply. New replies are no longer allowed.