I have a folder where I transfer home videos from a camcorder to. I find two files in this folder that are not videos...
- .fuse_hidden0000002c00000001
- .fuse_hidden0000002600000002
What are these files, and can they be safely deleted?
I have a folder where I transfer home videos from a camcorder to. I find two files in this folder that are not videos...
What are these files, and can they be safely deleted?
These are likely files that were meant to be deleted but are somehow still in use.UBF
I had such a file, and I was unable to delete the folder it was located in.
Turns out it was a vim swap file. Closing the vim session(in another terminal) solved the issue.
I had 10GB of fuse files in my Downloads that had a last-modified date of a year and a half ago, so I just deleted them. I ran the
lsof
command above and it didn't show anything using the file (which would have been really surprising)I'll uhhh... update this answer I guess if I notice anything went badly from that.
for me, it was Sonarr that was creating these keepalive files. I have Sonarr running in a docker, with access to the tv-shows on another server. On this server, the files are being created. Stopping the docker container allowed me to remove the files permanently.
Easy way
find out which process is using the hidden fuse... files and stop the process then you can remove those files.
1.
lsof {{dir-name}}/.fuse_hidde...
COMMAND | PID | USER | FD | TYPE | DEVICE | SIZE/OFF | NODE | NAME
java | 3612 | bereket | DEL | REG | 8,5 | 2282351 | .fuse_hidden
2. sudo kill {{pid}}
These files can be created on Linux based systems including Chromebook after deleting files and the program used before deletion has not released them or a system shut down suddenly for whatever reason before the delete process completed, which can happen in some instances, and in the case of many of them existing in the same folder there is usually a program fault where the program does not release them after finishing with them, as some may know you can do some file manipulation tasks on files such as delete and move while a program is using files, unlike windows Linux can manage this and completes the tasks after the program using them releases them. they are then deleted or moved etc, if you are curious as to what they were and know what file types you stored in the folder, rename them and the extension then open them, if you have the correct extension they will open in the default program.