Summary: | Dolphin tries to move files to trash if no space is left | ||
---|---|---|---|
Product: | [Applications] dolphin | Reporter: | jakobdev |
Component: | general | Assignee: | Dolphin Bug Assignee <dolphin-bugs-null> |
Status: | RESOLVED FIXED | ||
Severity: | normal | CC: | dolphin-bugs-null, kdedev |
Priority: | NOR | ||
Version First Reported In: | 23.08.5 | ||
Target Milestone: | --- | ||
Platform: | Manjaro | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | 25.07.70 | |
Sentry Crash Report: |
Description
jakobdev
2024-05-11 21:43:19 UTC
Thanks for the bug report. I'm sorry we weren't able to get to this yet. There have been many fixes and improvements since this was reported, and this issue may have been fixed. Can you please re-test on your system with Dolphin 25.04.3 or later and let us know if you can still reproduce the problem? If you can, please set this report back to REPORTED. Thanks! ๐๐งน โ ๏ธ This bug has been in NEEDSINFO status with no change for at least 15 days. Please provide the requested information, then set the bug status to REPORTED. If there is no change for at least 30 days, it will be automatically closed as RESOLVED WORKSFORME. For more information about our bug triaging procedures, please read https://community.kde.org/Guidelines_and_HOWTOs/Bug_triaging. Thank you for helping us make KDE software even better for everyone! The bug still exists. You can test this by yourself by making running these command (~/.local/share/Trash/info needs to be empty): dd if=/dev/zero of=/tmp/full bs=1024 count=100 mkfs.ext4 /tmp/full sudo mount -o loop /tmp/full ~/.local/share/Trash/info sudo chown -R $USER ~/.local/share/Trash/info dd if=/dev/zero of=~/.local/share/Trash/info/full bs=1024 count=100 Now ~/.local/share/Trash/info is on a full filesystem and you can reproduce this bug by moving files to the Trash. (In reply to jakobdev from comment #3) Thanks for confirming. I tested on git-master and cannot reproduce I followed your steps to create a full Trash folder (thanks for those!) When I try to move a file in Dolphin to the Trash folder, the file stays put and Dolphin displays an error Could not write to file /home/tracey/.local/share/Trash/info/log.txt.trashinfo. If you continue to experience this bug with Dolphin 25.08.0, when that reaches your system, please feel free to reopen this report. As a note, this command fails with "no such file or directory": > dd if=/dev/zero of=~/.local/share/Trash/info/full bs=1024 count=100 It needs to have the home directory spelled out > dd if=/dev/zero of=/home/$USER/.local/share/Trash/info/full bs=1024 count=100 |