Skip to content

Commit

Permalink
Merge pull request #8607 from ThomasWaldmann/faq-slow-fat-1.4
Browse files Browse the repository at this point in the history
FAQ: Why is backing up an unmodified FAT filesystem slow on Linux?
  • Loading branch information
ThomasWaldmann authored Dec 28, 2024
2 parents f859100 + f0bd01b commit f8564cc
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions docs/faq.rst
Original file line number Diff line number Diff line change
Expand Up @@ -478,6 +478,17 @@ will only be applied to new chunks, not existing chunks. So it's safe
to change them.


Why is backing up an unmodified FAT filesystem slow on Linux?
-------------------------------------------------------------

By default, the files cache used by BorgBackup considers the inode of files.
When an inode number changes compared to the last backup, it hashes the file
again. The ``vfat`` kernel driver does not produce stable inode numbers by
default. One way to achieve stable inode numbering is mounting the filesystem
using ``nfs=nostale_ro``. Doing so implies mounting the filesystem read-only.
Another option is to not consider inode numbers in the files cache by passing
``--files-cache=ctime,size``.

Security
########

Expand Down

0 comments on commit f8564cc

Please sign in to comment.