2026-03-31 Backups with SQLite databases running If your system has SQLite databases running, and you’re making backups, chances are that you cannot just copy the files. If a change arrived while you made the copy, the file can be in an inconsistent state and you won’t be able to open the copy. Check if you can open it using sqlite3. There are two solutions: shut down the application that’s using the SQLite database; using sqlite3_rsync (which is not in Debian Trixie). I used to shut a...