10 lines
541 B
Markdown
10 lines
541 B
Markdown
After upgrading to MacOS 12.7 my time machine backup does not work anymore.
|
|
|
|
I have read to debug you can look at the logs:
|
|
|
|
``` bash
|
|
printf '\e[3J' && log show --predicate 'subsystem == "com.apple.TimeMachine"' --info --last 6h | grep -F 'eMac' | grep -Fv 'etat' | awk -F']' '{print substr($0,1,19), $NF}'
|
|
```
|
|
|
|
It couldn't find the disk anymore, even though it was available. Thus, I removed it and re-added it, but it did not recognise the disk as the same. All old backups needed to be deleted and a fresh full backup needed to be done.
|