Libreoffice 无法启动

use*_*833 4 libreoffice

尝试启动 Libreoffice,我得到:

/usr/bin/libreoffice: 161: exec: /usr/bin/oosplash: not found
Run Code Online (Sandbox Code Playgroud)

我最近通过执行以下命令搞砸了 libreoffice:

sudo sed -i 's/X-GIO-NoFuse=true/#X-GIO-NoFuse=true/' /usr/share/applications/libreoffice-*

sudo sed -i 's/X-GIO-NoFuse=true/#X-GIO-NoFuse=true/' /usr/bin/libreoffice 
Run Code Online (Sandbox Code Playgroud)

我试过:

sudo apt-get remove libreoffice-core
Run Code Online (Sandbox Code Playgroud)

其次是:

sudo apt-get install libreoffice
Run Code Online (Sandbox Code Playgroud)

你对我如何解决这个问题有任何想法吗?

BD *_*ear 5

尝试

sudo apt-get --purge remove libreoffice-core
Run Code Online (Sandbox Code Playgroud)

进而

sudo apt-get install libreoffice
Run Code Online (Sandbox Code Playgroud)

  • 在这种情况下,我经常使用 apt-get 的重新安装选项,例如:'apt-get install --reinstall libreoffice-core'。 (2认同)