1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469
|
<!--
SPDX-FileCopyrightText: © 2022 Back In Time Team
SPDX-FileCopyrightText: © 2024 Paul Worrall (@Silver-Saucepan)
SPDX-License-Identifier: GPL-2.0-or-later
This file is part of the program "Back In Time" which is released under GNU
General Public License v2 (GPLv2). See LICENSES directory or go to
<https://spdx.org/licenses/GPL-2.0-or-later.html>
-->
<sub>January 2025</sub>
# FAQ - Frequently Asked Questions
<!-- TOC start (generated with https://github.com/derlin/bitdowntoc) -->
- [General](#general)
* [Does _Back in Time_ support full system backups?](#does-back-in-time-support-full-system-backups)
* [Does _Back in Time_ support backups on cloud storage like OneDrive or Google Drive?](#does-back-in-time-support-backups-on-cloud-storage-like-onedrive-or-google-drive)
* [Where is the log file?](#where-is-the-log-file)
* [How to read log entries?](#how-to-read-log-entries)
* [How to move snapshots to a new hard-drive?](#how-to-move-snapshots-to-a-new-hard-drive)
* [How to move a large directory in the backup source without duplicating the files in the backup?](#how-to-move-a-large-directory-in-the-backup-source-without-duplicating-the-files-in-the-backup)
- [Backups (snapshots)](#backups-snapshots)
* [Does _Back In Time_ create incremental or full backups?](#does-back-in-time-create-incremental-or-full-backups)
* [How do snapshots with hard-links work?](#how-do-snapshots-with-hard-links-work)
* [How can I check if my snapshots are using hard-links?](#how-can-i-check-if-my-snapshots-are-using-hard-links)
* [How to use checksum to find corrupt files periodically?](#how-to-use-checksum-to-find-corrupt-files-periodically)
* [What is the meaning of the leading 11 characters (e.g. "cf...p.....") in my snapshot logs?](#what-is-the-meaning-of-the-leading-11-characters-eg-cfp-in-my-snapshot-logs)
* [Snapshot "WITH ERRORS": [E] 'rsync' ended with exit code 23: See 'man rsync' for more details](#snapshot-with-errors-e-rsync-ended-with-exit-code-23-see-man-rsync-for-more-details)
* [What happens when I remove a snapshot?](#what-happens-when-i-remove-a-snapshot)
* [How can I exclude cache folders to improve backup speed and reduce storage?](#how-can-i-exclude-cache-folders-to-improve-backup-speed-and-reduce-storage)
- [Restore](#restore)
* [After Restore I have duplicates with extension ".backup.20131121"](#after-restore-i-have-duplicates-with-extension-backup20131121)
* [Back In Time doesn't find my old Snapshots on my new Computer](#back-in-time-doesnt-find-my-old-snapshots-on-my-new-computer)
- [Schedule](#schedule)
* [How does the 'Repeatedly (anacron)' schedule work?](#how-does-the-repeatedly-anacron-schedule-work)
* [Will a scheduled snapshot run as soon as the computer is back on?](#will-a-scheduled-snapshot-run-as-soon-as-the-computer-is-back-on)
* [If I edit my crontab and add additional entries, will that be a problem for BIT as long as I don't touch its entries? What does it look for in the crontab to find its own entries?](#if-i-edit-my-crontab-and-add-additional-entries-will-that-be-a-problem-for-bit-as-long-as-i-dont-touch-its-entries-what-does-it-look-for-in-the-crontab-to-find-its-own-entries)
* [Can I use a systemd timer instead of cron?](#can-i-use-a-systemd-timer-instead-of-cron)
- [Problems, Errors & Solutions](#problems-errors--solutions)
* [WARNING: A backup is already running](#warning-a-backup-is-already-running)
* [_Back in Time_ does not start and shows: The application is already running! (pid: 1234567)](#back-in-time-does-not-start-and-shows-the-application-is-already-running-pid-1234567)
* [Switching to dark or light mode in the desktop environment is ignored by BIT](#switching-to-dark-or-light-mode-in-the-desktop-environment-is-ignored-by-bit)
* [Segmentation fault on Exit](#segmentation-fault-on-exit)
* [Version >= 1.2.0 works very slow / Unchanged files are backed up](#version--120-works-very-slow--unchanged-files-are-backed-up)
* [What happens if I hibernate the computer while a backup is running?](#what-happens-if-i-hibernate-the-computer-while-a-backup-is-running)
* [What happens if I power down the computer while a backup is running, or if a power outage happens?](#what-happens-if-i-power-down-the-computer-while-a-backup-is-running-or-if-a-power-outage-happens)
* [What happens if there is not enough disk space for the current backup?](#what-happens-if-there-is-not-enough-disk-space-for-the-current-backup)
* [NTFS Compatibility](#ntfs-compatibility)
* [GUI does not scale on high resolution or 4k monitors](#gui-does-not-scale-on-high-resolution-or-4k-monitors)
* [Tray icon or other icons not shown correctly](#tray-icon-or-other-icons-not-shown-correctly)
* [Non-working password safe and BiT forgets passwords (keyring backend issues)](#non-working-password-safe-and-bit-forgets-passwords-keyring-backend-issues)
* [Incompatibility with rsync >= 3.2.4](#incompatibility-with-rsync-324-or-newer)
- [user-callback and other PlugIns](#user-callback-and-other-plugins)
* [How to backup Debian/Ubuntu Package selection?](#how-to-backup-debianubuntu-package-selection)
* [How to restore Debian/Ubuntu Package selection?](#how-to-restore-debianubuntu-package-selection)
- [Hardware-specific Setup](#hardware-specific-setup)
* [How to use QNAP QTS NAS with BIT over SSH](#how-to-use-qnap-qts-nas-with-bit-over-ssh)
* [How to use Synology DSM 5 with BIT over SSH](#how-to-use-synology-dsm-5-with-bit-over-ssh)
* [How to use Synology DSM 6 with BIT over SSH](#how-to-use-synology-dsm-6-with-bit-over-ssh)
* [How to use Synology DSM 7 with BIT over SSH](#how-to-use-synology-dsm-7-with-bit-over-ssh)
* [Synology: "sshfs: No such file or directory" using BIT but manually ssh with rsync works](#synology-sshfs-no-such-file-or-directory-using-bit-but-manually-ssh-with-rsync-works)
* [How to use Western Digital MyBook World Edition with BIT over ssh?](#how-to-use-western-digital-mybook-world-edition-with-bit-over-ssh)
- [Project & Contributing & more](#project--Contributing--more)
* [Which additional features on top of a GUI does BIT provide over a self-configured rsync backup? Are there additional benefits?](#which-additional-features-on-top-of-a-gui-does-bit-provide-over-a-self-configured-rsync-backup-are-there-additional-benefits)
* [Support for specific package formats (deb, rpm, Flatpack, AppImage, Snaps, PPA, …)](#support-for-specific-package-formats-deb-rpm-flatpack-appimage-snaps-ppa-)
+ [Is BIT really not supported by Canonical Ubuntu?](#is-bit-really-not-supported-by-canonical-ubuntu)
* [Move project to alternative code hoster (e.g. Codeberg, GitLab, …)](#move-project-to-alternative-code-hoster-eg-codeberg-gitlab-)
* [How to review a Pull Request](#how-to-review-a-pull-request)
- [Testing & Building](#testing--building)
* [SSH related tests are skipped](#ssh-related-tests-are-skipped)
* [Setup SSH Server to run unit tests](#setup-ssh-server-to-run-unit-tests)
<!-- TOC end -->
# General
## Does _Back in Time_ support full system backups?
_Back in Time_ is suited for file-based backups.
A full system backup is neither supported nor recommended
(even though you could use _Back in Time (root)_ and include your
root folder `\`) because
- Mounted file systems (even remote locations)
- the backup needed to be done from within the running system
- Linux kernel special files (eg. /proc) must be excluded
- locked or open files (in an inconsistent state) must be handled
- backups of additional disk partitions (bootloader, EFI...) are required to be able to boot
- a restore cannot overwrite the running system (where the backups software is running)
without the risk of crashes or losing data (for that a restore must be done from a separate boot device normally)
- ...
For full system backups look for
- a disk imaging ("cloning") solution (eg. [Clonezilla](https://clonezilla.org/))
- file-based backup tools that are designed for this (eg. [`Timeshift`](https://github.com/linuxmint/timeshift))
## Does _Back in Time_ support backups on cloud storage like OneDrive or Google Drive?
Cloud storage as backup source or target is not support because _Back in Time_
uses `rsync` as backend for file transfer and therefore a locally mounted file system
or a `ssh` connection is required. Neither is supported by cloud storage.
Even with native support for mounting a cloud storage, most of the time
it won't work because of limited support for 'special' file access
which is used by BiT (eg. Linux hardlinks, atime).
Typically "locally mounted" cloud storage uses a web-based API (REST-API)
which does not support `rsync`.
For a discussion about this topic see [Backup on OneDrive or Google Drive](https://github.com/bit-team/backintime/issues/1166).
## Where is the log file?
There are three distinct logs generated:
1. The _snapshot log_ contains messages specific to a particular snapshot at a
given time. It is stored within each snapshot and can be accessed through
the GUI.
2. The _restore log_ contains messages specific to a particular restore
process. It is displayed in the GUI after each restore. It is also located
in the folder `~/.local/share/backintime/` and is named `restore_.log` for
the main profile, `restore_2.log` for the second, and so forth.
3. The _application log_ is generated using the syslog feature of the operating
system. See [How to read log entries?](#how-to-read-log-entries) for
further details.
## How to read log entries?
Both the _snapshot_ and _restore_ log files are plain text files and can be read
accordingly. Refer to [Where is the log file?](#where-is-the-log-file).
The _application_ log is generated via [syslog](https://en.wikipedia.org/wiki/Syslog)
using the identifier `backintime`. Depending on the version of _Back In time_ and the
GNU/Linux distribution used, there are three ways to get the log entries.
1. On modern systems:
`journalctl --identifier backintime`
2. With an older _Back In Time_ version (1.4.2 or older):
`journalctl --grep backintime`
3. If the error message `journalctl: command not found` appears, directly examine the syslog files:
`sudo grep backintime /var/log/syslog`
## How to move snapshots to a new hard-drive?
There are three different solutions:
1. clone the drive with ``dd`` and enlarge the partition on the new drive to
use all space. This will **destroy all data** on the destination drive!
```bash
sudo dd if=/dev/sdbX of=/dev/sdcX bs=4M
```
where ``/dev/sdbX`` is the partition on the source drive and ``/dev/sdcX`` is the destination drive
Finally use ``gparted`` to resize the partition. Take a look at the
[Ubuntu Docu](https://help.ubuntu.com/community/HowtoPartition/ResizingPartition) for more info on that.
1. copy all files using ``rsync -H``
```bash
rsync -avhH --info=progress2 /SOURCE /DESTINATION
```
1. copy all files using ``tar``
```bash
cd /SOURCE; tar cf - * | tar -C /DESTINATION/ -xf -
```
Make sure that your `/DESTINATION` contains a folder named `backintime`, which contains all the snapshots. BiT expects this folder, and needs it to import existing snapshots.
## How to move a large directory in the backup source without duplicating the files in the backup?
If you move a file/folder in the source ("include") location that is backed-up by BiT
it will treat this like a new file/folder and
create a new backup file for it (not hard-linked to the old one). With large
directories this can fill up your backup drive quite fast.
You can avoid this by moving the file/folder in the last snapshot too:
1. Create a new snapshot
2. Move the original folder
3. Manually move the same folder inside BiTs last snapshot in the same way you did with the original folder
4. Create a new snapshot
5. Remove the next to last snapshot (the one where you moved the folder manually)
to avoid problems with permissions when you try to restore from that snapshot
# Backups (snapshots)
## Does _Back In Time_ create incremental or full backups?
Back In Time does use `rsync` and its `--hard-links` feature.
Because of that each snapshot is technically a full backup (contains each file)
but copies only the really changed files (to save disk space) and "reuses" unchanged
files by setting a so-called "hard-link".
In technical terms it is not an
[incremental backups](https://en.wikipedia.org/wiki/Incremental_backup).
## How do snapshots with hard-links work?
From the answer on Launchpad to the question
[_Does auto remove smart mode merge incremental backups?_](https://answers.launchpad.net/backintime/+question/123486)
If you create a new file on a Linux filesystem (e.g. ext3) the data will have a
unique number that is called inode. The path of the file is a link to this inode
(there is a database which stores which file point to which inode). Also every
inode has a counter for how many links point to this inode. After you created a
new file the counter is 1.
Now you make a new hardlink. The filesystem now just has to store the new path
pointing to the existing inode into the database and increase the counter of our
inode by 1.
If you remove a file than only the link from the path to that inode is removed
and the counter is decreased by 1. If you have removed all links to that inode
so the counter is zero the filesystem knows that it can override that block next
time you save a new file.
First time you create a new backup with BIT all files will have an inode
counter = 1.
#### snapshot0
| path | inode | counter |
|:-------|--------:|----------:|
| fileA | 1 | 1 |
| fileB | 2 | 1 |
| fileC | 3 | 1 |
Let's say you now change ``fileB``, delete ``fileC`` and have a new ``fileD``.
BIT first makes hardlinks of all files. ``rsync`` than delete all hardlinks of
files that has changed and copy the new files.
#### snapshot0
| path | inode | counter |
|:-------|--------:|----------:|
| fileA | 1 | 2 |
| fileB | 2 | 1 |
| fileC | 3 | 1 |
#### snapshot1
| path | inode | counter |
|:-------|--------:|----------:|
| fileA | 1 | 2 |
| fileB | 4 | 1 |
| fileD | 5 | 1 |
Now change ``fileB`` again and make a new snapshot
#### snapshot0
| path | inode | counter |
|:-------|--------:|----------:|
| fileA | 1 | 3 |
| fileB | 2 | 1 |
| fileC | 3 | 1 |
#### snapshot1
| path | inode | counter |
|:-------|--------:|----------:|
| fileA | 1 | 3 |
| fileB | 4 | 1 |
| fileC | 5 | 2 |
#### snapshot2
| path | inode | counter |
|:-------|--------:|----------:|
| fileA | 1 | 3 |
| fileB | 6 | 1 |
| fileD | 5 | 2 |
Finally smart-remove is going to remove **snapshot0**. All that is done by
smart-remove is to ``rm -rf`` (force delete everything) the whole directory
of **snapshot0**.
#### snapshot0 (no longer exist)
| path | inode | counter |
|:-------|--------:|----------:|
| (empty) | 1 | 2 |
| (empty) | 2 | 0 |
| (empty) | 3 | 0 |
#### snapshot1
| path | inode | counter |
|:-------|--------:|----------:|
| fileA | 1 | 2 |
| fileB | 4 | 1 |
| fileD | 5 | 2 |
#### snapshot2
| path | inode | counter |
|:-------|--------:|----------:|
| fileA | 1 | 2 |
| fileB | 6 | 1 |
| fileD | 5 | 2 |
``fileA`` is still untouched, ``fileB`` is still available in two different
versions and ``fileC`` is gone for good. The blocks on your hdd that stored the
data for inode 2 and 3 can now get overridden.
I hope this will shed a light on the "magic" behind BIT. If it's even more
confusing don't hesitate to ask ;)
## How can I check if my snapshots are using hard-links?
Please compare the inodes of a file that definitely didn't change between two
snapshots. For this open two Terminals and ``cd`` into both snapshot folder.
``ls -lai`` will print a list where the first column is the inode which should
be equal for the same file in both snapshots if the file didn't change and the
snapshots are incremental.
The third column is a counter (if the file is no directory) on how many
hard-links exist for this inode. It should be >1. So if you took e.g. 3
snapshots it should be 3.
Don't be confused on the size of each snapshot. If you right click on
preferences for a snapshot in a file manager and look for its size, it will
look like they are all full snapshots (not incremental). But that's not
(necessary) the case.
To get the correct size of each snapshot with respect on the hard-links you
can run:
```bash
du -chd0 /media/<USER>/backintime/<HOST>/<USER>/1/*
```
Compare with option `-l` to count hardlinks multiple times:
```bash
du -chld0 /media/<USER>/backintime/<HOST>/<USER>/1/*
```
(``ncdu`` isn't installed by default so I won't recommend using it)
## How to use checksum to find corrupt files periodically?
Starting with BIT Version 1.0.28 there is a new command line option
``--checksum`` which will do the same as *Use checksum to detect changes* in
Options. It will calculate checksums for both the source and the last snapshots
files and will only use this checksum to decide whether a file has changed or
not. The normal mode (without checksums) is to compare modification times and sizes
of the files which is much faster to detect changed files.
Because this takes ages, you may want to use this only on Sundays or only the
first Sunday per month. Please deactivate the schedule for your profile in
that case. Then run ``crontab -e``
For daily snapshots on 2AM and ``--checksum`` every Sunday add:
```
# min hour day month dayOfWeek command
0 2 * * 1-6 nice -n 19 ionice -c2 -n7 /usr/bin/backintime --backup-job >/dev/null 2>&1
0 2 * * Sun nice -n 19 ionice -c2 -n7 /usr/bin/backintime --checksum --backup-job >/dev/null 2>&1
```
For ``--checksum`` only at first Sunday per month add:
```
# min hour day month dayOfWeek command
0 2 * * 1-6 nice -n 19 ionice -c2 -n7 /usr/bin/backintime --backup-job >/dev/null 2>&1
0 2 * * Sun [ "$(date '+\%d')" -gt 7 ] && nice -n 19 ionice -c2 -n7 /usr/bin/backintime --backup-job >/dev/null 2>&1
0 2 * * Sun [ "$(date '+\%d')" -le 7 ] && nice -n 19 ionice -c2 -n7 /usr/bin/backintime --checksum --backup-job >/dev/null 2>&1
```
Press <kbd>CTRL</kbd> + <kbd>O</kbd> to save and <kbd>CTRL</kbd> + <kbd>X</kbd> to exit
(if you editor is `nano`. Maybe different depending on your default text editor).
## What is the meaning of the leading 11 characters (e.g. "cf...p.....") in my snapshot logs?
This are from `rsync` and indicating what changed and why.
Please see the section `--itemize-changes` in the
[manpage](https://download.samba.org/pub/rsync/rsync.1#opt--itemize-changes)
of `rsync`. See also some
[rephrased explanations on Stack Overflow](https://stackoverflow.com/a/36851784/4865723).
## Snapshot "WITH ERRORS": [E] 'rsync' ended with exit code 23: See 'man rsync' for more details
[BiT Version 1.4.0 (2023-09-14)](https://github.com/bit-team/backintime/releases/tag/v1.4.0)
introduced the **evaluation of `rsync` exit codes for better error recognition**:
Before this release `rsync` exit codes were ignored and only the snapshot
files parsed for errors (which does not find each error, eg. dead symbolic links
logged as `symlink has no referent`).
This "exit code 23" message may occur at the end of snapshot logs and BiT logs when
`rsync` was not able to transfer some (or even all) files
See [this comment in issue 1587](https://github.com/bit-team/backintime/issues/1587#issuecomment-1856490208)
for a list all known reasons for `rsync`'s exit code 23.
Currently you can ignore this error after checking the full snapshot log
which error is hidden behind "exit code 23" (and possibly fix it - eg. delete or update dead symbolic links).
We plan to implement an improved handling of exit code 23 in the future
(presumably by introducing warnings into the snapshot log).
## What happens when I remove a snapshot?
Each snapshot is stored in a dated subdirectory of the "full snapshot path"
shown in Settings. It contains a ``backup`` directory of all the files as well
as a log of the snapshot's creation and some other details. Removing the
snapshot removes this whole directory. Each snapshot is independent of the
others, so other snapshots are not affected. However, the data of identical files is
not stored redundantly by multiple snapshots, so removing a snapshot will only
recover the space used by files that are unique to that snapshot.
## How can I exclude cache folders to improve backup speed and reduce storage?
**Why exclude cache folders?**
Cache folders typically contain temporary files that are not necessary for backups.
Excluding them can significantly improve backup speed and reduce storage usage.
**How to exclude cache folders:**
1. Open Back in Time.
2. Go to the **Exclude Patterns** settings:
- Click the "Exclude" tab in the configuration window.
- Click the **Add** button to create a new exclude pattern.
3. Add the following patterns to exclude common cache directories:
```plaintext
.var/app/**/[Cc]ache/
.var/app/**/media_cache/
.mozilla/firefox/**/cache/
.config/BraveSoftware/Brave-Browser/Default/Service Worker/CacheStorage/
```
**Explanation**:
- `/**/` matches any directory structure leading to the specified folder.
- `[Cc]ache` matches folder names with either uppercase or lowercase "Cache."
4. Decide whether to include or exclude the folder itself:
- To exclude only the folder’s content, use `/*` at the end of the pattern:
```plaintext
.var/app/**/[Cc]ache/*
```
- To exclude the folder and its contents, omit the `/*`:
```plaintext
.var/app/**/[Cc]ache/
```
**Tips for better results:**
- **Check Backup Logs**:
After running a backup, review the logs to identify additional folders that may
slow down the process. Example log entries for cache files:
```plaintext
[E] Skipping file /path/to/cache/file: Too many small files.
```
- **Customize Patterns**:
Adjust the patterns to suit your specific applications. For example, modify paths
for browsers or other software you use.
- **Test Exclude Patterns**:
Test your backup after adding patterns to ensure they work as intended.
# Restore
## After Restore I have duplicates with extension ".backup.20131121"
This is because *Backup files on restore* in Options was enabled. This is
the default setting to prevent overriding files on restore.
If you don't need them any more you can delete those files. Open a terminal
and run:
```bash
find /path/to/files -regextype posix-basic -regex ".*\.backup\.[[:digit:]]\{8\}"
```
Check if this correctly listed all those files you want to delete and than run:
```bash
find /path/to/files -regextype posix-basic -regex ".*\.backup\.[[:digit:]]\{8\}" -delete
```
## Back In Time doesn't find my old Snapshots on my new Computer
Back In Time prior to version 1.1.0 had an option called
*Auto Host/User/Profile ID* (hidden under *General* > *Advanced*) which will
always use the current host- and username for the full snapshot path.
When (re-)installing your computer you probably chose a different host name or
username than on your old machine. With *Auto Host/User/Profile ID* activated
Back In Time now try to find your Snapshots under the new host- and username
underneath the ``/path/to/backintime/`` path.
The *Auto Host/User/Profile ID* option is gone in version 1.1.0 and above.
It was totally confusing and didn't add any good.
You have three options to fix this:
- Disable *Auto Host/User/Profile ID* and change *Host* and *User* to match
your old machine.
- Rename the Snapshot path
``/path/to/backintime/OLDHOSTNAME/OLDUSERNAME/profile_id`` to match your new
host- and username.
- Upgrade to a more recent version of Back In Time (1.1.0 or above).
The *Auto Host/User/Profile ID* option is gone and it also comes with
an assistant to restore the config from an old Snapshot on first start.
# Schedule
## How does the 'Repeatedly (anacron)' schedule work?
In fact *Back In Time* doesn't use anacron anymore. It was to inflexible. But that
schedule mimics anacron.
BIT will create a crontab entry which will start ``backintime --backup-job``
every 15min (or once an hour if the schedule is set to *weeks*). With the
``--backup-job`` command, BIT will check if the profile is supposed to be run
this time or exit immediately. For this it will read the time of the last
successful run from ``~/.local/share/backintime/anacron/ID_PROFILENAME``.
If this is older than the configured time, it will continue creating a snapshot.
If the snapshot was successful without errors, BIT will write the current time
into ``~/.local/share/backintime/anacron/ID_PROFILENAME`` (even if *Repeatedly
(anacron)* isn't chosen). So, if there was an error, BIT will try again at
the next quarter hour.
``backintime --backup`` will always create a new snapshot. No matter how many
time elapsed since last successful snapshot.
## Will a scheduled snapshot run as soon as the computer is back on?
Depends on which schedule you choose:
- the schedule ``Repeatedly (anacron)`` will use an anacron-like code. So if
your computer is back on it will start the job if the given time is gone till
last snapshot.
- with ``When drive get connected (udev)`` *Back In Time* will start a snapshot as
soon as you connect your drive ;-)
- old fashion schedules like ``Every Day`` will use cron. This will only start a
new snapshot at the given time. If your computer is off, no snapshot will be
created.
## If I edit my crontab and add additional entries, will that be a problem for BIT as long as I don't touch its entries? What does it look for in the crontab to find its own entries?
You can add your own crontab entries as you like. *Back In Time* will not touch them.
It will identify its own entries by the comment line ``#Back In Time system
entry, this will be edited by the gui:`` and the following command. You should
not remove/change that line. If there are no automatic schedules defined
*Back In Time* will add an extra comment line ``#Please don't delete these two
lines, or all custom backintime entries are going to be deleted next time you
call the gui options!`` which will prevent *Back In Time* to remove user defined
schedules.
## Can I use a systemd timer instead of cron?
While there is no support within *Back In Time* to directly create a systemd
timer, users can create a user timer and service units. Templates are provided
below. Optionally adjust the value for `OnCalendar=` with a valid setting. See
[`man systemd.timer`](https://manpages.debian.org/testing/systemd/systemd.timer.5)
for more.
**Timer**:
```ini
# ~/.config/systemd/user/backintime-backup-job.timer
[Unit]
Description=Start a backintime snapshot once daily
[Timer]
OnCalendar=daily
AccuracySec=1m
Persistent=true
[Install]
WantedBy=timers.target
```
**Service**:
```ini
# ~/.config/systemd/user/backintime-backup-job.service
[Unit]
Description=Run backintime snapshot generation
[Service]
Type=oneshot
ExecStart=/usr/bin/nice -n19 /usr/bin/ionice -c2 -n7 /usr/bin/backintime backup-job
```
# Problems, Errors & Solutions
## WARNING: A backup is already running
_Back In Time_ uses signal files like `worker<PID>.lock` to avoid starting the same backup twice.
Normally it is deleted as soon as the backup finishes. In some case something went wrong
so that _Back In Time_ was forcefully stopped without having the chance to delete
this signal file.
Since _Back In Time_ does only start a new backup job (for the same profile) if the signal
file does not exist, such a file need to be deleted first. But before this is done manually,
it must be ensured that _Back In Time_ really is not running anymore. It can be ensured via
```bash
ps aux | grep -i backintime
```
If the output shows a running instance of _Back In Time_ it must be waited until it finishes
or killed via `kill <process id>`.
For more details see the developer documentation: [Usage of control files (locks, flocks, logs and others)](doc/maintain/4_Control_files_usage_(locks_flocks_logs_and_others).md)
## _Back in Time_ does not start and shows: The application is already running! (pid: 1234567)
This message occurs when _Back In Time_ is either already running or did not finish regularly (e.g. due to a crash)
and wasn't able to delete its application lock file.
Before deleting that file manually make sure no backintime process is running
via `ps aux | grep -i backintime`.
Otherwise, kill the process. After that look into the folder
`~/.local/share/backintime` for the file `app.lock.pid` and delete it.
For more details see the developer documentation: [Usage of control files (locks, flocks, logs and others)](doc/maintain/4_Control_files_usage_(locks_flocks_logs_and_others).md)
## Switching to dark or light mode in the desktop environment is ignored by BIT
After restart _Back In Time_ it should adapt to the desktops current used
color theme.
It happens because Qt does not detect theme modifications out of the
box. [Workarounds are known](https://stackoverflow.com/q/75457687), but
generate a relatively large amount of code and in our opinion are not worth
the effort.
## Segmentation fault on Exit
This problem existed at least since version 1.2.1, and will hopefully be fixed
with version 1.5.0. For all affected versions, it does not impact the
functionality of _Back In Time_ or jeopardize backup integrity. It can be
safely ignored.
See also:
- [#1768](https://github.com/bit-team/backintime/pull/1768)
- [#1095](https://github.com/bit-team/backintime/issues/1095)
## Version >= 1.2.0 works very slow / Unchanged files are backed up
After updating to >= 1.2.0, BiT does a (nearly) full backup because file
permissions are handled differently. Before 1.2.0 all destination file
permissions were set to `-rw-r--r--`. In 1.2.0 rsync is executed with `--perms`
option which tells rsync to preserve the source file permission.
That's why so many files seem to be changed.
If you don't like the new behavior, you can use "Expert Options"
-> "Paste additional options to rsync" to add the value
`--no-perms --no-group --no-owner` in that field.
## What happens if I hibernate the computer while a backup is running?
*Back In Time* will inhibit automatic suspend/hibernate while a snapshot/restore is
running. If you manually force hibernate this will freeze the current process.
It will continue as soon as you wake up the system again.
## What happens if I power down the computer while a backup is running, or if a power outage happens?
This will kill the current process. The new snapshot will stay in ``new_snapshot``
folder. Depending on which state the process was while killing the next
scheduled snapshot can continue the leftover ``new_snapshot`` or it will remove
it first and start a new one.
## What happens if there is not enough disk space for the current backup?
*Back In Time* will try to create a new snapshot but rsync will fail when there is
not enough space. Depending on ``Continue on errors`` setting the failed
snapshot will be kept and marked ``With Errors`` or it will be removed.
By default, *Back In Time* will finally remove the oldest snapshots until there is
more than 1 GiB free space again.
## NTFS Compatibility
Although devices formatted with the NTFS file system can generally be used with *Back In Time*, there are some limitations to be aware of.
NTFS File systems do not support the following characters in filenames or directories:
```text
< (less than)
> (greater than)
: (colon)
" (double quote)
/ (forward slash)
\ (backslash)
| (vertical bar or pipe)
? (question mark)
* (asterisk)
```
If *Back In Time* tries to copy files where the filename contains those character, an "Invalid argument (22)" error message will be displayed.
It is recommended that only devices formatted with Unix style file systems (such as ext4) be used.
For more information, refer to [this Microsoft page](https://learn.microsoft.com/en-us/windows/win32/fileio/naming-a-file#naming-conventions).
## GUI does not scale on high resolution or 4k monitors
The technical details are complex and many components of the operating system
are involved. BIT itself is not involved and also not responsible for
it. Several approaches might help:
- Check your desktop environment or window manager for settings regarding
scaling.
- Because BIT is using Qt for its GUI, modifying the environment variable
`QT_SCALE_FACTOR` or `QT_AUTO_SCREEN_SCALE_FACTOR`.
See [this article](https://doc.qt.io/qt-6/highdpi.html) and
[Issue #1946](https://github.com/bit-team/backintime/issues/1946) about more
details.
## Tray icon or other icons not shown correctly
**Status: Fixed in v1.4.0**
Missing installations of Qt-supported themes and icons can cause this effect.
_Back In Time_ may activate the wrong theme in this
case leading to some missing icons. A fix for the next release is in preparation.
As clean solution, please check your Linux settings (Appearance, Styles, Icons)
and install all themes and icons packages for your preferred style via
your package manager.
See issues [#1306](https://github.com/bit-team/backintime/issues/1306)
and [#1364](https://github.com/bit-team/backintime/issues/1364).
## Non-working password safe and BiT forgets passwords (keyring backend issues)
**Status: Fixed in v1.3.3 (mostly) and v1.4.0**
_Back in Time_ does only support selected "known-good" backends
to set and query passwords from a user-session password safe by
using the [`keyring`](https://github.com/jaraco/keyring) library.
Enabling a supported keyring requires manual configuration of a configuration
file until there is e.g. a settings GUI for this.
Symptoms are DEBUG log output (with the command line argument `--debug`) of
keyring problems can be recognized by output like:
```
DEBUG: [common/tools.py:829 keyringSupported] No appropriate keyring found. 'keyring.backends...' can't be used with BackInTime
DEBUG: [common/tools.py:829 keyringSupported] No appropriate keyring found. 'keyring.backends.chainer' can't be used with BackInTime
```
To diagnose and solve this follow these steps in a terminal:
```
# Show default backend
python3 -c "import keyring.util.platform_; print(keyring.get_keyring().__module__)"
# List available backends:
keyring --list-backends
# Find out the config file folder:
python3 -c "import keyring.util.platform_; print(keyring.util.platform_.config_root())"
# Create a config file named "keyringrc.cfg" in this folder with one of the available backends (listed above)
[backend]
default-keyring=keyring.backends.kwallet.DBusKeyring
```
See also issue [#1321](https://github.com/bit-team/backintime/issues/1321)
## Incompatibility with rsync 3.2.4 or newer
**Status: Fixed in v1.3.3**
The release (`1.3.2`) and earlier versions of _Back In Time_ are incompatible
with `rsync >= 3.2.4`
([#1247](https://github.com/bit-team/backintime/issues/1247)).
If you use `rsync >= 3.2.4` and `backintime <= 1.3.2` there is a
workaround. Add `--old-args` in
[_Expert Options_ / _Additional options to rsync_](https://backintime.readthedocs.io/en/latest/settings.html#expert-options).
Note that some GNU/Linux distributions (e.g. Manjaro) using a workaround with
environment variable `RSYNC_OLD_ARGS` in their distro-specific packages for
_Back In Time_. In that case you may not see any problems.
# user-callback and other PlugIns
## How to backup Debian/Ubuntu Package selection?
There is a [user-callback example](https://github.com/bit-team/user-callback/blob/master/user-callback.apt-backup)
which will backup all package
selections, sources and repository keys which are necessary to reinstall exactly
the same packages again. It will even backup whether a package was installed
manually or automatically because of dependencies.
Download the script, copy it to ``~/.config/backintime/user-callback`` and make
it executable with ``chmod 755 ~/.config/backintime/user-callback``
It will run every time a new snapshot is taken. Make sure to include
``~/.apt-backup``.
## How to restore Debian/Ubuntu Package selection?
If you made snapshots including apt-get package selection as described in the
FAQ "`How to backup Debian/Ubuntu Package selection?`_" you can easily restore
your system after a disaster/on a new machine.
1. install Debian/Ubuntu on your new hard drive as usual
1. install backintime-qt4 from our PPA
```bash
sudo add-apt-repository ppa:bit-team/stable
sudo apt-get update
sudo apt-get install backintime-qt4
```
1. connect your external drive with the snapshots
1. Start *Back In Time*. It will ask you if you want to restore your
config. Sure you want! *Back In Time* should find your snapshots
automatically. Just select the one from which you want to
restore the config and click Ok.
1. restore your home
1. recreate your ``/etc/apt/sources.list`` if you had something
special in there. If your Debian/Ubuntu version changed don't
just copy them from ``~/.apt-backup/sources.list``
1. copy your repositories with
```bash
sudo cp ~/.apt-backup/sources.list.d/* /etc/apt/sources.list.d/
```
1. restore apt-keys for your PPAs with
```bash
sudo apt-key add ~/.apt-backup/repo.keys
```
1. install and update `dselect` with
```bash
sudo apt-get install dselect
sudo dselect update install
```
1. Make some *housecleaning* in ``~/.apt-backup/package.list``.
For example, you don't want to install the old kernel again.
So run
```bash
sed -e "/^linux-\(image\|headers\)/d" -i ~/.apt-backup/package.list
```
1. install your old packages again with
```bash
sudo apt-get update
sudo dpkg --set-selections < ~/.apt-backup/package.list
sudo apt-get dselect-upgrade
```
1. If you used the new script which uses apt-mark to backup
package selection proceed with next step. (there should be
files ``~/.apt-backup/pkg_auto.list`` and ``~/.apt-backup
/pkg_manual.list``). Otherwise, you can stop here.
Restore package selection with
```bash
sudo apt-mark auto $(cat ~/.apt-backup/pkg_auto.list)
sudo apt-mark manual $(cat ~/.apt-backup/pkg_manual.list)
```
# Hardware-specific Setup
## How to use QNAP QTS NAS with BIT over SSH
To use *BackInTime* over SSH with a QNAP NAS there is still some work to be done
in the terminal.
**WARNING**:
DON'T use the changes for ``sh`` suggested in ``man backintime``. This will
damage the QNAP admin account (and even more). Changing ``sh`` for another user
doesn't make sense either because SSH only works with the QNAP admin account!
Please test this Tutorial and give some feedback!
1. Activate the SSH prefix: ``PATH=/opt/bin:/opt/sbin:\$PATH`` in ``Expert
Options``
1. Use ``admin`` (default QNAP admin) as remote user. Only this user can connect
through SSH. Also activate on the QNAP `SFTP` on the SSH settings page.
1. Path should be something like ``/share/Public/``
1. Create the public/private key pair for the password-less login with the user
you use for *BackInTime* and copy the public key to the NAS.
```bash
ssh-keygen -t rsa
ssh-copy-id -i ~/.ssh/id_rsa.pub <REMOTE_USER>@<HOST>
```
To fix the message about not supported ``find PATH -type f -exec`` you need to
install ``Entware-ng``. QNAPs QTS is based on Linux but some of its packages
have limited functionalities. And so do some of the necessary ones for
*BackInTime*.
Please follow [this install instruction](https://github.com/Entware-ng/Entware-ng/wiki/Install-on-QNAP-NAS)
to install ``Entware-ng`` on your QNAP NAS.
Because there is no web interface yet for ``Entware-ng``, you must configure it
by SSH on the NAS.
Some Packages will be installed by default for example ``findutils``.
Login on the NAS and updated the Database and Packages of ``Entware-ng`` with
```bash
ssh <REMOTE_USER>@<HOST>
opkg update
opkg upgrade
```
Finally install the current packages of ``bash``, ``coreutils`` and ``rsync``
```bash
opkg install bash coreutils rsync
```
Now the error message should be gone and you should be able to take a first
snapshot with *BackInTime*.
*BackInTime* changes permissions on the backup path. The owner of the
backup has read permission, other users have no access.
This way can change with newer versions of *BackInTime* or QNAPs QTS!
## How to use Synology DSM 5 with BIT over SSH
**Issue**
*BackInTime* cannot use Synology DSM 5 directly because the SSH connection to the NAS
refers to a different root file system than SFTP does. With SSH you access the
real root, with SFTP you access a fake root (`/volume1`)
**Solution**
Mount `/volume1/backups` to `/volume1/volume1/backups`
**Suggestion**
DSM 5 isn't really up to date any more and might be a security risk. It is strongly advised to upgrade to DSM 6! Also the setup with DSM 6 is much easier!
1. Make a new volume named ``volume1`` (should already exist, else create it)
1. Enable User Home Service (Control Panel / User)
1. Make a new share named ``backups`` on ``volume1``
1. Make a new share named ``volume1`` on ``volume1`` (It must be the same name)
1. Make a new user named ``backup``
1. Give to user ``backup`` rights Read/Write to share ``backups`` and
``volume1`` and also permission for FTP
1. Enable SSH (Control Panel / Terminal & SNMP / Terminal)
1. Enable SFTP (Control Panel / File Service / FTP / SFTP)
1. Enable rsync service (Control Panel / File Service / rsync)
1. Since DSM 5.1: Enable Backup Service (Backup & Replication / Backup Service)
(This seems not to be available/required anymore with DSM 6!)
1. Log on as root by SSH
1. Modify the shell of user ``backup``. Set it to ``/bin/sh`` (``vi /etc/passwd``
then navigate to the line that begins with ``backup``, press :kbd:`I` to enter
``Insert Mode``, replace ``/sbin/nologin`` with ``/bin/sh``, then finally save
and exit by pressing :kbd:`ESC` and type ``:wq`` followed by :kbd:`Enter`)
This step might have to be repeated after a major update of the Synology DSM!
Note: This is quite a dirty hack! It is suggested to upgrade to DSM 6 which doesn't need this any more!
1. Make a new directory ``/volume1/volume1/backups``
```bash
mkdir /volume1/volume1/backups
```
1. Mount ``/volume1/backups`` on ``/volume1/volume1/backups``
```bash
mount -o bind /volume1/backups /volume1/volume1/backups
```
1. To auto-mount it make a script ``/usr/syno/etc/rc.d/S99zzMountBind.sh``
```bash
#!/bin/sh
start()
{
/bin/mount -o bind /volume1/backups /volume1/volume1/backups
}
stop()
{
/bin/umount /volume1/volume1/backups
}
case "$1" in
start) start ;;
stop) stop ;;
*) ;;
esac
```
Note: If the folder ``/usr/syno/etc/rc.d`` doesn't exist, check if
``/usr/local/etc/rc.d/`` exists. If so, put it there. (After I updated to
Synology DSM 6.0beta, the first one did not exist anymore). Make sure the
execution flag of the file is checked , else it will not get run at start! To
make it executable, run: ``chmod +x /usr/local/etc/rc.d/S99zzMountBind.sh``
1. On the workstation on which you try to use BIT make SSH keys for user
``backup``, send the public key to the NAS
```bash
ssh-keygen -t rsa -f ~/.ssh/backup_id_rsa
ssh-add ~/.ssh/backup_id_rsa
ssh-copy-id -i ~/.ssh/backup_id_rsa.pub backup@<synology-ip>
ssh backup@<synology-ip>
```
1. You might get the following error:
```bash
/usr/bin/ssh-copy-id: INFO: attempting to log in with the new key(s), to filter out any that are already installed
/usr/bin/ssh-copy-id: WARNING: All keys were skipped because they already exist on the remote system.
```
1. If so, copy the public key manually to the NAS as root with
```bash
scp ~/.ssh/id_rsa.pub backup@<synology-ip>:/var/services/homes/backup/
ssh backup@<synology-ip> cat /var/services/homes/backup/id_rsa.pub >> /var/services/homes/backup/.ssh/authorized_keys
# you'll still be asked for your password on these both commands
# after this you should be able to login password-less
```
1. And proceed with the next step
1. If you are still prompted for your password when running ``ssh
backup@<synology-ip>``, check the permissions of the file
``/var/services/homes/backup/.ssh/authorized_keys``. It should be
``-rw-------``. If this is not the case, run the command
```bash
ssh backup@<synology-ip> chmod 600 /var/services/homes/backup/.ssh/authorized_keys
```
1. Now you can use *BackInTime* to perform your backup to your NAS with the user
``backup``.
## How to use Synology DSM 6 with BIT over SSH
**HowTo**
1. Enable User Home Service (Control Panel / User / Advanced). There is no need to create a volume since everything is stored in the home directory.
1. Make a new user named ``backup`` (or use your existing account). Add this user to the user group
``Administrators``. Without this, you will not be able to log in!
1. Enable SSH (Control Panel / Terminal & SNMP / Terminal)
1. Enable SFTP (Control Panel / File Service / FTP / SFTP)
1. Since DSM 5.1: Enable Backup Service (Backup & Replication / Backup Service)
(This seems not to be available/required anymore with DSM 6!) (Tests needed!)
1. On DSM 6 you can edit the user-root-dir for sFTP:
Control Panel -> File Services -> FTP -> General -> Advanced Settings -> Security Settings -> Change user root directories -> Select User
Now select the user ``backup`` and Change root directory to ``User home``
1. On the workstation on which you try to use BIT make SSH keys for user
``backup``, send the public key to the NAS
```bash
ssh-keygen -t rsa -f ~/.ssh/backup_id_rsa
ssh-add ~/.ssh/backup_id_rsa
ssh-copy-id -i ~/.ssh/backup_id_rsa.pub backup@<synology-ip>
ssh backup@<synology-ip>
```
1. You might get the following error:
```bash
/usr/bin/ssh-copy-id: INFO: attempting to log in with the new key(s), to filter out any that are already installed
/usr/bin/ssh-copy-id: WARNING: All keys were skipped because they already exist on the remote system.
```
1. If so, copy the public key manually to the NAS as root with
```bash
scp ~/.ssh/id_rsa.pub backup@<synology-ip>:/var/services/homes/backup/
ssh backup@<synology-ip> cat /var/services/homes/backup/id_rsa.pub >> /var/services/homes/backup/.ssh/authorized_keys
# you'll still be asked for your password on these both commands
# after this you should be able to login password-less
```
1. And proceed with the next step
1. If you are still prompted for your password when running ``ssh
backup@<synology-ip>``, check the permissions of the file
``/var/services/homes/backup/.ssh/authorized_keys``. It should be
``-rw-------``. If this is not the case, run the command
```bash
ssh backup@<synology-ip> chmod 600 /var/services/homes/backup/.ssh/authorized_keys
```
1. In *BackInTime* settings dialog leave the *Path* field empty
1. Now you can use *BackInTime* to perform your backup to your NAS with the user
``backup``.
**Using a non-standard port with a Synology NAS**
If you want to use the Synology NAS with non-standard SSH/SFTP port
(standard is 22), you have to change the Port on total 3 places:
1. Control Panel > Terminal: Port = <PORT_NUMBER>
1. Control Panel > FTP > SFTP: Port = <PORT_NUMBER>
1. Backup & Replication > Backup Services > Network Backup Destination: SSH
encryption port = <PORT_NUMBER>
Only if all 3 of them are set to the same port, *BackInTime* is able to
establish the connection. As a test, one can run the command
```bash
rsync -rtDHh --checksum --links --no-p --no-g --no-o --info=progress2 --no-i-r --rsh="ssh -p <PORT_NUMBER> -o IdentityFile=/home/<USER>/.ssh/id_rsa" --dry-run --chmod=Du+wx /tmp/<AN_EXISTING_FOLDER> "<USER_ON_DISKSTATION>@<SERVER_IP>:/volume1/Backups/BackinTime"
```
in a terminal (on the client PC).
## How to use Synology DSM 7 with BIT over SSH
**HowTo**
1. Enable User Home Service (Control Panel > User & Group > Advanced).
1. Make a new user named ``backup`` (or use your existing account) and add this
user to the user group ``Administrators``.
1. Enable SSH (Control Panel > Terminal & SNMP > Terminal)
1. Enable SFTP (Control Panel > File Services > FTP > SFTP)
1. Enable rsync (Control Panel > File Services > rsync)
1. Edit the user-root-directory for SFTP: Control Panel > File Services > FTP >
General > Advanced Settings > Security Settings > Change user root directories >
Select User > select the user ``backup`` > Edit and Change root directory to ``User
home``
1. Make sure the 'homes' shared folder has the default permissions and that
non-admin users and groups are not assigned Read or Write permissions on the
'homes' folder. The default permissions are described in [this
guide](https://kb.synology.com/DSM/tutorial/default_permissions_of_homes)
1. On the workstation on which you need to use BIT, make an SSH key pair for user
``backup``, and send the public key to the NAS:
```bash
ssh-keygen -t rsa -f ~/.ssh/backup_id_rsa
ssh-copy-id -i ~/.ssh/backup_id_rsa.pub backup@<synology-ip>
ssh backup@<synology-ip>
```
1. Although not strictly necessary, Synology recommend setting the permissions for
the .ssh directory and the authorized_keys file to 700, and 600 respectively:
```bash
backup@NAS:~$ chmod 700 .ssh
backup@NAS:~$ chmod 600 .ssh/authorized_keys
```
1. In *BackInTime* settings dialog leave the *Path* field empty
1. Now you can use *BackInTime* to perform your backup to your NAS with the user
``backup``.
**Using a non-standard SSH port with a Synology NAS**
If you want to use the Synology NAS with a non-standard SSH/SFTP port as advised
by the Security Advisor package, you have to change the Port in 3 places (the
default port number for all three is 22):
1. Control Panel > Terminal & SNMP > Terminal: Port = <PORT_NUMBER>
1. Control Panel > File Services > FTP > SFTP: Port number = <PORT_NUMBER>
1. Control Panel > File Services > rsync > SSH encryption port = <PORT_NUMBER>
Only if all 3 are set to the same port is *BackInTime* able to establish the
connection (don't forget to set the new port number in the BIT profiles).
To sign in with ssh using the new port number:
```bash
ssh -p PORT_NUMBER backup@<synology-ip>
```
or, for convenience you can edit or create ``~/.ssh/config`` with the following:
```
Host <synology-ip>
Port PORT_NUMBER
```
and then use just:
```bash
ssh backup@<synology-ip>
```
## Synology: "sshfs: No such file or directory" using BIT but manually ssh with rsync works
The reason (known for DSM version 7) is that the setup of ssh and sftp is
customized by Synology.
Solution ([Screenshot in Issue #1674](https://github.com/bit-team/backintime/issues/1674#issuecomment-2106059151)):
1. Go to: _Control Panel_ > _File Services_ > _Advanced Settings_ > _Change user root directories_ > _Select User_
2. Add the name of the user used for SSH on the Synology in that list.
3. At _Change root directory to:_ select _User home_.
See also
- [Issue #1674](https://github.com/bit-team/backintime/issues/1674)
- ["Change the default folder in a Synology NAS" - StackOverflow](https://stackoverflow.com/a/77454561/4865723)
## How to use Western Digital MyBook World Edition with BIT over ssh?
Device: *WesternDigital MyBook World Edition (white light) version 01.02.14 (WD MBWE)*
The BusyBox that is used by WD in MBWE for serving basic commands like ``cp``
(copy) doesn't support hardlinks. Which is a rudimentary function for
BackInTime's way of creating incremental backups. As a work-around you can
install Optware on the MBWE.
Before proceeding please make a backup of your MBWE. There is a significant
chance to break your device and lose all your data. There is good
documentation about Optware on http://mybookworld.wikidot.com/optware.
1. You have to login to MBWE's web admin and change to *Advanced Mode*.
Under *System | Advanced* you have to enable *SSH Access*. Now you can
log in as root over ssh and install Optware (assuming ``<MBWE>`` is the
address of your MyBook).
Type in terminal:
```bash
ssh root@<MBWE> #enter 'welc0me' for password (you should change this by typing 'passwd')
wget http://mybookworld.wikidot.com/local--files/optware/setup-whitelight.sh
sh setup-whitelight.sh
echo 'export PATH=$PATH:/opt/bin:/opt/sbin' >> /root/.bashrc
echo 'export PATH=/opt/bin:/opt/sbin:$PATH' >> /etc/profile
echo 'PermitUserEnvironment yes' >> /etc/sshd_config
/etc/init.d/S50sshd restart
/opt/bin/ipkg install bash coreutils rsync nano
exit
```
1. Back in MBWE's web admin go to *Users* and add a new user (``<REMOTE_USER>``
in this How-to) with *Create User Private Share* set to *Yes*.
In terminal:
```bash
ssh root@<MBWE>
chown <REMOTE_USER> /shares/<REMOTE_USER>
chmod 700 /shares/<REMOTE_USER>
/opt/bin/nano /etc/passwd
#change the line
#<REMOTE_USER>:x:503:1000:Linux User,,,:/shares:/bin/sh
#to
#<REMOTE_USER>:x:503:1000:Linux User,,,:/shares/<REMOTE_USER>:/opt/bin/bash
#save and exit by press CTRL+O and CTRL+X
exit
```
1. Next create the ssh-key for your local user.
In the terminal
```bash
ssh <REMOTE_USER>@<MBWE>
mkdir .ssh
chmod 700 .ssh
echo 'PATH=/opt/bin:/opt/sbin:/usr/bin:/bin:/usr/sbin:/sbin' >> .ssh/environment
exit
ssh-keygen -t rsa #enter for default path
ssh-add ~/.ssh/id_rsa
scp ~/.ssh/id_rsa.pub <REMOTE_USER>@<MBWE>:./ #enter password from above
ssh <REMOTE_USER>@<MBWE> #you will still have to enter your password
cat id_rsa.pub >> .ssh/authorized_keys
rm id_rsa.pub
chmod 600 .ssh/*
exit
ssh <REMOTE_USER>@<MBWE> #this time you shouldn't been asked for password anymore
exit
```
1. You can test if everything is done by enter this
```bash
ssh <REMOTE_USER>@<MBWE> cp --help
```
The output should look like:
```bash
Usage: cp [OPTION]... [-T] SOURCE DEST
or: cp [OPTION]... SOURCE... DIRECTORY
or: cp [OPTION]... -t DIRECTORY SOURCE...
Copy SOURCE to DEST, or multiple SOURCE(s) to DIRECTORY.
Mandatory arguments to long options are mandatory for short options too.
-a, --archive same as -dR --preserve=all
--backup[=CONTROL] make a backup of each existing destination file
-b like --backup but does not accept an argument
--copy-contents copy contents of special files when recursive
... (lot more lines with options)
```
But if your output looks like below you are still using the BusyBox and
will not be able to run backups with *BackInTime* over ssh:
```bash
BusyBox v1.1.1 (2009.12.24-08:39+0000) multi-call binary
Usage: cp [OPTION]... SOURCE DEST
```
# Project & Contributing & more
## Which additional features on top of a GUI does BIT provide over a self-configured rsync backup? Are there additional benefits?
Actually it's the other way around ;) *Back In Time* stores the user and group name
which will make it possible to restore permissions correctly even if UID/GID
changed. Additionally it will store the current User -> UID and Group -> GID map
so if the User/Group doesn't exist on the system during restore it will restore
to the old UID/GID.
Hard to say which additional features *Back In Time* provides. You can script all of
them in your own rsync script, too. But to name some features:
- Inhibit suspend/hibernate during take snapshot
- Shutdown system after finish
- Auto- and Smart-Removal
- Plugin- and user-callback support
## Support for specific package formats (deb, rpm, Flatpack, AppImage, Snaps, PPA, …)
We assist and support other projects providing specific distribution
packages. Thus, we suggest creating your own repository to manage and maintain
such packages. It will be mentioned in our documentation as an alternative
source for installation.
We do not directly support third-party distribution channels associated with
specific GNU/Linux distributions, unofficial repositories (e.g. Arch AUR,
Launchpad PPA) or FlatPack & Co. One reasons is our lack of resources and the
need to prioritize tasks. Another reasons is that their are distro maintainers
with much more experience and skills in packaging. We always recommend using
the official repositories of GNU/Linux distributions and contacting their
maintainers if _Back In Time_ is unavailable or out dated.
## Is BIT really not supported by Canonical Ubuntu?
Ubuntu consists of
[several repositories](https://help.ubuntu.com/community/Repositories), each
offering different levels of support. The `main` repository is maintained
by Canonical and receives regular security updates and bug fixes throughout
the 5-year support period of LTS releases.
In contrast, the `universe` repository is community-managed, meaning security
updates and bug fixes are not guaranteed and depend heavily on community
activity and volunteers. Therefore, packages in `universe` may not always be
up-to-date with the same but well-maintained packages in Debian GNU/Linux and
might miss important fixes.
_Back In Time_ is one such package in the `universe` repository. That
[package](https://packages.ubuntu.com/search?suite=all&searchon=names&keywords=backintime)
is copied from the
[Debian GNU/Linux repository](https://packages.debian.org/search?searchon=sourcenames&keywords=backintime).
It can be said that _Back In Time_ is not maintained by Canonical Ubuntu, but
by volunteers from the Community of Ubuntu.
## Move project to alternative code hoster (e.g. Codeberg, GitLab, …)
We also believe that staying with Microsoft GitHub is not a good idea. Microsoft
GitHub does not offer any exclusive feature for our project that another hoster
could not also provide. But a migration is a matter of time and resources we
currently do not have. But it is on our list. And with the current state of
discussion we seem to target [Codeberg.org](https://codeberg.org).
For more details please see
[this thread on the mailing list](https://mail.python.org/archives/list/bit-dev@python.org/message/O5XZ5SPW6WIFBFKWUBHSOUIBKEUIBPNM/).
## How to review a Pull Request
Reviewing a Pull Request (PR) isn’t just about the code—it’s also about
functionality. Changes can be tested by installing _Back In Time_ and trying
them out, even without reading the code. This allows issues to be identified
from a user’s perspective. A second pair of eyes helps catch errors, spot
overlooked issues, and improve overall quality. Fresh perspectives, knowledge
sharing, and better maintainability contribute to the long-term stability of
the project.
Check PRs labeled with
[PR: Waiting for
review](https://github.com/bit-team/backintime/pulls?q=is%3Aopen+is%3Apr+label%3A%22PR%3A+Waiting+for+review%22).
Checking the [milestone](https://github.com/bit-team/backintime/milestones)
assigned to PR can also help gauge their priority and urgency.
- Start by carefully reading the PR description to understand the proposed
changes. Ask back if something is not clear.
- When giving feedback, consider the contributor’s level of experience and
skills. Keep it polite and constructive—every beginner could be a future
maintainer.
To **test functionality**,
[check out the PR code locally](https://docs.github.com//pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/checking-out-pull-requests-locally)
on a virtual machine or your local machine. Running _Back In Time_ in a test
environment provides insights, that can be shared as findings, observations,
or suggestions for improvement.
About **code review**:
- Code should follow
[project standards](CONTRIBUTING.md#best-practice-and-recommendations)
and be structured for long-term maintainability.
- Is a PR too large or complex, suggest to breaking it down into smaller parts.
- How is the documentation?
- Are there unit tests?
- Does the changelog need an entry?
# Testing & Building
## SSH related tests are skipped
They get skipped if no SSH server is available. Please see section
[Testing & Building](CONTRIBUTING.md#testing--building) about how to setup
a SSH server on your system.
## Setup SSH Server to run unit tests
Please see section [Testing - SSH](CONTRIBUTING.md#ssh).
|