Files
oam/knowledge base/mac os x/time machine.md
2023-07-09 21:35:14 +02:00

646 B

Time Machine

Table of contents

  1. TL;DR
  2. Follow logs
  3. Further readings

TL;DR

# Follow logs.
log stream --style 'syslog' \
  --predicate 'senderImagePath contains[cd] "TimeMachine"' \
  --info --debug

# Add or set a destination.
sudo tmutil setdestination

Follow logs

  • Use stream to keep watching "tail style".
  • Use --predicate to filter out only relevant logs.
  • Add --style 'syslog' to print them out like syslog on Linux would.

Further readings