Just trying to be on the safe side here. Got a physical debian 11 box serving as the backup repository for our VMWare-based VBR 11 setup. We'd like to fsck the XFS partition that hosts the backups. Fast clone was created as per
https://helpcenter.veeam.com/archive/ba ... oning.html which include enabling XFS reflink.
Mount options (using multipathing to access some iSCSI-provided block storage):
Code: Select all
/dev/mapper/mpatha-part1 on /mnt/veeam1 type xfs (rw,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota,_netdev)
We would like to check and
safely repair the file system. Stressing "safely" here, since I am not aware of whether the bundled xfs utilities like xfs_repair behave with reflink enabled and such; I'm afraid that perhaps doing a check and repair I might end up losing data. Is it safe and if so, which xfs_repair syntax would you use?
Which way would you recommend checking the file system itself?
PS: weekly health checks on the veeam backups
are made, so far no issues at all.