+1 vote
in Operating Systems by (88.8k points)

When I open FileZilla on my Ubuntu 24, it pops up the following warning message:

An error occurred saving the transfer queue to "~/.config/filezilla/queue.sqlite3".

Some queue items might not have been saved.

How can I fix this warning message?

1 Answer

+2 votes
by (363k points)
selected by
 
Best answer

You can fix this warning issue by looking into the following things:

  • Ensure you have write access to the .config/filezilla directory and its files. Fix permissions if needed using the following commands:

chmod 755 ~/.config/filezilla
chmod 644 ~/.config/filezilla/queue.sqlite3

  • Close FileZilla and Kill Stale Processes using the following command:

kill -9 [PID]

PID is the PID of FileZilla.

  • Rename or delete the corrupted queue file using the following command:

mv ~/.config/filezilla/queue.sqlite3 ~/.config/filezilla/queue.sqlite3.bak

These steps should fix the issue.


...