Welcome to Vifm Q&A, where you can ask questions about using Vifm. Registration is optional, anonymous posts are moderated. E-mail and GitHub logins are enabled.
0 votes
in vifm by
edited by

I upgraded to Ubuntu 24.04 and now when I try to change a file over ssh using vifm in vim, I get this error:

E667: Fsync failed: Unknown system error -74                                                                                                                                                    
Press ENTER or type command to continue   

What can be causing this error? How can I debug it?

Thank you

1 Answer

0 votes
by

Looks like Vim calls fsync() and the kernel returns:

[~]$ perror 74
OS error code  74:  Bad message

It can be something in the kernel (possibly caused by AppArmour and such), FUSE or sshfs itself.

If you would like to make a bug report or feature request consider using GitHub, SourceForge or e-mail. Posting such things here is acceptable, but this is not a perfect place for them.
...