Partial answer (needs further work):
From dmesg
:
[368277.340304] audit: type=1400 audit(1597124108.053:1237): apparmor="ALLOWED" operation="file_lock" profile="libreoffice-soffice" name=...hex... pid=791629 comm="soffice.bin" requested_mask="wk" denied_mask="wk" fsuid=1000 ouid=1000
[368277.456475] audit: type=1400 audit(1597124108.169:1238): apparmor="ALLOWED" operation="rename_src" profile="libreoffice-soffice" name=...hex... pid=791629 comm="soffice.bin" requested_mask="wrd" denied_mask="wrd" fsuid=1000 ouid=1000
And matching apparmor rules:
$ grep -E "wk|wrd" /etc/apparmor.d/usr.lib.libreoffice.program.soffice.bin
owner @{libo_user_dirs}/**.@{libreoffice_ext} rwk, #Open files rw with the right exts
owner @{libo_user_dirs}/{,**/}lu??????????{,?}.tmp rwk, #Temporary file used when saving
owner @{HOME}/.config/libreoffice{,dev}/** rwk,
owner @{HOME}/.config/soffice.binrc.lock rwk,
owner @{HOME}/.config/QtProject.conf.lock rwk,
owner @{HOME}/.local/share/RecentDocuments/*.lock rwk,
owner @{HOME}/.config/kdeglobals.lock rwk,
Must have something to do with these. Removing the rules is possible (the 'partial answer'), but likely not the best answer, hence 'partial'. Please comment with better suggestions and I'll update the answer.
tail -n 20 /var/log/kern.log
– George Udosen Aug 19 '18 at 21:29