5

我正在使用 Ubuntu 19.10。我有 nix 版本 2.3.1。我使用以下方法安装了 emacs 26.3:

nix-env -iA nixpkgs.emacs

当我启动 emacs 时,我收到以下错误消息:

(process:9100): Gtk-WARNING **: 09:41:39.668: Locale not supported by C library.
Using the fallback 'C' locale.
Gtk-Message: 09:41:39.756: Failed to load module "canberra-gtk-module"
Gtk-Message: 09:41:39.756: Failed to load module "canberra-gtk-module"
Fontconfig warning: "/etc/fonts/fonts.conf", line 5: unknown element "its:rules"
Fontconfig warning: "/etc/fonts/fonts.conf", line 6: unknown element "its:translateRule"
Fontconfig error: "/etc/fonts/fonts.conf", line 6: invalid attribute 'translate'
Fontconfig error: "/etc/fonts/fonts.conf", line 6: invalid attribute 'selector'
Fontconfig error: "/etc/fonts/fonts.conf", line 7: invalid attribute 'xmlns:its'
Fontconfig error: "/etc/fonts/fonts.conf", line 7: invalid attribute 'version'
Fontconfig warning: "/etc/fonts/fonts.conf", line 9: unknown element "description"
Fontconfig error: Cannot load config file from /etc/fonts/fonts.conf

有没有办法解决这个问题?

4

1 回答 1

2

这里的问题是,nixpkgs 中的 Emacs 是针对比 Ubuntu (2.13.1) 提供的稍旧版本的 fontconfig (2.12.6) 构建的。但是,Emacs 的 fontconfig 2.12.6 尝试读取/etc/fonts/fonts.conf主机系统的 fontconfig 2.13.1 安装的文件。同时在配置中添加了一些旧版本不理解的附加字段。

在我的系统上,我只是删除了有问题的行/etc/fonts/fonts.conf,还没有遇到任何不利影响。

于 2020-08-29T04:13:33.560 回答