安装时,vlc不启动。如果从命令行尝试,就会得到以下错误。
$ vlc
VLC media player 3.0.11 Vetinari (revision 3.0.11-0-gdc0c5ced72)
[000055762720bb40] main libvlc: Running vlc with the default interface. Use 'cvlc' to use vlc without interface.
Qt: Session management error: None of the authentication protocols specified are supported
Fontconfig warning: FcPattern object weight does not accept value [40 200)
Segmentation fault (core dumped)发布于 2020-09-28 19:48:09
您可以通过以下方法简单地出错VLC版本:
sudo snap remove vlc并安装deb-package
sudo apt-add-repository universe
sudo apt-get update
sudo apt-get install vlc然后用它代替。
发布于 2022-09-15 10:37:45
我在Ubuntu22.04中遇到了类似的问题,但平板包版本似乎运行良好(替代上述apt安装) https://linuxhint.com/install-vlc-media-player-ubuntu22-04/
发布于 2023-03-27 01:01:08
我自己遇到了这个fontconfig警告,似乎这个问题可以在任何时候发生。就我的情况而言,解决办法如下:
sudo rm /var/cache/fontconfig/* rm ~/.cache/fontconfig/* fc-cache -r
一个一个地执行这些行。第三行可能需要一些时间,所以要有耐心。那就再跑一次。
我在Kubuntu上测试过这个。
来源:https://github.com/keshavbhatt/olivia/issues/95#issuecomment-774747492
https://askubuntu.com/questions/1278422
复制相似问题