0

I haven't seen this issue posted anywhere else. It's not the same issue. Basically, I'm installing Raspbian with a fresh install. I boot into it and am immediately low on disk space. Here's why:

df -h
Filesystem    Size  Used  Avail  Use%  Mounted on
/dev/root     15G   3.3G  11G    24%   /
..... a bunch of other tiny partitions
/dev/mmcblk0p1 44M  4.0k  44M    1%    /boot

I can install applications just fine. But I can't create a backup with Timeshift. It's trying to back up to my /boot partition and not my root partition. Why?

1 Answers1

1

As the man page suggests, try adding --snapshot-device /dev/root, or set backup_device_uuid in /etc/timeshift.json to configure it for your system.

Side note: /dev/root is a rather odd name, your root filesystem should be on /dev/mmcblk0p2 on an official Pi OS image, or /dev/mmcblk0p6 if you use NOOBS.

Dmitry Grigoryev
  • 27,928
  • 6
  • 53
  • 144