On Tue, Jan 14, 2025 at 11:49:25 +0000, Adam Weremczuk wrote: > After running for several hours, it refused to continue due to "no space > left on device". > > I've confirmed the problem trying to save a text file there, same error.
Please show us all of the details, *including* the actual error message that you got, *with* the command that produced it. It's especially important to have the exact command (pasted, not retyped) when it's rsync, because rsync is extremely finicky about trailing slashes, among other things. Make sure we know which directory you're in (do a "pwd" if your prompt does not make it clear), and which user you are (do an "id"). > df -hT /mnt/nvme0n1p1 > Filesystem Type Size Used Avail Use% Mounted on > /dev/nvme0n1p1 fuseblk 3.7T 1.1T 2.6T 30% /mnt/nvme0n1p1 > > df -i /mnt/nvme0n1p1 > Filesystem Inodes IUsed IFree IUse% Mounted on > /dev/nvme0n1p1 2768000256 19888329 2748111927 1% /mnt/nvme0n1p1 That level of detail is good, but we don't know that /mnt/nvme0n1p1 is actually the directory you're writing to. Also, for some odd reason, your shell prompts are missing from the pasted commands. It would be better to show "df -h" and "df -i" without the directory argument, so that we can see if some *other* file system is full, which may be the one you're writing to. Finally, please show the mount options of whatever file system is full. This means grepping something out of the output of "mount". It can be difficult to get the right line sometimes.