Fontconfig
Можно ли в X11 настроить разный sub-pixel rendering type для разных мониторов?
Можно ли добавить шрифт .conf в систему не будучи рутом
Принудительное включение растровых шрифтов
fontconfig fonts.conf что делать
Что у вас там за проблемы со шрифтами в ваших российских электронных визах?
fontconfig pdf бешеный принтер
Шрифты в Debian Buster
debian fontconfig qt

Не работает жирный стиль в Konsole/Qt
fontconfig gentoo kde
Более свежие версии софта в slackware
А сейчас накладывать патчи на freetype уже не надо ?
fontconfig freetype шрифты
Настройка шрифтов в i3
fontconfig i3 шг
Лечение кое-какого ШГ Roboto и проч. в Ubuntu
fontconfig ubuntu шг

Как изменить параметры отображения шрифта без изменения fonts.conf?
fontconfig xft хочется странного
Метка: fontconfig
Лечим баг неправильного шрифта нумерации в WPS Office
Это багованное поделие берет рандомный (ну или последний по алфавиту) установленный пользователем шрифт и делает нумерацию в списках именно им, невзирая на все остальные настройки.

Чтобы это вылечить, нужно создать настройку fontconfig (системная библиотека Linux, ответственная за отрисовку шрифтов), в которой указать, что для программы с именем бинарника wps проблемный шрифт (в моем примере — Pechkin) принудительно заменять на другой шрифт, например, на Liberation Serif.
Нужно в файл ~/.config/fontconfig/fonts.conf или /etc/fonts/conf.d/40-wps-pechkin-font.conf написать/дописать следующее:
Pechkin wps Liberation Serif
Pechkin заменить на свой проблемный шрифт. Его имя можно узнать командой fc-list (от не рута). Обратите внимание, что тогда вы нигде в WPS Writer не сможете использовать этот шрифт.
Аналогично лечится проблема кривых ненумерованных списков нумерации в WPS Office.
Перевод «Fontconfig» на русский
Fontconfig is a font configuration and customization library, which does not depend on the X Window System.
Fontconfig — это библиотека настройки шрифтов; она не зависит от X Window System.
Fontconfig is not a rasterization library, nor does it impose a particular rasterization library on the application.
Fontconfig — это не библиотека растеризации, она не навязывает какую-то определённую библиотеку растеризации приложению.
The X-specific library ‘Xft’ uses fontconfig along with freetype to specify and rasterize fonts.
Х-зависимая библиотека ‘Xft’ использует fontconfig вместе с freetype для выбора и растеризации шрифтов.
Emile van Bergen proposed a smooth two-way transition that preserves defoma but still moves towards fontconfig.
Эмиль ван Берген (Emile van Bergen) предложил мягкий двусторонний переход, который сохраняет defoma, но выдвигает на первый план fontconfig.
The file begins with the usual XML header followed by a DOCTYPE definition, and then the<fontconfig>tag
Файл начинается обычным заголовком XML, за которым следуют задание DOCTYPE, а потом тэгfontconfig
Fontconfig is used for font specification resolution.
Для задания разрешения шрифтов используется программа fontconfig.
However there is also fontconfig, which is a more generic way for applications to find and use fonts, which is used by several applications already.
Помимо него существует fontconfig, предоставляющий приложениям более универсальный способ поиска и использования шрифтов, и уже используемый некоторыми программами.
Возможно неприемлемое содержание
Примеры предназначены только для помощи в переводе искомых слов и выражений в различных контекстах. Мы не выбираем и не утверждаем примеры, и они могут содержать неприемлемые слова или идеи. Пожалуйста, сообщайте нам о примерах, которые, на Ваш взгляд, необходимо исправить или удалить. Грубые или разговорные переводы обычно отмечены красным или оранжевым цветом.
Ничего не найдено для этого значения.
Предложить пример
Больше примеров Предложить пример
Новое: Reverso для Windows
Переводите текст из любого приложения одним щелчком мыши .
Скачать бесплатно
Перевод голосом, функции оффлайн, синонимы, спряжение, обучающие игры
Результатов: 9 . Точных совпадений: 9 . Затраченное время: 43 мс
Помогаем миллионам людей и компаний общаться более эффективно на всех языках.
Fontconfig warning

This fontcofig error is still filling up lines in my terminal I’m new to Linux distros (using Ubuntu 16.04) and I need help to solve this problem. I’ve searched for threads and found one, Fontconfig error — «out of memory», but I really can’t apply the solution presented there because my terminal is still busy laying out these errors; it may not also be the thread I need to look for because the terminal doesn’t say I’m out of memory, this happened when I opened Firefox. (I don’t want to just kill every process, I did that a couple of times now and what usually happens when things go awfully wrong, my internal HDD becomes read-only. btw, I’m still a week-old user of Ubuntu) How do I safely abort whatever the terminal is doing? I closed Firefox and the terminal stopped the warnings, but I want to know what’s behind that. Does anyone know?
asked Aug 19, 2016 at 7:44
48 5 5 bronze badges
1 Answer 1
This is a warning, not an error. It’s a message for developers about an issue that needs attention in order to prevent future problems. See this question which explains this. As an end-user of the program, you can safely ignore the warnings. This isn’t the same issue as the fontconfig error question you linked to — the message is completely different.
If you want to run Firefox from a terminal and not see all that stuff (see here), do this:
firefox >/dev/null 2>&1 &
>/dev/null 2>&1 redirects anything that would be printed to the terminal into oblivion
& tells the process to run in the background so you can keep using your terminal.
You can also add disown to the end of the command, so Firefox will not be killed when you close the terminal.
In your current case, you can either focus Firefox and close it, or in the terminal press ctrl + z to freeze the process and then send it to the background by typing bg in this case you will get your prompt back and be able to enter commands, but the process will keep printing warnings until you close either Firefox or the terminal.
Update: @Anwar pointed out that if you update to the latest Firefox (48) the fontconfig warning will be gone — see, the devs fixed it 🙂