Fontconfig error cannot load default config file no such file null

[FontConfig] [osg] [OsgEarth] Fontconfig error: Cannot load default config file: No such file: (null) #25776 Comments Describe the bug i am trying to get a small test program to work. but at run time i get this error: Fontconfig error: Cannot load default config file: No such file: (null) i’m tried to put the […]

Содержание

  1. [FontConfig] [osg] [OsgEarth] Fontconfig error: Cannot load default config file: No such file: (null) #25776
  2. Comments
  3. eladkarako / [SOLVED] ffmpeg Fontconfig error: Cannot load default config file: No such file: (null).md
  4. Fontconfig error cannot load default config file no such file null
  5. Fontconfig error: Cannot load default config file #18
  6. Comments
  7. Fontconfig error: Cannot load default config file #2675
  8. Comments

[FontConfig] [osg] [OsgEarth] Fontconfig error: Cannot load default config file: No such file: (null) #25776

Describe the bug
i am trying to get a small test program to work. but at run time i get this error:
Fontconfig error: Cannot load default config file: No such file: (null)
i’m tried to put the «/installedx64-windowsetcfonts» in the path varable but doesn’t work

Environment

  • OS: Windows 11
  • Compiler:Microsoft Visual Studio Community 2022 (64 bit) — Current Version 17.2.3

To Reproduce
Steps to reproduce the behavior:

  1. ./vcpkg install osg:x64-windows osgearth:x64-windows
  2. See error
    Repro code when

Expected behavior
Fontconfig error: Cannot load default config file: No such file: (null)
Error reading file C:/WINDOWS/fontsCascadiaCode.ttf: file not handled
Error reading file ..testsopenstreetmap_flat.earth: file not handled
[osgEarth]* [MapNodeHelper] No valid earth file loaded — aborting
[osgEarth]

Code
`//#include
#include
#include
#include
#include

#define LC «[imgui] «

using namespace osgEarth;
using namespace osgEarth::Util;

int
usage(const char* name)
<
OE_NOTICE

The text was updated successfully, but these errors were encountered:

Источник

eladkarako / [SOLVED] ffmpeg Fontconfig error: Cannot load default config file: No such file: (null).md

if you’ll try something like this:

normally it will choose the first font-file on your system,
in my case it keeps choosing Font Awesome for some reason, not 100% sure why 😕 .

the reason is that you’ll need to escape the : character as well. use backward-slash, like so: : ,
for the rest of the path use forward-slash instead of backward-slash you would normally use in Windows.

you can also escape the backward-slash with another backward-slash if you like to use that instead of forward-slash,
and it will work as well:

it is best not to do that though,

don’t forget that the backward-slash is normally an escape-character in linux based programs,
which ffmpeg was originally intended for. when possible, favor / linux like path-seperator!

here is another example using the Courier New font, near the top, it also writes the current system time, (it is broken over few lines. just copy and remove the newlines).

the above examples all run manually from the command-line,
you can also feed them into other programming languages,
or use the shellexecute API.

but,
if you create a cmd or bat (batch) files,
the % has a special meaning,
you must escape it for the sake of CMD process,
you can do this with either ^ character ( ^% ),
or another % ( %% ).

Источник

Fontconfig error cannot load default config file no such file null

Hi,
My vivaldi keeps crashing. The issue is here for the last 3-4 updates. When I run it on terminal I always get this error before the crash:
«Fontconfig error: Cannot load default config file: No such file: (null)»

Searched the internet for that and I got a generic solution to export the path for the font.
export FONTCONFIG_FILE=/etc/fonts/fonts.conf
export FONTCONFIG_PATH=/etc/fonts/

Done that didn’t work.

Not sure if the root cause is in vivaldi but it shouldn’t cause segmentation error.
here are the last logs:

I tried to report the crash using the debug executable found from here: https://help.vivaldi.com/article/reporting-crashes-on-linux/

but I think it is not reproducible with that executable.

Using arch linux.
kernel: core/linux 5.9.8.arch1-1

Vivaldi 3.4.2066.106 (Stable channel) (64-bit)
Revision 9faa7da6e287d30fe3948ac5d9d62aefe7977da5
OS Linux
JavaScript V8 8.6.395.25
Flash (Disabled)

P.S.
I noticed that vivaldi has been moved to the official arch channel not sure if this is related

Well and do you have /etc/fonts/fonts.conf ? FYI:

I think (only think) the crash could as well be caused by

[5255:5255:1117/104632.977128:ERROR:thumbnail_capture_contents.cc(288)] page load error

I noticed that vivaldi has been moved to the official arch channel not sure if this is related

Just confirming same, fwiw.

yes that was the first thing I checked (forgot to mention it)

«pacman -Qo /etc/fonts/fonts.conf
/etc/fonts/fonts.conf is owned by fontconfig 2:2.13.91+48+gfcb0420-2″

I also tried to delete all the cache and config files for a clean install run but the issue is still there.

I think (only think) the crash could as well be caused by

My eye got stack only on the font config error. I will run it again o terminal and see on the next crash if i have the same thumbnail error.

When I run it on terminal I always get this error before the crash

Can i ask — what specific activities are you doing immediately before the crash — the identical stuff each time, or purely random / variable?

Also, if you open a clean/test profile, does it still crash?

Источник

Fontconfig error: Cannot load default config file #18

I am using one of the prebuilt binaries in my project and am trying to draw text over a video file.

I am executing the process using a complex command in the form of a String[] instead of converting an ArrayList to a one command string. I had to do this to allow for the use of complex filters as having single or double quotes in a single string command doesn’t work.

The binaries compiled claim to include libfreetype and libfribidi. The documentation for drawtext (http://ffmpeg.org/ffmpeg-filters.html#drawtext-1) says that libfontconfig also needs to be included to enable the font feature and the default font fallback feature.

This seems like a catch 22 as if you don’t want include a font, ffmpeg has no way of falling back to a default.

Can you let me know if libfontconfig should be included and if not, would it be possible to make a prebuilt binary with it enabled? (I’d do it myself but am having trouble compiling)

Here is the shell output:
I/System.out﹕[Parsed_drawtext_0 @ 0xb5864420] Could not load font «(null)»: invalid argument
I/System.out﹕ Fontconfig error: Cannot load default config file
I/System.out﹕ [Parsed_drawtext_0 @ 0xb5864420] Cannot find a valid font for the family Sans
I/System.out﹕ [AVFilterGraph @ 0xb5868080] Error initializing filter ‘drawtext’ with args ‘enable=between(t, 0, 3):text=Text to write is this, overlaid:fontsize=20:fontcolor=red:x=100:y=100’
I/System.out﹕ Error opening filters!

The text was updated successfully, but these errors were encountered:

Источник

Fontconfig error: Cannot load default config file #2675

Which operating system does the issue occur on?
Clear Linux

If on linux, are you using X11 or Wayland?
It take really long time to start alacritty in X11,
Alacrritty won’t start in Wayland

Error Message:
Fontconfig error: Cannot load default config file
thread ‘main’ panicked at ‘called Result::unwrap() on an Err value: ()’, src/libcore/result.rs:999:5
stack backtrace:
0: std::sys::unix::backtrace::tracing: 👿 :unwind_backtrace
at src/libstd/sys/unix/backtrace/tracing/gcc_s.rs:39
1: std::panicking::default_hook::<>
at src/libstd/sys_common/backtrace.rs:71
at src/libstd/sys_common/backtrace.rs:59
at src/libstd/panicking.rs:197
2: std::panicking::rust_panic_with_hook
at src/libstd/panicking.rs:211
at src/libstd/panicking.rs:474
3: std::panicking::continue_panic_fmt
at src/libstd/panicking.rs:381
4: rust_begin_unwind
at src/libstd/panicking.rs:308
5: core::panicking::panic_fmt
at src/libcore/panicking.rs:85
6: core::result::unwrap_failed
at /rustc/a53f9df32fbb0b5f4382caaad8f1a46f36ea887c/src/libcore/macros.rs:18
7: 🪟 :concept_frame::ConceptFrame as smithay_client_toolkit: 🪟 :Frame>::redraw
at /rustc/a53f9df32fbb0b5f4382caaad8f1a46f36ea887c/src/libcore/result.rs:800
at ./.cargo/registry/src/github.com-1ecc6299db9ec823/smithay-client-toolkit-0.4.6/src/window/concept_frame.rs:486
8: smithay_client_toolkit: 🪟 :Window::refresh
at ./.cargo/registry/src/github.com-1ecc6299db9ec823/smithay-client-toolkit-0.4.6/src/window/mod.rs:384
9: winit::platform::platform::wayland::event_loop::EventsLoop::post_dispatch_triggers
at ./.cargo/registry/src/github.com-1ecc6299db9ec823/winit-0.19.1/src/platform/linux/wayland/event_loop.rs:272
10: alacritty::main
at ./.cargo/registry/src/github.com-1ecc6299db9ec823/winit-0.19.1/src/platform/linux/wayland/event_loop.rs:205
at ./.cargo/registry/src/github.com-1ecc6299db9ec823/winit-0.19.1/src/platform/linux/mod.rs:513
at ./.cargo/git/checkouts/alacritty-de74975f496aa2c0/f49350f/alacritty_terminal/src/window.rs:240
at ./.cargo/git/checkouts/alacritty-de74975f496aa2c0/f49350f/alacritty_terminal/src/event.rs:465
at alacritty/src/main.rs:218
at alacritty/src/main.rs:111
11: std::rt::lang_start::<>
at /rustc/a53f9df32fbb0b5f4382caaad8f1a46f36ea887c/src/libstd/rt.rs:64
12: main
13: __libc_start_main
14: _start
at ../sysdeps/x86_64/start.S:120

The text was updated successfully, but these errors were encountered:

What’s the output of alacritty —version? How did you installed alacritty?

@kchibisov
Its: alacritty 0.3.3 (f49350f)
I installed it with cargo install —git https://github.com/jwilm/alacritty

Huh, my first guess would have been incompatibility with fontconfig, but if you’ve compiled it yourself that shouldn’t be the case.

Do you have any system fontconfig setup? My best guess would be that clear linux is doing something odd here.

I did not change anything. How can I check my fontconfig?

You can check if you have the /etc/fonts folder with the conf.avail and conf.d directories and the fonts.conf and fonts.dtd files. I think those should be there on all distros.

Your own configuration should be in .config/fontconfig/ . Your system configuration should be in /etc/fonts , however you can query all configs, that are in use/presented with fc-conflist ( + — is used, — — not in use). Could you try reading the output of fc-list , maybe it’s also throwing some errors here?

@kchibisov @chrisduerr There is no such folder /etc/fonts and .config/fontconfig

  • /usr/share/defaults/fonts/conf.d/10-hinting-slight.conf: Set hintslight to hintstyle
  • /usr/share/defaults/fonts/conf.d/10-scale-bitmap-fonts.conf: Bitmap scaling
  • /usr/share/defaults/fonts/conf.d/20-unhint-clear-sans.conf: No description
  • /usr/share/defaults/fonts/conf.d/20-unhint-small-vera.conf: Disable hinting for Bitstream Vera fonts when the size is less than 8ppem
  • /usr/share/defaults/fonts/conf.d/30-metric-aliases.conf: Set substitutions for similar/metric-compatible families
  • /usr/share/defaults/fonts/conf.d/40-nonlatin.conf: Set substitutions for non-Latin fonts
  • /usr/share/defaults/fonts/conf.d/42-clear.conf: No description
  • /usr/share/defaults/fonts/conf.d/45-generic.conf: Set substitutions for emoji/math fonts
  • /usr/share/defaults/fonts/conf.d/45-latin.conf: Set substitutions for Latin fonts
  • /usr/share/defaults/fonts/conf.d/49-sansserif.conf: Add sans-serif to the family when no generic name
  • /usr/share/defaults/fonts/conf.d/50-user.conf: Load per-user customization files
  • /usr/share/defaults/fonts/conf.d/51-local.conf: Load local customization file
  • /usr/share/defaults/fonts/conf.d/60-generic.conf: Set preferable fonts for emoji/math fonts
  • /usr/share/defaults/fonts/conf.d/60-latin.conf: Set preferable fonts for Latin
  • /usr/share/defaults/fonts/conf.d/65-fonts-persian.conf: No description
  • /usr/share/defaults/fonts/conf.d/65-nonlatin.conf: Set preferable fonts for non-Latin
  • /usr/share/defaults/fonts/conf.d/69-unifont.conf: No description
  • /usr/share/defaults/fonts/conf.d/70-disable-x11-75-100-dpi.conf: Reject X11/<75,100>dpi fonts
  • /usr/share/defaults/fonts/conf.d/80-delicious.conf: No description
  • /usr/share/defaults/fonts/conf.d/90-synthetic.conf: No description
  • /usr/share/defaults/fonts/fonts.conf: Default configuration file
  • /usr/share/fontconfig/conf.avail/10-antialiasing.conf: No description
  • /usr/share/fontconfig/conf.avail/10-autohint.conf: Enable autohinter
  • /usr/share/fontconfig/conf.avail/10-hinting-full.conf: Set hintfull to hintstyle
  • /usr/share/fontconfig/conf.avail/10-hinting-medium.conf: Set hintmedium to hintstyle
  • /usr/share/fontconfig/conf.avail/10-hinting-none.conf: Set hintnone to hintstyle
  • /usr/share/fontconfig/conf.avail/10-no-sub-pixel.conf: Disable sub-pixel rendering
  • /usr/share/fontconfig/conf.avail/10-sub-pixel-bgr.conf: Enable sub-pixel rendering with the BGR stripes layout
  • /usr/share/fontconfig/conf.avail/10-sub-pixel-rgb.conf: Enable sub-pixel rendering with the RGB stripes layout
  • /usr/share/fontconfig/conf.avail/10-sub-pixel-vbgr.conf: Enable sub-pixel rendering with the vertical BGR stripes layout
  • /usr/share/fontconfig/conf.avail/10-sub-pixel-vrgb.conf: Enable sub-pixel rendering with the vertical RGB stripes layout
  • /usr/share/fontconfig/conf.avail/10-unhinted.conf: Disable hinting
  • /usr/share/fontconfig/conf.avail/11-lcdfilter-default.conf: Use lcddefault as default for LCD filter
  • /usr/share/fontconfig/conf.avail/11-lcdfilter-legacy.conf: Use lcdlegacy as default for LCD filter
  • /usr/share/fontconfig/conf.avail/11-lcdfilter-light.conf: Use lcdlight as default for LCD filter
  • /usr/share/fontconfig/conf.avail/25-unhint-nonlatin.conf: Disable hinting for CJK fonts
  • /usr/share/fontconfig/conf.avail/65-khmer.conf: No description
  • /usr/share/fontconfig/conf.avail/66-noto-mono.conf: No description
  • /usr/share/fontconfig/conf.avail/66-noto-sans.conf: No description
  • /usr/share/fontconfig/conf.avail/66-noto-serif.conf: No description
  • /usr/share/fontconfig/conf.avail/70-no-bitmaps.conf: Reject bitmap fonts
  • /usr/share/fontconfig/conf.avail/70-yes-bitmaps.conf: Accept bitmap fonts

fc-list outputs
/usr/share/fonts/noto/NotoSansGothic-Regular.ttf: Noto Sans Gothic:style=Regular
/usr/share/fonts/noto-cjk/NotoSansCJK-Light.ttc: Noto Sans CJK JP,Noto Sans CJK JP Light:style=Light,Regular
/usr/share/fonts/X11/misc/clR6x6.pcf.gz: Clean:style=Regular
/usr/share/fonts/noto/NotoSansUI-Regular.ttf: Noto Sans UI:style=Regular
/usr/share/fonts/X11/misc/7×14.pcf.gz: Fixed:style=Regular
/usr/share/fonts/noto/NotoSansTelugu-Bold.ttf: Noto Sans Telugu:style=Bold
/usr/share/fonts/roboto/Roboto-BlackItalic.ttf: Roboto:style=Black Italic
/usr/share/fonts/X11/OTF/MesloLGLDZRegularforPowerline.otf: Meslo LG L DZ for Powerline:style=RegularForPowerline
/usr/share/fonts/X11/OTF/MesloLGMDZRegularforPowerline.otf: Meslo LG M DZ for Powerline:style=RegularForPowerline
/usr/share/fonts/X11/Type1/l047033t.pfa: Luxi Mono:style=Oblique
/usr/share/fonts/noto/NotoSansDevanagari-Regular.ttf: Noto Sans Devanagari:style=Regular
/usr/share/fonts/noto-cjk/NotoSansCJK-Regular.ttc: Noto Sans CJK SC,Noto Sans CJK SC Regular:style=Regular
/usr/share/fonts/X11/misc/18x18ja.pcf.gz: Fixed:style=ja
/usr/share/fonts/noto/NotoSansGurmukhiUI-Bold.ttf: Noto Sans Gurmukhi UI:style=Bold
/usr/share/fonts/noto/NotoSansBengaliUI-Regular.ttf: Noto Sans Bengali UI:style=Regular
/usr/share/fonts/noto/NotoSansCham-Regular.ttf: Noto Sans Cham:style=Regular
/usr/share/fonts/noto/NotoSansHebrew-Regular.ttf: Noto Sans Hebrew:style=Regular
/usr/share/fonts/X11/OTF/SyrCOMQenNeshrin.otf: Estrangelo Quenneshrin:style=Regular
/usr/share/fonts/adobe-source-code-pro/SourceCodePro-BlackIt.otf: Source Code Pro,Source Code Pro Black:style=Black Italic,Italic
/usr/share/fonts/X11/OTF/Inconsolata-gforPowerline.otf: Inconsolata-g for Powerline:style=g
/usr/share/fonts/X11/TTF/ClearSans-BoldItalic.ttf: Clear Sans:style=Bold Italic
/usr/share/fonts/X11/Type1/c0649bt_.pfb: Bitstream Charter:style=Italic
/usr/share/fonts/X11/TTF/AnonymicePowerlineBold.ttf: Anonymous Pro for Powerline,Anonymice Powerline:style=Bold
/usr/share/fonts/X11/misc/clB8x16.pcf.gz: Clean:style=Bold
/usr/share/fonts/X11/misc/clR7x12.pcf.gz: Clean:style=Regular
/usr/share/fonts/noto/NotoSansSyriacEstrangela-Regular.ttf: Noto Sans Syriac Estrangela:style=Regular
/usr/share/fonts/roboto/Roboto-Regular.ttf: Roboto:style=Regular
/usr/share/fonts/noto/NotoSansGeorgian-Regular.ttf: Noto Sans Georgian:style=Regular
/usr/share/fonts/noto/NotoKufiArabic-Regular.ttf: Noto Kufi Arabic:style=Regular
/usr/share/fonts/X11/Type1/c0419bt_.pfb: Courier 10 Pitch:style=Regular
/usr/share/fonts/adobe-source-code-pro/SourceCodePro-LightIt.otf: Source Code Pro,Source Code Pro Light:style=Light Italic,Italic
/usr/share/fonts/noto-emoji/NotoColorEmoji.ttf: Noto Color Emoji:style=Regular
/usr/share/fonts/noto/NotoSansKayahLi-Regular.ttf: Noto Sans Kayah Li:style=Regular
/usr/share/fonts/noto/NotoSansUgaritic-Regular.ttf: Noto Sans Ugaritic:style=Regular
/usr/share/fonts/X11/misc/clB9x15.pcf.gz: Clean:style=Bold
/usr/share/fonts/noto/NotoSansUI-BoldItalic.ttf: Noto Sans UI:style=Bold Italic
/usr/share/fonts/X11/misc/9x18B-ISO8859-1.pcf.gz: Fixed:style=Bold
/usr/share/fonts/X11/OTF/MesloLGMRegularforPowerline.otf: Meslo LG M for Powerline:style=RegularForPowerline
/usr/share/fonts/noto/NotoSansMyanmarUI-Bold.ttf: Noto Sans Myanmar UI:style=Bold
/usr/share/fonts/noto/NotoSansDevanagari-Bold.ttf: Noto Sans Devanagari:style=Bold
/usr/share/fonts/noto/NotoSansBengaliUI-Bold.ttf: Noto Sans Bengali UI:style=Bold
/usr/share/fonts/X11/Type1/UTRG____.pfa: Utopia:style=Regular
/usr/share/fonts/noto/NotoSansCypriot-Regular.ttf: Noto Sans Cypriot:style=Regular
/usr/share/fonts/noto/NotoSansSyriacWestern-Regular.ttf: Noto Sans Syriac Western:style=Regular
/usr/share/fonts/X11/OTF/FuraMono-RegularPowerline.otf: Fira Mono for Powerline:style=Regular
/usr/share/fonts/noto/NotoSansPhoenician-Regular.ttf: Noto Sans Phoenician:style=Regular
/usr/share/fonts/noto/NotoSansKannadaUI-Bold.ttf: Noto Sans Kannada UI:style=Bold
/usr/share/fonts/X11/misc/7×14-ISO8859-1.pcf.gz: Fixed:style=Regular
/usr/share/fonts/noto/NotoSansOldPersian-Regular.ttf: Noto Sans Old Persian:style=Regular
/usr/share/fonts/X11/misc/7×13-ISO8859-1.pcf.gz: Fixed:style=Regular
/usr/share/fonts/noto/NotoSansThaiUI-Regular.ttf: Noto Sans Thai UI:style=Regular
/usr/share/fonts/X11/TTF/LiterationMonoPowerline.ttf: Liberation Mono for Powerline,Literation Mono Powerline:style=Regular
/usr/share/fonts/X11/misc/clR5x10.pcf.gz: Clean:style=Regular
/usr/share/fonts/X11/OTF/SyrCOMCtesiphon.otf: East Syriac Ctesiphon:style=Regular
/usr/share/fonts/truetype/liberation/LiberationSans-Regular.ttf: Liberation Sans:style=Regular
/usr/share/fonts/X11/OTF/SyrCOMKharput.otf: Serto Kharput:style=Regular
/usr/share/fonts/roboto/Roboto-Bold.ttf: Roboto:style=Bold
/usr/share/fonts/terminus/ter-x18n.pcf.gz: Terminus:style=Regular
/usr/share/fonts/X11/misc/clR8x8.pcf.gz: Clean:style=Regular
/usr/share/fonts/noto/NotoSansBalinese-Regular.ttf: Noto Sans Balinese:style=Regular
/usr/share/fonts/noto/NotoSansTifinagh-Regular.ttf: Noto Sans Tifinagh:style=Regular
/usr/share/fonts/X11/misc/6×10-ISO8859-1.pcf.gz: Fixed:style=Regular
/usr/share/fonts/noto/NotoSansSinhala-Regular.ttf: Noto Sans Sinhala:style=Regular
/usr/share/fonts/noto/NotoSansSundanese-Regular.ttf: Noto Sans Sundanese:style=Regular
/usr/share/fonts/X11/misc/4×6.pcf.gz: Fixed:style=Regular
/usr/share/fonts/truetype/liberation/LiberationMono-BoldItalic.ttf: Liberation Mono:style=Bold Italic
/usr/share/fonts/noto/NotoSansInscriptionalParthian-Regular.ttf: Noto Sans Inscriptional Parthian:style=Regular
/usr/share/fonts/adobe-source-code-pro/SourceCodePro-Bold.otf: Source Code Pro:style=Bold
/usr/share/fonts/cantarell/Cantarell-Light.otf: Cantarell,Cantarell Light:style=Light,Regular
/usr/share/fonts/X11/misc/7×13.pcf.gz: Fixed:style=Regular
/usr/share/fonts/noto/NotoSansOldItalic-Regular.ttf: Noto Sans Old Italic:style=Regular
/usr/share/fonts/terminus/ter-x28n.pcf.gz: Terminus:style=Regular
/usr/share/fonts/X11/misc/9x15B.pcf.gz: Fixed:style=Bold
/usr/share/fonts/noto/NotoSansGujarati-Bold.ttf: Noto Sans Gujarati:style=Bold
/usr/share/fonts/noto-cjk/NotoSansCJK-Medium.ttc: Noto Sans CJK KR,Noto Sans CJK KR Medium:style=Medium,Regular
/usr/share/fonts/terminus/ter-x12b.pcf.gz: Terminus:style=Bold
/usr/share/fonts/X11/Type1/l047036t.pfa: Luxi Mono:style=Bold Oblique
/usr/share/fonts/X11/TTF/MonofurItalicforPowerline.ttf: monofur for Powerline:style=italic
/usr/share/fonts/noto/NotoNaskhArabicUI-Bold.ttf: Noto Naskh Arabic UI:style=Bold
/usr/share/fonts/X11/misc/clR5x8.pcf.gz: Clean:style=Regular
/usr/share/fonts/X11/misc/9x15B-ISO8859-1.pcf.gz: Fixed:style=Bold
/usr/share/fonts/truetype/liberation/LiberationSerif-Italic.ttf: Liberation Serif:style=Italic
/usr/share/fonts/adobe-source-code-pro/SourceCodePro-Regular.otf: Source Code Pro:style=Regular
/usr/share/fonts/noto-cjk/NotoSansCJK-Regular.ttc: Noto Sans CJK TC,Noto Sans CJK TC Regular:style=Regular
/usr/share/fonts/noto/NotoSansHanunoo-Regular.ttf: Noto Sans Hanunoo:style=Regular
/usr/share/fonts/X11/Type1/c0633bt_.pfb: Bitstream Charter:style=Bold Italic
/usr/share/fonts/X11/Type1/c0648bt_.pfb: Bitstream Charter:style=Regular
/usr/share/fonts/terminus/ter-x20n.pcf.gz: Terminus:style=Regular
/usr/share/fonts/noto/NotoSansOldTurkic-Regular.ttf: Noto Sans Old Turkic:style=Regular
/usr/share/fonts/noto/NotoSansOsmanya-Regular.ttf: Noto Sans Osmanya:style=Regular
/usr/share/fonts/X11/misc/clR9x15.pcf.gz: Clean:style=Regular
/usr/share/fonts/noto/NotoSansKhmer-Bold.ttf: Noto Sans Khmer:style=Bold
/usr/share/fonts/truetype/liberation/LiberationMono-Bold.ttf: Liberation Mono:style=Bold
/usr/share/fonts/noto/Arimo-BoldItalic.ttf: Arimo:style=Bold Italic
/usr/share/fonts/terminus/ter-x12n.pcf.gz: Terminus:style=Regular
/usr/share/fonts/terminus/ter-x32b.pcf.gz: Terminus:style=Bold
/usr/share/fonts/X11/TTF/ClearSans-MediumItalic.ttf: Clear Sans Medium:style=Italic
/usr/share/fonts/X11/Type1/cursor.pfa: Cursor:style=Regular
/usr/share/fonts/X11/misc/clR7x8.pcf.gz: Clean:style=Regular
/usr/share/fonts/adobe-source-code-pro/SourceCodePro-Medium.otf: Source Code Pro,Source Code Pro Medium:style=Medium,Regular
/usr/share/fonts/noto/NotoSansCarian-Regular.ttf: Noto Sans Carian:style=Regular
/usr/share/fonts/X11/misc/8×13-ISO8859-1.pcf.gz: Fixed:style=Regular
/usr/share/fonts/X11/misc/clR6x8.pcf.gz: Clean:style=Regular
/usr/share/fonts/terminus/ter-x22b.pcf.gz: Terminus:style=Bold
/usr/share/fonts/noto/NotoSansMyanmar-Bold.ttf: Noto Sans Myanmar:style=Bold
/usr/share/fonts/X11/misc/9×15-ISO8859-1.pcf.gz: Fixed:style=Regular
/usr/share/fonts/X11/misc/6x13O-ISO8859-1.pcf.gz: Fixed:style=Oblique SemiCondensed
/usr/share/fonts/roboto/Roboto-Black.ttf: Roboto:style=Black
/usr/share/fonts/adobe-source-code-pro/SourceCodePro-MediumIt.otf: Source Code Pro,Source Code Pro Medium:style=Medium Italic,Italic
/usr/share/fonts/noto/NotoSansShavian-Regular.ttf: Noto Sans Shavian:style=Regular
/usr/share/fonts/X11/misc/10×20-ISO8859-1.pcf.gz: Fixed:style=Regular
/usr/share/fonts/X11/misc/7x13B.pcf.gz: Fixed:style=Bold
/usr/share/fonts/noto/NotoSansKannada-Bold.ttf: Noto Sans Kannada:style=Bold
/usr/share/fonts/noto/NotoSerifGeorgian-Bold.ttf: Noto Serif Georgian:style=Bold
/usr/share/fonts/noto/NotoSansOgham-Regular.ttf: Noto Sans Ogham:style=Regular
/usr/share/fonts/noto/NotoSansOriyaUI-Bold.ttf: Noto Sans Oriya UI:style=Bold
/usr/share/fonts/noto-cjk/NotoSansCJK-DemiLight.ttc: Noto Sans CJK KR,Noto Sans CJK KR DemiLight:style=DemiLight,Regular
/usr/share/fonts/terminus/ter-x32n.pcf.gz: Terminus:style=Regular
/usr/share/fonts/X11/misc/clR8x10.pcf.gz: Clean:style=Regular
/usr/share/fonts/X11/misc/cu12.pcf.gz: ClearlyU:style=Regular
/usr/share/fonts/X11/OTF/SyrCOMTalada.otf: Estrangelo Talada:style=Regular
/usr/share/fonts/X11/Type1/courb.pfa: Courier:style=Bold
/usr/share/fonts/X11/TTF/MonofurBoldforPowerline.ttf: monofur for Powerline:style=bold
/usr/share/fonts/X11/misc/deccurs.pcf.gz: deccurs.pcf:style=Regular
/usr/share/fonts/noto/NotoSansLinearB-Regular.ttf: Noto Sans Linear B:style=Regular
/usr/share/fonts/X11/misc/clR6x12.pcf.gz: Clean:style=Regular
/usr/share/fonts/X11/TTF/UbuntuMonoderivativePowerlineBoldItalic.ttf: Ubuntu Mono derivative Powerline:style=Bold Italic
/usr/share/fonts/X11/misc/9×15.pcf.gz: Fixed:style=Regular
/usr/share/fonts/noto/NotoSans-Italic.ttf: Noto Sans:style=Italic
/usr/share/fonts/terminus/ter-x22n.pcf.gz: Terminus:style=Regular
/usr/share/fonts/noto-cjk/NotoSansCJK-Bold.ttc: Noto Sans Mono CJK KR,Noto Sans Mono CJK KR Bold:style=Bold,Regular
/usr/share/fonts/noto/NotoSerif-BoldItalic.ttf: Noto Serif:style=Bold Italic
/usr/share/fonts/X11/misc/9x18B.pcf.gz: Fixed:style=Bold
/usr/share/fonts/noto/NotoSerifLao-Regular.ttf: Noto Serif Lao:style=Regular
/usr/share/fonts/noto/NotoSansKannadaUI-Regular.ttf: Noto Sans Kannada UI:style=Regular
/usr/share/fonts/terminus/ter-x18b.pcf.gz: Terminus:style=Bold
/usr/share/fonts/noto/NotoSansTamil-Bold.ttf: Noto Sans Tamil:style=Bold
/usr/share/fonts/noto/NotoSansKhmer-Regular.ttf: Noto Sans Khmer:style=Regular
/usr/share/fonts/X11/Type1/l049016t.pfa: Luxi Serif:style=Bold
/usr/share/fonts/noto/NotoSansKaithi-Regular.ttf: Noto Sans Kaithi:style=Regular
/usr/share/fonts/X11/Type1/c0611bt_.pfb: Courier 10 Pitch:style=Bold Italic
/usr/share/fonts/adobe-source-code-pro/SourceCodePro-Light.otf: Source Code Pro,Source Code Pro Light:style=Light,Regular
/usr/share/fonts/terminus/ter-x28b.pcf.gz: Terminus:style=Bold
/usr/share/fonts/X11/Type1/UTI_____.pfa: Utopia:style=Italic
/usr/share/fonts/noto/NotoSansLaoUI-Bold.ttf: Noto Sans Lao UI:style=Bold
/usr/share/fonts/X11/misc/8x13B.pcf.gz: Fixed:style=Bold
/usr/share/fonts/X11/TTF/ClearSans-Bold.ttf: Clear Sans:style=Bold
/usr/share/fonts/X11/misc/9×18-ISO8859-1.pcf.gz: Fixed:style=Regular
/usr/share/fonts/noto/NotoSansTamilUI-Regular.ttf: Noto Sans Tamil UI:style=Regular
/usr/share/fonts/roboto/RobotoCondensed-Italic.ttf: Roboto Condensed:style=Italic
/usr/share/fonts/noto-cjk/NotoSansCJK-Regular.ttc: Noto Sans Mono CJK KR,Noto Sans Mono CJK KR Regular:style=Regular
/usr/share/fonts/X11/misc/clB8x10.pcf.gz: Clean:style=Bold
/usr/share/fonts/X11/OTF/SyrCOMUrhoyBold.otf: Serto Urhoy:style=Bold
/usr/share/fonts/X11/TTF/UbuntuMonoderivativePowerlineItalic.ttf: Ubuntu Mono derivative Powerline:style=Italic
/usr/share/fonts/X11/misc/clR7x10.pcf.gz: Clean:style=Regular
/usr/share/fonts/roboto/Roboto-Italic.ttf: Roboto:style=Italic
/usr/share/fonts/X11/Type1/UTBI____.pfa: Utopia:style=Bold Italic
/usr/share/fonts/noto/NotoSansSyriacEastern-Regular.ttf: Noto Sans Syriac Eastern:style=Regular
/usr/share/fonts/noto/Tinos-BoldItalic.ttf: Tinos:style=Bold Italic
/usr/share/fonts/terminus/ter-x20b.pcf.gz: Terminus:style=Bold
/usr/share/fonts/X11/OTF/SauceCodePowerlineRegular.otf: Source Code Pro for Powerline,Sauce Code Powerline:style=Regular
/usr/share/fonts/noto/NotoSerifArmenian-Regular.ttf: Noto Serif Armenian:style=Regular
/usr/share/fonts/noto/NotoSansKannada-Regular.ttf: Noto Sans Kannada:style=Regular
/usr/share/fonts/terminus/ter-x16b.pcf.gz: Terminus:style=Bold
/usr/share/fonts/truetype/liberation/LiberationSerif-Bold.ttf: Liberation Serif:style=Bold
/usr/share/fonts/noto/NotoSansGurmukhi-Bold.ttf: Noto Sans Gurmukhi:style=Bold
/usr/share/fonts/X11/misc/6×10.pcf.gz: Fixed:style=Regular
/usr/share/fonts/X11/misc/9×18.pcf.gz: Fixed:style=Regular
/usr/share/fonts/noto/NotoSansKhmerUI-Bold.ttf: Noto Sans Khmer UI:style=Bold
/usr/share/fonts/noto/NotoKufiArabic-Bold.ttf: Noto Kufi Arabic:style=Bold
/usr/share/fonts/noto-cjk/NotoSansCJK-Bold.ttc: Noto Sans Mono CJK JP,Noto Sans Mono CJK JP Bold:style=Bold,Regular
/usr/share/fonts/noto/NotoSansTibetan-Regular.ttf: Noto Sans Tibetan:style=Regular
/usr/share/fonts/roboto/Roboto-Medium.ttf: Roboto:style=Medium
/usr/share/fonts/X11/misc/10×20.pcf.gz: Fixed:style=Regular
/usr/share/fonts/cantarell/Cantarell-Bold.otf: Cantarell:style=Bold
/usr/share/fonts/X11/OTF/SyrCOMTurAbdin.otf: Estrangelo TurAbdin:style=Regular
/usr/share/fonts/noto-cjk/NotoSansCJK-Bold.ttc: Noto Sans CJK TC,Noto Sans CJK TC Bold:style=Bold,Regular
/usr/share/fonts/noto/NotoSansSaurashtra-Regular.ttf: Noto Sans Saurashtra:style=Regular
/usr/share/fonts/noto/NotoSansGurmukhiUI-Regular.ttf: Noto Sans Gurmukhi UI:style=Regular
/usr/share/fonts/noto/NotoSansOldSouthArabian-Regular.ttf: Noto Sans Old South Arabian:style=Regular
/usr/share/fonts/noto-cjk/NotoSansCJK-DemiLight.ttc: Noto Sans CJK TC,Noto Sans CJK TC DemiLight:style=DemiLight,Regular
/usr/share/fonts/X11/misc/clI6x12.pcf.gz: Clean:style=Italic
/usr/share/fonts/noto/NotoSans-Bold.ttf: Noto Sans:style=Bold
/usr/share/fonts/truetype/liberation/LiberationMono-Regular.ttf: Liberation Mono:style=Regular
/usr/share/fonts/noto/NotoSerif-Bold.ttf: Noto Serif:style=Bold
/usr/share/fonts/cantarell/Cantarell-ExtraBold.otf: Cantarell,Cantarell Extra Bold:style=Extra Bold,Regular
/usr/share/fonts/X11/OTF/FuraMono-BoldPowerline.otf: Fira Mono for Powerline:style=Bold
/usr/share/fonts/X11/misc/cu-alt12.pcf.gz: ClearlyU Alternate Glyphs:style=Regular
/usr/share/fonts/X11/Type1/cour.pfa: Courier:style=Regular
/usr/share/fonts/noto/NotoSansTeluguUI-Regular.ttf: Noto Sans Telugu UI:style=Regular
/usr/share/fonts/X11/TTF/AnonymicePowerlineBoldItalic.ttf: Anonymous Pro for Powerline,Anonymice Powerline:style=Bold Italic
/usr/share/fonts/X11/Type1/couri.pfa: Courier:style=Italic
/usr/share/fonts/X11/OTF/SyrCOMEdessa.otf: Estrangelo Edessa:style=Regular
/usr/share/fonts/truetype/liberation/LiberationSans-Italic.ttf: Liberation Sans:style=Italic
/usr/share/fonts/X11/OTF/SauceCodePowerlineMedium.otf: Source Code Pro for Powerline,Source Code Pro Medium:style=Medium,Regular
/usr/share/fonts/noto/NotoSansTagalog-Regular.ttf: Noto Sans Tagalog:style=Regular
/usr/share/fonts/noto/NotoSansBuhid-Regular.ttf: Noto Sans Buhid:style=Regular
/usr/share/fonts/noto/NotoSansBengali-Bold.ttf: Noto Sans Bengali:style=Bold
/usr/share/fonts/roboto/Roboto-Light.ttf: Roboto:style=Light
/usr/share/fonts/noto-cjk/NotoSansCJK-Thin.ttc: Noto Sans CJK JP,Noto Sans CJK JP Thin:style=Thin,Regular
/usr/share/fonts/noto/NotoSansGurmukhi-Regular.ttf: Noto Sans Gurmukhi:style=Regular
/usr/share/fonts/X11/misc/5×7-ISO8859-1.pcf.gz: Fixed:style=Regular
/usr/share/fonts/noto/NotoSansYi-Regular.ttf: Noto Sans Yi:style=Regular
/usr/share/fonts/noto/NotoSansThai-Bold.ttf: Noto Sans Thai:style=Bold
/usr/share/fonts/X11/OTF/SyrCOMMidyat.otf: Estrangelo Midyat:style=Regular
/usr/share/fonts/terminus/ter-x14b.pcf.gz: Terminus:style=Bold
/usr/share/fonts/X11/TTF/ClearSans-Italic.ttf: Clear Sans:style=Italic
/usr/share/fonts/noto/Cousine-Italic.ttf: Cousine:style=Italic
/usr/share/fonts/noto-cjk/NotoSansCJK-Regular.ttc: Noto Sans Mono CJK JP,Noto Sans Mono CJK JP Regular:style=Regular
/usr/share/fonts/noto-cjk/NotoSansCJK-Black.ttc: Noto Sans CJK TC,Noto Sans CJK TC Black:style=Black,Regular
/usr/share/fonts/X11/misc/6×13.pcf.gz: Fixed:style=SemiCondensed
/usr/share/fonts/X11/OTF/MesloLGLRegularforPowerline.otf: Meslo LG L for Powerline:style=RegularForPowerline
/usr/share/fonts/noto/NotoSansBengali-Regular.ttf: Noto Sans Bengali:style=Regular
/usr/share/fonts/X11/OTF/InconsolataforPowerline.otf: Inconsolata for Powerline:style=Medium
/usr/share/fonts/noto/NotoSerifThai-Bold.ttf: Noto Serif Thai:style=Bold
/usr/share/fonts/noto/NotoSansOlChiki-Regular.ttf: Noto Sans Ol Chiki:style=Regular
/usr/share/fonts/truetype/liberation/LiberationSerif-BoldItalic.ttf: Liberation Serif:style=Bold Italic
/usr/share/fonts/noto/NotoSansMalayalamUI-Bold.ttf: Noto Sans Malayalam UI:style=Bold
/usr/share/fonts/noto-cjk/NotoSansCJK-Light.ttc: Noto Sans CJK KR,Noto Sans CJK KR Light:style=Light,Regular
/usr/share/fonts/roboto/Roboto-Thin.ttf: Roboto:style=Thin
/usr/share/fonts/noto/NotoSansRunic-Regular.ttf: Noto Sans Runic:style=Regular
/usr/share/fonts/noto/NotoSansTagbanwa-Regular.ttf: Noto Sans Tagbanwa:style=Regular
/usr/share/fonts/X11/Type1/l048016t.pfa: Luxi Sans:style=Bold
/usr/share/fonts/noto-cjk/NotoSansCJK-Thin.ttc: Noto Sans CJK KR,Noto Sans CJK KR Thin:style=Thin,Regular
/usr/share/fonts/X11/OTF/SyrCOMJerusalemItalic.otf: Serto Jerusalem:style=Italic
/usr/share/fonts/noto/NotoSansBamum-Regular.ttf: Noto Sans Bamum:style=Regular
/usr/share/fonts/X11/misc/clR6x12-ISO8859-1.pcf.gz: Clean:style=Regular
/usr/share/fonts/roboto/RobotoCondensed-Regular.ttf: Roboto Condensed:style=Regular
/usr/share/fonts/noto/NotoSansPhagsPa-Regular.ttf: Noto Sans Phags Pa:style=Regular
/usr/share/fonts/X11/misc/7x13O.pcf.gz: Fixed:style=Oblique
/usr/share/fonts/roboto/RobotoCondensed-LightItalic.ttf: Roboto Condensed:style=Light Italic
/usr/share/fonts/adobe-source-code-pro/SourceCodePro-Black.otf: Source Code Pro,Source Code Pro Black:style=Black,Regular
/usr/share/fonts/noto/NotoSansTelugu-Regular.ttf: Noto Sans Telugu:style=Regular
/usr/share/fonts/noto/NotoSansMalayalamUI-Regular.ttf: Noto Sans Malayalam UI:style=Regular
/usr/share/fonts/noto/NotoSansLycian-Regular.ttf: Noto Sans Lycian:style=Regular
/usr/share/fonts/X11/misc/12×24.pcf.gz: Fixed:style=Regular
/usr/share/fonts/X11/OTF/SyrCOMNisibin.otf: Estrangelo Nisibin:style=Regular
/usr/share/fonts/X11/misc/micro.pcf.gz: micro.pcf:style=Regular
/usr/share/fonts/noto/NotoSansArmenian-Regular.ttf: Noto Sans Armenian:style=Regular
/usr/share/fonts/X11/misc/clR8x16.pcf.gz: Clean:style=Regular
/usr/share/fonts/noto-cjk/NotoSansCJK-Regular.ttc: Noto Sans CJK KR,Noto Sans CJK KR Regular:style=Regular
/usr/share/fonts/noto-cjk/NotoSansCJK-Bold.ttc: Noto Sans CJK SC,Noto Sans CJK SC Bold:style=Bold,Regular
/usr/share/fonts/roboto/Roboto-BoldItalic.ttf: Roboto:style=Bold Italic
/usr/share/fonts/adobe-source-code-pro/SourceCodePro-ExtraLight.otf: Source Code Pro,Source Code Pro ExtraLight:style=ExtraLight,Regular
/usr/share/fonts/terminus/ter-x24b.pcf.gz: Terminus:style=Bold
/usr/share/fonts/noto/NotoSansVai-Regular.ttf: Noto Sans Vai:style=Regular
/usr/share/fonts/X11/OTF/SauceCodePowerlineLight.otf: Source Code Pro for Powerline,Source Code Pro Light:style=Light,Regular
/usr/share/fonts/X11/misc/clR6x10.pcf.gz: Clean:style=Regular
/usr/share/fonts/X11/OTF/SauceCodePowerlineBold.otf: Source Code Pro for Powerline,Sauce Code Powerline:style=Bold
/usr/share/fonts/X11/OTF/SyrCOMBatnan.otf: Serto Batnan:style=Regular
/usr/share/fonts/cantarell/Cantarell-Thin.otf: Cantarell,Cantarell Thin:style=Thin,Regular
/usr/share/fonts/noto/NotoSerifArmenian-Bold.ttf: Noto Serif Armenian:style=Bold
/usr/share/fonts/noto/NotoSansMandaic-Regular.ttf: Noto Sans Mandaic:style=Regular
/usr/share/fonts/noto/NotoSansThaana-Regular.ttf: Noto Sans Thaana:style=Regular
/usr/share/fonts/X11/misc/decsess.pcf.gz: decsess.pcf:style=Regular
/usr/share/fonts/noto/NotoSansKharoshthi-Regular.ttf: Noto Sans Kharoshthi:style=Regular
/usr/share/fonts/X11/Type1/UTB_____.pfa: Utopia:style=Bold
/usr/share/fonts/X11/Type1/l047016t.pfa: Luxi Mono:style=Bold
/usr/share/fonts/noto-cjk/NotoSansCJK-Light.ttc: Noto Sans CJK TC,Noto Sans CJK TC Light:style=Light,Regular
/usr/share/fonts/noto/Tinos-Bold.ttf: Tinos:style=Bold
/usr/share/fonts/noto/NotoSansCherokee-Regular.ttf: Noto Sans Cherokee:style=Regular
/usr/share/fonts/X11/misc/cursor.pcf.gz: cursor.pcf:style=Regular
/usr/share/fonts/noto/NotoSansBuginese-Regular.ttf: Noto Sans Buginese:style=Regular
/usr/share/fonts/noto/Tinos-Italic.ttf: Tinos:style=Italic
/usr/share/fonts/X11/misc/6×9.pcf.gz: Fixed:style=Regular
/usr/share/fonts/X11/TTF/UbuntuMonoderivativePowerlineBold.ttf: Ubuntu Mono derivative Powerline:style=Bold
/usr/share/fonts/noto-cjk/NotoSansCJK-Bold.ttc: Noto Sans Mono CJK TC,Noto Sans Mono CJK TC Bold:style=Bold,Regular
/usr/share/fonts/X11/misc/8x13O.pcf.gz: Fixed:style=Oblique
/usr/share/fonts/X11/OTF/SyrCOMMardin.otf: Serto Mardin:style=Regular
/usr/share/fonts/noto/NotoSansOriya-Regular.ttf: Noto Sans Oriya:style=Regular
/usr/share/fonts/noto/NotoSerif-Regular.ttf: Noto Serif:style=Regular
/usr/share/fonts/noto/NotoSansLao-Regular.ttf: Noto Sans Lao:style=Regular
/usr/share/fonts/X11/OTF/SauceCodePowerlineSemibold.otf: Source Code Pro for Powerline,Source Code Pro Semibold:style=Semibold,Regular
/usr/share/fonts/noto/NotoSansMyanmarUI-Regular.ttf: Noto Sans Myanmar UI:style=Regular
/usr/share/fonts/X11/misc/clB8x12.pcf.gz: Clean:style=Bold
/usr/share/fonts/X11/misc/6x13B-ISO8859-1.pcf.gz: Fixed:style=Bold SemiCondensed
/usr/share/fonts/noto/NotoSansHistoric-Regular.ttf: Noto Sans Historic:style=Regular
/usr/share/fonts/X11/misc/cu-pua12.pcf.gz: ClearlyU PUA:style=Regular
/usr/share/fonts/X11/misc/4×6-ISO8859-1.pcf.gz: Fixed:style=Regular
/usr/share/fonts/noto/NotoSansTibetan-Bold.ttf: Noto Sans Tibetan:style=Bold
/usr/share/fonts/roboto/RobotoCondensed-BoldItalic.ttf: Roboto Condensed:style=Bold Italic
/usr/share/fonts/noto/Arimo-Italic.ttf: Arimo:style=Italic
/usr/share/fonts/noto/NotoSansLao-Bold.ttf: Noto Sans Lao:style=Bold
/usr/share/fonts/X11/Type1/l049036t.pfa: Luxi Serif:style=Bold Oblique
/usr/share/fonts/X11/Type1/l048036t.pfa: Luxi Sans:style=Bold Oblique
/usr/share/fonts/X11/TTF/DejaVuSansMonoBoldforPowerline.ttf: DejaVu Sans Mono for Powerline:style=Bold
/usr/share/fonts/noto/NotoSansNKo-Regular.ttf: Noto Sans NKo:style=Regular
/usr/share/fonts/noto/NotoSansThai-Regular.ttf: Noto Sans Thai:style=Regular
/usr/share/fonts/noto/NotoSansOriyaUI-Regular.ttf: Noto Sans Oriya UI:style=Regular
/usr/share/fonts/noto/NotoSansLimbu-Regular.ttf: Noto Sans Limbu:style=Regular
/usr/share/fonts/noto/NotoSansTaiTham-Regular.ttf: Noto Sans Tai Tham:style=Regular
/usr/share/fonts/X11/misc/6x13O.pcf.gz: Fixed:style=Oblique SemiCondensed
/usr/share/fonts/X11/misc/5×8-ISO8859-1.pcf.gz: Fixed:style=Regular
/usr/share/fonts/noto-cjk/NotoSansCJK-Regular.ttc: Noto Sans CJK JP,Noto Sans CJK JP Regular:style=Regular
/usr/share/fonts/X11/OTF/SyrCOMBatnanBold.otf: Serto Batnan:style=Bold
/usr/share/fonts/X11/misc/clR8x13.pcf.gz: Clean:style=Regular
/usr/share/fonts/X11/TTF/LiterationMonoPowerlineItalic.ttf: Liberation Mono for Powerline,Literation Mono Powerline:style=Italic
/usr/share/fonts/noto/NotoSansGlagolitic-Regular.ttf: Noto Sans Glagolitic:style=Regular
/usr/share/fonts/noto/NotoNastaliqUrdu-Regular.ttf: Noto Nastaliq Urdu:style=Regular
/usr/share/fonts/noto/NotoSansTamil-Regular.ttf: Noto Sans Tamil:style=Regular
/usr/share/fonts/adobe-source-code-pro/SourceCodePro-BoldIt.otf: Source Code Pro:style=Bold Italic
/usr/share/fonts/X11/OTF/MesloLGSDZRegularforPowerline.otf: Meslo LG S DZ for Powerline:style=RegularForPowerline
/usr/share/fonts/X11/TTF/ClearSans-Thin.ttf: Clear Sans Thin:style=Regular
/usr/share/fonts/X11/Type1/courbi.pfa: Courier:style=Bold Italic
/usr/share/fonts/noto/NotoSansBatak-Regular.ttf: Noto Sans Batak:style=Regular
/usr/share/fonts/noto-cjk/NotoSansCJK-Black.ttc: Noto Sans CJK KR,Noto Sans CJK KR Black:style=Black,Regular
/usr/share/fonts/truetype/liberation/LiberationMono-Italic.ttf: Liberation Mono:style=Italic
/usr/share/fonts/truetype/liberation/LiberationSans-BoldItalic.ttf: Liberation Sans:style=Bold Italic
/usr/share/fonts/X11/Type1/c0632bt_.pfb: Bitstream Charter:style=Bold
/usr/share/fonts/X11/misc/clB6x10.pcf.gz: Clean:style=Bold
/usr/share/fonts/X11/OTF/SyrCOMMalankara.otf: Serto Malankara:style=Regular
/usr/share/fonts/noto-cjk/NotoSansCJK-Light.ttc: Noto Sans CJK SC,Noto Sans CJK SC Light:style=Light,Regular
/usr/share/fonts/noto/NotoSansLepcha-Regular.ttf: Noto Sans Lepcha:style=Regular
/usr/share/fonts/X11/TTF/UbuntuMonoderivativePowerline.ttf: Ubuntu Mono derivative Powerline:style=Regular
/usr/share/fonts/noto/NotoSansGujarati-Regular.ttf: Noto Sans Gujarati:style=Regular
/usr/share/fonts/X11/Type1/c0582bt_.pfb: Courier 10 Pitch:style=Italic
/usr/share/fonts/noto/NotoSansDeseret-Regular.ttf: Noto Sans Deseret:style=Regular
/usr/share/fonts/X11/Type1/c0583bt_.pfb: Courier 10 Pitch:style=Bold
/usr/share/fonts/adobe-source-code-pro/SourceCodePro-ExtraLightIt.otf: Source Code Pro,Source Code Pro ExtraLight:style=ExtraLight Italic,Italic
/usr/share/fonts/noto/NotoSerifLao-Bold.ttf: Noto Serif Lao:style=Bold
/usr/share/fonts/noto/NotoSerifKhmer-Bold.ttf: Noto Serif Khmer:style=Bold
/usr/share/fonts/X11/OTF/SyrCOMUrhoy.otf: Serto Urhoy:style=Regular
/usr/share/fonts/roboto/RobotoCondensed-Light.ttf: Roboto Condensed:style=Light
/usr/share/fonts/noto/NotoSerifThai-Regular.ttf: Noto Serif Thai:style=Regular
/usr/share/fonts/X11/misc/7x13B-ISO8859-1.pcf.gz: Fixed:style=Bold
/usr/share/fonts/noto/NotoSansAvestan-Regular.ttf: Noto Sans Avestan:style=Regular
/usr/share/fonts/noto/Arimo-Bold.ttf: Arimo:style=Bold
/usr/share/fonts/roboto/Roboto-MediumItalic.ttf: Roboto:style=Medium Italic
/usr/share/fonts/noto/NotoSansSymbols-Regular.ttf: Noto Sans Symbols:style=Regular
/usr/share/fonts/noto/NotoSansOriya-Bold.ttf: Noto Sans Oriya:style=Bold
/usr/share/fonts/noto/NotoSansLisu-Regular.ttf: Noto Sans Lisu:style=Regular
/usr/share/fonts/noto/NotoSansHebrew-Bold.ttf: Noto Sans Hebrew:style=Bold
/usr/share/fonts/noto/NotoSansCuneiform-Regular.ttf: Noto Sans Cuneiform:style=Regular
/usr/share/fonts/noto/NotoSansTeluguUI-Bold.ttf: Noto Sans Telugu UI:style=Bold
/usr/share/fonts/noto/NotoSansGujaratiUI-Bold.ttf: Noto Sans Gujarati UI:style=Bold
/usr/share/fonts/noto/NotoSansJavanese-Regular.ttf: Noto Sans Javanese:style=Regular
/usr/share/fonts/noto-cjk/NotoSansCJK-Thin.ttc: Noto Sans CJK SC,Noto Sans CJK SC Thin:style=Thin,Regular
/usr/share/fonts/noto/NotoSansUI-Italic.ttf: Noto Sans UI:style=Italic
/usr/share/fonts/X11/OTF/SyrCOMNisibinOutline.otf: Estrangelo Nisibin Outline:style=Regular
/usr/share/fonts/noto-cjk/NotoSansCJK-Thin.ttc: Noto Sans CJK TC,Noto Sans CJK TC Thin:style=Thin,Regular
/usr/share/fonts/noto/NotoSansLydian-Regular.ttf: Noto Sans Lydian:style=Regular
/usr/share/fonts/noto/NotoSansCanadianAboriginal-Regular.ttf: Noto Sans Canadian Aboriginal:style=Regular
/usr/share/fonts/X11/OTF/SauceCodePowerlineBlack.otf: Source Code Pro for Powerline,Source Code Pro Black:style=Black,Regular
/usr/share/fonts/X11/OTF/Inconsolata-dzforPowerline.otf: Inconsolata-dz for Powerline:style=dz
/usr/share/fonts/noto/NotoSansSylotiNagri-Regular.ttf: Noto Sans Syloti Nagri:style=Regular
/usr/share/fonts/X11/TTF/AnonymicePowerline.ttf: Anonymous Pro for Powerline,Anonymice Powerline:style=Regular
/usr/share/fonts/truetype/liberation/LiberationSerif-Regular.ttf: Liberation Serif:style=Regular
/usr/share/fonts/roboto/Roboto-LightItalic.ttf: Roboto:style=Light Italic
/usr/share/fonts/noto/NotoSerifKhmer-Regular.ttf: Noto Serif Khmer:style=Regular
/usr/share/fonts/noto/Cousine-Bold.ttf: Cousine:style=Bold
/usr/share/fonts/noto/NotoSansDevanagariUI-Regular.ttf: Noto Sans Devanagari UI:style=Regular
/usr/share/fonts/noto/NotoSansCham-Bold.ttf: Noto Sans Cham:style=Bold
/usr/share/fonts/noto/NotoSansLaoUI-Regular.ttf: Noto Sans Lao UI:style=Regular
/usr/share/fonts/noto/NotoSansTamilUI-Bold.ttf: Noto Sans Tamil UI:style=Bold
/usr/share/fonts/noto/NotoSerif-Italic.ttf: Noto Serif:style=Italic
/usr/share/fonts/X11/misc/clR8x14.pcf.gz: Clean:style=Regular
/usr/share/fonts/X11/OTF/DroidSansMonoforPowerline.otf: Droid Sans Mono for Powerline:style=Regular
/usr/share/fonts/X11/TTF/ClearSans-Regular.ttf: Clear Sans:style=Regular
/usr/share/fonts/noto/NotoSansEgyptianHieroglyphs-Regular.ttf: Noto Sans Egyptian Hieroglyphs:style=Regular
/usr/share/fonts/X11/OTF/SyrCOMMardinBold.otf: Serto Mardin:style=Bold
/usr/share/fonts/noto/NotoSansTaiViet-Regular.ttf: Noto Sans Tai Viet:style=Regular
/usr/share/fonts/noto-cjk/NotoSansCJK-Bold.ttc: Noto Sans Mono CJK SC,Noto Sans Mono CJK SC Bold:style=Bold,Regular
/usr/share/fonts/noto/Cousine-BoldItalic.ttf: Cousine:style=Bold Italic
/usr/share/fonts/X11/TTF/DejaVuSansMonoObliqueforPowerline.ttf: DejaVu Sans Mono for Powerline:style=Oblique
/usr/share/fonts/X11/TTF/AnonymicePowerlineItalic.ttf: Anonymous Pro for Powerline,Anonymice Powerline:style=Italic
/usr/share/fonts/X11/misc/5×7.pcf.gz: Fixed:style=Regular
/usr/share/fonts/noto/NotoSansCoptic-Regular.ttf: Noto Sans Coptic:style=Regular
/usr/share/fonts/noto/NotoSansInscriptionalPahlavi-Regular.ttf: Noto Sans Inscriptional Pahlavi:style=Regular
/usr/share/fonts/noto/NotoSansUI-Bold.ttf: Noto Sans UI:style=Bold
/usr/share/fonts/noto-cjk/NotoSansCJK-Bold.ttc: Noto Sans CJK KR,Noto Sans CJK KR Bold:style=Bold,Regular
/usr/share/fonts/X11/TTF/ClearSans-Light.ttf: Clear Sans Light:style=Regular
/usr/share/fonts/X11/misc/18x18ko.pcf.gz: Fixed:style=ko
/usr/share/fonts/noto/NotoSansMalayalam-Bold.ttf: Noto Sans Malayalam:style=Bold
/usr/share/fonts/X11/misc/8x13B-ISO8859-1.pcf.gz: Fixed:style=Bold
/usr/share/fonts/noto/NotoSansGujaratiUI-Regular.ttf: Noto Sans Gujarati UI:style=Regular
/usr/share/fonts/noto-cjk/NotoSansCJK-Black.ttc: Noto Sans CJK SC,Noto Sans CJK SC Black:style=Black,Regular
/usr/share/fonts/roboto/RobotoCondensed-Bold.ttf: Roboto Condensed:style=Bold
/usr/share/fonts/noto-cjk/NotoSansCJK-Bold.ttc: Noto Sans CJK JP,Noto Sans CJK JP Bold:style=Bold,Regular
/usr/share/fonts/X11/OTF/SyrCOMJerusalem.otf: Serto Jerusalem:style=Regular
/usr/share/fonts/noto-cjk/NotoSansCJK-DemiLight.ttc: Noto Sans CJK SC,Noto Sans CJK SC DemiLight:style=DemiLight,Regular
/usr/share/fonts/X11/misc/arabic24.pcf.gz: Newspaper:style=Regular
/usr/share/fonts/noto/NotoSansSamaritan-Regular.ttf: Noto Sans Samaritan:style=Regular
/usr/share/fonts/X11/OTF/FuraMono-MediumPowerline.otf: Fira Mono Medium for Powerline:style=Medium,Regular
/usr/share/fonts/X11/misc/6×12.pcf.gz: Fixed:style=SemiCondensed
/usr/share/fonts/X11/misc/clB8x14.pcf.gz: Clean:style=Bold
/usr/share/fonts/X11/misc/clR7x14.pcf.gz: Clean:style=Regular
/usr/share/fonts/X11/Type1/l049033t.pfa: Luxi Serif:style=Oblique
/usr/share/fonts/noto/NotoNaskhArabic-Bold.ttf: Noto Naskh Arabic:style=Bold
/usr/share/fonts/X11/misc/8×13.pcf.gz: Fixed:style=Regular
/usr/share/fonts/noto/Tinos-Regular.ttf: Tinos:style=Regular
/usr/share/fonts/noto/NotoSerifGeorgian-Regular.ttf: Noto Serif Georgian:style=Regular
/usr/share/fonts/adobe-source-code-pro/SourceCodePro-SemiboldIt.otf: Source Code Pro,Source Code Pro Semibold:style=Semibold Italic,Italic
/usr/share/fonts/noto/NotoSansArmenian-Bold.ttf: Noto Sans Armenian:style=Bold
/usr/share/fonts/X11/TTF/LiterationMonoPowerlineBoldItalic.ttf: Liberation Mono for Powerline,Literation Mono Powerline:style=Bold Italic
/usr/share/fonts/X11/Type1/l048013t.pfa: Luxi Sans:style=Regular
/usr/share/fonts/X11/TTF/ClearSans-Medium.ttf: Clear Sans Medium:style=Regular
/usr/share/fonts/X11/TTF/MonofurforPowerline.ttf: monofur for Powerline:style=Regular
/usr/share/fonts/noto/NotoSansMongolian-Regular.ttf: Noto Sans Mongolian:style=Regular
/usr/share/fonts/noto-cjk/NotoSansCJK-Regular.ttc: Noto Sans Mono CJK TC,Noto Sans Mono CJK TC Regular:style=Regular
/usr/share/fonts/X11/Type1/l049013t.pfa: Luxi Serif:style=Regular
/usr/share/fonts/noto-cjk/NotoSansCJK-Medium.ttc: Noto Sans CJK SC,Noto Sans CJK SC Medium:style=Medium,Regular
/usr/share/fonts/noto-cjk/NotoSansCJK-Regular.ttc: Noto Sans Mono CJK SC,Noto Sans Mono CJK SC Regular:style=Regular
/usr/share/fonts/truetype/liberation/LiberationSans-Bold.ttf: Liberation Sans:style=Bold
/usr/share/fonts/X11/TTF/DejaVuSansMonoBoldObliqueforPowerline.ttf: DejaVu Sans Mono for Powerline:style=Bold Oblique
/usr/share/fonts/noto/NotoSansNewTaiLue-Regular.ttf: Noto Sans New Tai Lue:style=Regular
/usr/share/fonts/noto/NotoSansImperialAramaic-Regular.ttf: Noto Sans Imperial Aramaic:style=Regular
/usr/share/fonts/X11/misc/clR6x13.pcf.gz: Clean:style=Regular
/usr/share/fonts/X11/OTF/SauceCodePowerlineExtraLight.otf: Source Code Pro for Powerline,Source Code Pro ExtraLight:style=ExtraLight,Regular
/usr/share/fonts/X11/misc/6×13-ISO8859-1.pcf.gz: Fixed:style=SemiCondensed
/usr/share/fonts/cantarell/Cantarell-Regular.otf: Cantarell:style=Regular
/usr/share/fonts/noto/NotoSansGeorgian-Bold.ttf: Noto Sans Georgian:style=Bold
/usr/share/fonts/X11/OTF/SyrCOMJerusalemBold.otf: Serto Jerusalem:style=Bold
/usr/share/fonts/X11/OTF/SyrCOMAntioch.otf: Estrangelo Antioch:style=Regular
/usr/share/fonts/X11/misc/clB6x12.pcf.gz: Clean:style=Bold
/usr/share/fonts/X11/TTF/LiterationMonoPowerlineBold.ttf: Liberation Mono for Powerline,Literation Mono Powerline:style=Bold
/usr/share/fonts/noto/NotoSans-Regular.ttf: Noto Sans:style=Regular
/usr/share/fonts/adobe-source-code-pro/SourceCodePro-It.otf: Source Code Pro:style=Italic
/usr/share/fonts/X11/misc/6×12-ISO8859-1.pcf.gz: Fixed:style=SemiCondensed
/usr/share/fonts/X11/misc/7x14B.pcf.gz: Fixed:style=Bold
/usr/share/fonts/X11/misc/8x13O-ISO8859-1.pcf.gz: Fixed:style=Oblique
/usr/share/fonts/terminus/ter-x14n.pcf.gz: Terminus:style=Regular
/usr/share/fonts/noto/Arimo-Regular.ttf: Arimo:style=Regular
/usr/share/fonts/X11/TTF/DejaVuSansMonoforPowerline.ttf: DejaVu Sans Mono for Powerline:style=Book
/usr/share/fonts/X11/misc/clI8x8.pcf.gz: Clean:style=Italic
/usr/share/fonts/noto/NotoSansMyanmar-Regular.ttf: Noto Sans Myanmar:style=Regular
/usr/share/fonts/X11/misc/clB8x8.pcf.gz: Clean:style=Bold
/usr/share/fonts/X11/misc/7x13O-ISO8859-1.pcf.gz: Fixed:style=Oblique
/usr/share/fonts/noto/NotoNaskhArabic-Regular.ttf: Noto Naskh Arabic:style=Regular
/usr/share/fonts/noto/NotoSansMeeteiMayek-Regular.ttf: Noto Sans Meetei Mayek:style=Regular
/usr/share/fonts/noto/NotoNaskhArabicUI-Regular.ttf: Noto Naskh Arabic UI:style=Regular
/usr/share/fonts/noto-cjk/NotoSansCJK-DemiLight.ttc: Noto Sans CJK JP,Noto Sans CJK JP DemiLight:style=DemiLight,Regular
/usr/share/fonts/X11/Type1/l047013t.pfa: Luxi Mono:style=Regular
/usr/share/fonts/noto-cjk/NotoSansCJK-Black.ttc: Noto Sans CJK JP,Noto Sans CJK JP Black:style=Black,Regular
/usr/share/fonts/X11/misc/clB8x13.pcf.gz: Clean:style=Bold
/usr/share/fonts/noto/NotoSansThaana-Bold.ttf: Noto Sans Thaana:style=Bold
/usr/share/fonts/X11/misc/5×8.pcf.gz: Fixed:style=Regular
/usr/share/fonts/X11/OTF/SyrCOMAdiabene.otf: East Syriac Adiabene:style=Regular
/usr/share/fonts/X11/misc/12x13ja.pcf.gz: Fixed:style=ja
/usr/share/fonts/X11/misc/8×16.pcf.gz: Fixed:style=Regular
/usr/share/fonts/noto-cjk/NotoSansCJK-Medium.ttc: Noto Sans CJK JP,Noto Sans CJK JP Medium:style=Medium,Regular
/usr/share/fonts/noto/Cousine-Regular.ttf: Cousine:style=Regular
/usr/share/fonts/X11/misc/7x14B-ISO8859-1.pcf.gz: Fixed:style=Bold
/usr/share/fonts/X11/OTF/MesloLGSRegularforPowerline.otf: Meslo LG S for Powerline:style=RegularForPowerline
/usr/share/fonts/adobe-source-code-pro/SourceCodePro-Semibold.otf: Source Code Pro,Source Code Pro Semibold:style=Semibold,Regular
/usr/share/fonts/X11/misc/clR5x6.pcf.gz: Clean:style=Regular
/usr/share/fonts/X11/misc/6×9-ISO8859-1.pcf.gz: Fixed:style=Regular
/usr/share/fonts/noto/NotoSansMalayalam-Regular.ttf: Noto Sans Malayalam:style=Regular
/usr/share/fonts/noto/NotoSansRejang-Regular.ttf: Noto Sans Rejang:style=Regular
/usr/share/fonts/noto/NotoSansSinhala-Bold.ttf: Noto Sans Sinhala:style=Bold
/usr/share/fonts/X11/Type1/l048033t.pfa: Luxi Sans:style=Oblique
/usr/share/fonts/roboto/Roboto-ThinItalic.ttf: Roboto:style=Thin Italic
/usr/share/fonts/noto/NotoSansEthiopic-Regular.ttf: Noto Sans Ethiopic:style=Regular
/usr/share/fonts/X11/misc/6x13B.pcf.gz: Fixed:style=Bold SemiCondensed
/usr/share/fonts/noto/NotoSansThaiUI-Bold.ttf: Noto Sans Thai UI:style=Bold
/usr/share/fonts/X11/misc/clR4x6.pcf.gz: Clean:style=Regular
/usr/share/fonts/noto/NotoSansEthiopic-Bold.ttf: Noto Sans Ethiopic:style=Bold
/usr/share/fonts/X11/OTF/SyrCOMJerusalemOutline.otf: Serto Jerusalem Outline:style=Regular
/usr/share/fonts/terminus/ter-x24n.pcf.gz: Terminus:style=Regular
/usr/share/fonts/noto/NotoSansDevanagariUI-Bold.ttf: Noto Sans Devanagari UI:style=Bold
/usr/share/fonts/X11/misc/clR8x12.pcf.gz: Clean:style=Regular
/usr/share/fonts/noto-cjk/NotoSansCJK-Medium.ttc: Noto Sans CJK TC,Noto Sans CJK TC Medium:style=Medium,Regular
/usr/share/fonts/noto/NotoSansKhmerUI-Regular.ttf: Noto Sans Khmer UI:style=Regular
/usr/share/fonts/terminus/ter-x16n.pcf.gz: Terminus:style=Regular
/usr/share/fonts/noto/NotoSansBrahmi-Regular.ttf: Noto Sans Brahmi:style=Regular
/usr/share/fonts/noto/NotoSans-BoldItalic.ttf: Noto Sans:style=Bold Italic
/usr/share/fonts/noto-emoji/NotoEmoji-Regular.ttf: Noto Emoji:style=Regular

I think these two look fine. Guess the bug is caused by missing those two folders

Источник

This topic has been deleted. Only users with topic management privileges can see it.

  • Hi,
    My vivaldi keeps crashing. The issue is here for the last 3-4 updates. When I run it on terminal I always get this error before the crash:
    «Fontconfig error: Cannot load default config file: No such file: (null)»

    Searched the internet for that and I got a generic solution to export the path for the font.
    export FONTCONFIG_FILE=/etc/fonts/fonts.conf
    export FONTCONFIG_PATH=/etc/fonts/

    Done that didn’t work.

    Not sure if the root cause is in vivaldi but it shouldn’t cause segmentation error.
    here are the last logs:

    *[5289:5301:1117/104545.859266:ERROR:ssl_client_socket_impl.cc(960)] handshake failed; returned -1, SSL error code 1, net_error -202
    [5255:5255:1117/104556.190740:ERROR:CONSOLE(0)] "Unchecked runtime.lastError: Could not find guest", source: chrome-extension://mpognobbkildjkofajifpdfhcoklimli/browser.html (0)
    [5255:5255:1117/104556.214900:ERROR:CONSOLE(0)] "Unchecked runtime.lastError: Could not find guest", source: chrome-extension://mpognobbkildjkofajifpdfhcoklimli/browser.html (0)
    [5255:5255:1117/104556.214971:ERROR:CONSOLE(0)] "Unchecked runtime.lastError: Could not find guest", source: chrome-extension://mpognobbkildjkofajifpdfhcoklimli/browser.html (0)
    [5255:5255:1117/104556.977574:ERROR:CONSOLE(0)] "Unchecked runtime.lastError: Could not find guest", source: chrome-extension://mpognobbkildjkofajifpdfhcoklimli/browser.html (0)
    [5255:5255:1117/104556.994042:ERROR:CONSOLE(0)] "Unchecked runtime.lastError: Could not find guest", source: chrome-extension://mpognobbkildjkofajifpdfhcoklimli/browser.html (0)
    [5255:5255:1117/104556.994161:ERROR:CONSOLE(0)] "Unchecked runtime.lastError: Could not find guest", source: chrome-extension://mpognobbkildjkofajifpdfhcoklimli/browser.html (0)
    [5255:5255:1117/104557.602688:ERROR:CONSOLE(0)] "Unchecked runtime.lastError: Could not find guest", source: chrome-extension://mpognobbkildjkofajifpdfhcoklimli/browser.html (0)
    [5255:5255:1117/104557.627904:ERROR:CONSOLE(0)] "Unchecked runtime.lastError: Could not find guest", source: chrome-extension://mpognobbkildjkofajifpdfhcoklimli/browser.html (0)
    [5255:5255:1117/104557.630766:ERROR:CONSOLE(0)] "Unchecked runtime.lastError: Could not find guest", source: chrome-extension://mpognobbkildjkofajifpdfhcoklimli/browser.html (0)
    [5255:5255:1117/104557.630873:ERROR:CONSOLE(0)] "Unchecked runtime.lastError: Could not find guest", source: chrome-extension://mpognobbkildjkofajifpdfhcoklimli/browser.html (0)
    [5255:5255:1117/104558.392124:ERROR:CONSOLE(0)] "Unchecked runtime.lastError: Could not find guest", source: chrome-extension://mpognobbkildjkofajifpdfhcoklimli/browser.html (0)
    [5255:5255:1117/104558.408631:ERROR:CONSOLE(0)] "Unchecked runtime.lastError: Could not find guest", source: chrome-extension://mpognobbkildjkofajifpdfhcoklimli/browser.html (0)
    [5255:5255:1117/104558.410067:ERROR:CONSOLE(0)] "Unchecked runtime.lastError: Could not find guest", source: chrome-extension://mpognobbkildjkofajifpdfhcoklimli/browser.html (0)
    Fontconfig error: Cannot load default config file: No such file: (null)
    [5255:5255:1117/104632.977128:ERROR:thumbnail_capture_contents.cc(288)] page load error
    Segmentation fault (core dumped)"*
    

    I tried to report the crash using the debug executable found from here: https://help.vivaldi.com/article/reporting-crashes-on-linux/

    but I think it is not reproducible with that executable.

    Using arch linux.
    kernel: core/linux 5.9.8.arch1-1

    Vivaldi 3.4.2066.106 (Stable channel) (64-bit)
    Revision 9faa7da6e287d30fe3948ac5d9d62aefe7977da5
    OS Linux
    JavaScript V8 8.6.395.25
    Flash (Disabled)

    P.S.
    I noticed that vivaldi has been moved to the official arch channel not sure if this is related

  • Well and do you have /etc/fonts/fonts.conf? FYI:

    $ pacman -Qo /etc/fonts/fonts.conf
    /etc/fonts/fonts.conf is owned by fontconfig 2:2.13.91+48+gfcb0420-2
    

    I think (only think) the crash could as well be caused by

    [5255:5255:1117/104632.977128:ERROR:thumbnail_capture_contents.cc(288)] page load error


    I noticed that vivaldi has been moved to the official arch channel not sure if this is related

    Not at all.

  • Just confirming same, fwiw.

    [email protected][~] 20:14:22 Tue Nov 17 $> pacman -Qo /etc/fonts/fonts.conf
    /etc/fonts/fonts.conf is owned by fontconfig 2:2.13.91+48+gfcb0420-2
    
  • yes that was the first thing I checked (forgot to mention it)

    «pacman -Qo /etc/fonts/fonts.conf
    /etc/fonts/fonts.conf is owned by fontconfig 2:2.13.91+48+gfcb0420-2″

    I also tried to delete all the cache and config files for a clean install run but the issue is still there.

    I think (only think) the crash could as well be caused by

    My eye got stack only on the font config error. I will run it again o terminal and see on the next crash if i have the same thumbnail error.

  • @nickname13 You said in OP:

    When I run it on terminal I always get this error before the crash

    Can i ask — what specific activities are you doing immediately before the crash — the identical stuff each time, or purely random / variable?

    Also, if you open a clean/test profile, does it still crash?

  • @Steffie
    random staff.
    most of the times it crashes on the background.

  • @nickname13 OK… & the profile?

  • @Steffie Cool, I didn’t even notice it isn’t at startup.

  • @Steffie I will have to test it. Never used the profile. I will use the guest profile for some time.

    But in the past I tried to clean everything (cache and config) and I only kept the bookmarks. Isn’t that pretty much the same?

  • @nickname13 No, because I have a suspicion it is because of bookmarks.

    One other thing to try, make a new empty bookmarks folder & set it as speed dial. Make sure it’s the first folder there (so no bookmarks are visible in a new tab). Stop using the SD altogether (for some time).

  • @all
    Thanks a lot.
    Will try all those things

    @Gwen-Dragon I saw those but there was not reported any crash I think. just the logs. anyway thanks!

  • @nickname13 Just to clarify, so we all know we’re talking about the same thing … i’m not alluding to anything rocket-sciencey, just simply this:

    477d7946-0ce8-4c45-b42e-db036395ff09-image.png

  • @Steffie Yes thanks. There is also a guest profile there so I will use that one instead of creating a new profile

  • After 24 hours with no crash following @potmeklecbohdan advice on creating an empty bookmark folder and set it as speed dial. I can safely say that this workaround works perfectly.

    Thanks everybody.

    P.S. so I guess the real issue is when it fails to fetch thumbnails for my bookmarks? and how is this prevented with the speed dial folder? Anyway….

  • @nickname13 I don’t know why… simply, when I once wanted to inspect the SD coz of modding, V crashed. & it kept crashing every time soon after switching to another SD folder. Before & after this it behaved pretty well, coz I have the SD just coz I’m too lazy to disable all the folders there (& I have the first of them empty).

    I didn’t report it back then as I couldn’t reproduce it with what I thought caused it in a clean profile, but now that I’m not the only one… please report it.

  • Forum rules
    Before you post please read how to get help. Topics in this forum are automatically closed 6 months after creation.

    Petermint

    Level 9
    Level 9
    Posts: 2591
    Joined: Tue Feb 16, 2016 3:12 am

    Fontconfig error: Cannot load default config file [solved]

    Fontconfig error: Cannot load default config file

    Linux Mint 19.1 with all updates. Running a GTK based program that works with small amounts of data then fails with this error message for large amounts of data. The data listed on the screen is mostly directory and file names. That is the only data that changes between a working execution and a failed execution.

    When the program works, all the data is displayed with the default font. When the program fails, the display shows square boxes indicating characters that cannot be displayed. The command line box shows the error message. Every character is shown as an error, not just weird characters that might not appear in the default font.

    All the directory and file names appear ok in the command line display and in Nemo.

    Searches find nothing for the error under GTK. The error message is listed for Gentoo, Ubuntu, and other distributions of Linux but only back in 2012. The «solutions» do not match up to anything in LM 19.1.

    Last edited by LockBot on Wed Dec 28, 2022 7:16 am, edited 2 times in total.

    Reason: Topic automatically closed 6 months after creation. New replies are no longer allowed.

    Petermint

    Level 9
    Level 9
    Posts: 2591
    Joined: Tue Feb 16, 2016 3:12 am

    Re: Fontconfig error: Cannot load default config file

    Post

    by Petermint » Tue Jan 29, 2019 12:56 am

    Thank you for the reinstall line. Much easier to follow compared to the 2012 posts. Unfortunately it did not change anything.

    I did find another solution. The code uses an opendir for every directory and leaves them open until the code finishes with them. I changed the code to close the directories earlier. There might be a dozen open instead of a hundred. The display no longer breaks.

    Memory usage is down only a small bit from 44MB to 41MB so it is not memory. It must be some weird error in opendir that tramples over something else, in this case the GTK application code.

    davidlogo

    Re: Fontconfig error: Cannot load default config file

    Post

    by davidlogo » Mon May 20, 2019 10:20 am

    Petermint wrote: ↑

    Tue Jan 29, 2019 12:56 am


    Thank you for the reinstall line. Much easier to follow compared to the 2012 posts. Unfortunately it did not change anything.

    I did find another solution. The code uses an opendir for every directory and leaves them open until the code finishes with them. I changed the code to close the directories earlier. There might be a dozen open instead of a hundred. The display no longer breaks.

    Memory usage is down only a small bit from 44MB to 41MB so it is not memory. It must be some weird error in opendir that tramples over something else, in this case the GTK application code.

    i am having the same problem, Could you explain how you changed the code to close the directories earlier please?

    Petermint

    Level 9
    Level 9
    Posts: 2591
    Joined: Tue Feb 16, 2016 3:12 am

    Re: Fontconfig error: Cannot load default config file [solved]

    Post

    by Petermint » Mon May 20, 2019 6:41 pm

    My code opened a directory, read the entries, and processed each one immediately.
    If an entry is a subdirectory, the code opened the subdirectory immediately.
    If an entry is a file, the code opened the file to process the file.
    I changed the code to read all the entries from a directory into a list, close the directory, then process the list.

    At any one time, there would only be one directory or one file open. All the other files and directories are just entries in the list.

    I made one list for directories and one for files. That let me work through all the directories first to gather the file names. I could then process the files and, perhaps, put the file processing out into threads.

     
    #!/bin/sh 
    # xinitrc runs automatically when you run startx. 
    # There are some small but important commands that need to be run when we start 
    # the graphical environment. There is a link to this file in ~/.xprofile 
    # because that file is run automatically if someone uses a display manager 
    # (login screen) and so they are needed there. To prevent doubling up commands, 
    # I source them here with the line below. 
    if [ -f "${XDG_CONFIG_HOME:-$HOME/.config}/x11/xprofile" ]; then 
            . "${XDG_CONFIG_HOME:-$HOME/.config}/x11/xprofile" 
    else 
            . "$HOME/.zprofile" 
    fi 
    if [ -d /etc/X11/xinit/xinitrc.d ] ; then 
     for f in /etc/X11/xinit/xinitrc.d/?*.sh ; do 
      [ -x "$f" ] && . "$f" 
     done 
     unset f 
    fi 
    exec dwm 
    $ strace -ftt dwm -o /tmp/dwm.strace 
    19:12:26.384271 execve("/usr/local/bin/dwm", ["dwm", "-o", "/tmp/dwm.strace"], 0x7ffe10f40ec8 /* 61 vars */) = 0 
    19:12:26.384560 brk(NULL)               = 0x55ddd48b1000 
    19:12:26.384625 arch_prctl(0x3001 /* ARCH_??? */, 0x7ffcde3b35c0) = -1 EINVAL (Invalid argument) 
    19:12:26.384828 access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory) 
    19:12:26.385015 openat(AT_FDCWD, "/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3 
    19:12:26.385104 newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=94539, ...}, AT_EMPTY_PATH) = 0 
    19:12:26.385181 mmap(NULL, 94539, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f2e65478000 
    19:12:26.385242 close(3)                = 0 
    19:12:26.385305 openat(AT_FDCWD, "/usr/lib/libX11.so.6", O_RDONLY|O_CLOEXEC) = 3 
    19:12:26.385360 read(3, "177ELF2113>1"..., 832) = 832 
    19:12:26.385420 newfstatat(3, "", {st_mode=S_IFREG|0755, st_size=1321184, ...}, AT_EMPTY_PATH) = 0 
    19:12:26.385468 mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f2e65476000 
    19:12:26.385512 mmap(NULL, 1325296, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f2e65332000 
    19:12:26.385548 mmap(0x7f2e6534e000, 573440, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1c000) = 0x7f2e6534e000 
    19:12:26.385592 mmap(0x7f2e653da000, 610304, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xa8000) = 0x7f2e653da000 
    19:12:26.385633 mmap(0x7f2e6546f000, 28672, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x13c000) = 0x7f2e6546f000
    19:12:26.385696 close(3)                = 0 
    19:12:26.385738 openat(AT_FDCWD, "/usr/lib/libXinerama.so.1", O_RDONLY|O_CLOEXEC) = 3 
    19:12:26.385782 read(3, "177ELF2113>1"..., 832) = 832 
    19:12:26.385823 newfstatat(3, "", {st_mode=S_IFREG|0755, st_size=14128, ...}, AT_EMPTY_PATH) = 0 
    19:12:26.385869 mmap(NULL, 16552, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f2e6532d000 
    19:12:26.385907 mmap(0x7f2e6532e000, 4096, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1000) = 0x7f2e6532e000 
    19:12:26.385950 mmap(0x7f2e6532f000, 4096, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f2e6532f000 
    19:12:26.385990 mmap(0x7f2e65330000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f2e65330000 
    19:12:26.386045 close(3)                = 0 
    19:12:26.386081 openat(AT_FDCWD, "/usr/lib/libfontconfig.so.1", O_RDONLY|O_CLOEXEC) = 3 
    19:12:26.386123 read(3, "177ELF2113>1"..., 832) = 832 
    19:12:26.386163 newfstatat(3, "", {st_mode=S_IFREG|0755, st_size=321416, ...}, AT_EMPTY_PATH) = 0 
    19:12:26.386208 mmap(NULL, 324224, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f2e652dd000 
    19:12:26.386246 mprotect(0x7f2e652e5000, 282624, PROT_NONE) = 0 
    19:12:26.386286 mmap(0x7f2e652e5000, 184320, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x8000) = 0x7f2e652e5000 
    19:12:26.386326 mmap(0x7f2e65312000, 94208, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x35000) = 0x7f2e65312000 
    19:12:26.386362 mmap(0x7f2e6532a000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x4c000) = 0x7f2e6532a000 
    19:12:26.386412 close(3)                = 0 
    19:12:26.386447 openat(AT_FDCWD, "/usr/lib/libXft.so.2", O_RDONLY|O_CLOEXEC) = 3 
    19:12:26.386488 read(3, "177ELF2113>1"..., 832) = 832 
    19:12:26.386528 newfstatat(3, "", {st_mode=S_IFREG|0755, st_size=96208, ...}, AT_EMPTY_PATH) = 0 
    19:12:26.386575 mmap(NULL, 98664, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f2e652c4000 
    19:12:26.386615 mmap(0x7f2e652c8000, 61440, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x4000) = 0x7f2e652c8000 
    19:12:26.386654 mmap(0x7f2e652d7000, 16384, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x13000) = 0x7f2e652d7000 
    19:12:26.386693 mmap(0x7f2e652db000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x16000) = 0x7f2e652db000 
    19:12:26.386747 close(3)                = 0 
    19:12:26.386783 openat(AT_FDCWD, "/usr/lib/libX11-xcb.so.1", O_RDONLY|O_CLOEXEC) = 3 
    19:12:26.386824 read(3, "177ELF2113>1"..., 832) = 832 
    19:12:26.386863 newfstatat(3, "", {st_mode=S_IFREG|0755, st_size=13784, ...}, AT_EMPTY_PATH) = 0 
    19:12:26.386907 mmap(NULL, 16400, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f2e652bf000 
    19:12:26.386945 mmap(0x7f2e652c0000, 4096, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1000) = 0x7f2e652c0000 
    19:12:26.386986 mmap(0x7f2e652c1000, 4096, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f2e652c1000 
    19:12:26.387024 mmap(0x7f2e652c2000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f2e652c2000 
    19:12:26.387070 close(3)                = 0 
    19:12:26.387105 openat(AT_FDCWD, "/usr/lib/libxcb.so.1", O_RDONLY|O_CLOEXEC) = 3 
    19:12:26.387146 read(3, "177ELF2113>1"..., 832) = 832 
    19:12:26.387184 newfstatat(3, "", {st_mode=S_IFREG|0755, st_size=169792, ...}, AT_EMPTY_PATH) = 0 
    19:12:26.387228 mmap(NULL, 172264, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f2e65294000 
    19:12:26.387267 mmap(0x7f2e652a0000, 81920, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xc000) = 0x7f2e652a0000 
    19:12:26.387311 mmap(0x7f2e652b4000, 36864, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x20000) = 0x7f2e652b4000 
    19:12:26.387349 mmap(0x7f2e652bd000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x28000) = 0x7f2e652bd000 
    19:12:26.387395 close(3)                = 0 
    19:12:26.387430 openat(AT_FDCWD, "/usr/lib/libxcb-res.so.0", O_RDONLY|O_CLOEXEC) = 3 
    19:12:26.387470 read(3, "177ELF2113>1"..., 832) = 832 
    19:12:26.387509 newfstatat(3, "", {st_mode=S_IFREG|0755, st_size=18208, ...}, AT_EMPTY_PATH) = 0 
    19:12:26.387551 mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f2e65292000 
    19:12:26.387591 mmap(NULL, 20520, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f2e6528c000 
    19:12:26.387624 mmap(0x7f2e6528e000, 4096, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f2e6528e000 
    19:12:26.387662 mmap(0x7f2e6528f000, 4096, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x3000) = 0x7f2e6528f000 
    19:12:26.387698 mmap(0x7f2e65290000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x3000) = 0x7f2e65290000 
    19:12:26.387740 close(3)                = 0 
    19:12:26.387773 openat(AT_FDCWD, "/usr/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = 3 
    19:12:26.387814 read(3, "177ELF21133>1P2242"..., 832) = 832 
    19:12:26.387852 pread64(3, "64@@@"..., 784, 64) = 784 
    19:12:26.387889 pread64(3, "4@5GNU230043"..., 80, 848) = 80 
    19:12:26.387928 pread64(3, "4243GNU8211223266357b371d274{364s300i373376"..., 68, 928) = 68 
    19:12:26.387966 newfstatat(3, "", {st_mode=S_IFREG|0755, st_size=2104984, ...}, AT_EMPTY_PATH) = 0 
    19:12:26.388009 pread64(3, "64@@@"..., 784, 64) = 784 
    19:12:26.388046 mmap(NULL, 2149744, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f2e6507f000 
    19:12:26.388083 mmap(0x7f2e650a7000, 1548288, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x28000) = 0x7f2e650a7000
    19:12:26.388124 mmap(0x7f2e65221000, 360448, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1a2000) = 0x7f2e65221000 
    19:12:26.388164 mmap(0x7f2e65279000, 24576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1f9000) = 0x7f2e65279000
    19:12:26.388211 mmap(0x7f2e6527f000, 52592, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f2e6527f000 
    19:12:26.388254 close(3)                = 0 
    19:12:26.388292 openat(AT_FDCWD, "/usr/lib/libXext.so.6", O_RDONLY|O_CLOEXEC) = 3 
    19:12:26.388332 read(3, "177ELF2113>1"..., 832) = 832 
    19:12:26.388371 newfstatat(3, "", {st_mode=S_IFREG|0755, st_size=80832, ...}, AT_EMPTY_PATH) = 0 
    19:12:26.388414 mmap(NULL, 83776, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f2e6506a000 
    19:12:26.388452 mmap(0x7f2e6506e000, 45056, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x4000) = 0x7f2e6506e000 
    19:12:26.388493 mmap(0x7f2e65079000, 16384, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xf000) = 0x7f2e65079000 
    19:12:26.388531 mmap(0x7f2e6507d000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x12000) = 0x7f2e6507d000 
    19:12:26.388575 close(3)                = 0 
    19:12:26.388612 openat(AT_FDCWD, "/usr/lib/libfreetype.so.6", O_RDONLY|O_CLOEXEC) = 3 
    19:12:26.388654 read(3, "177ELF2113>1"..., 832) = 832 
    19:12:26.388692 newfstatat(3, "", {st_mode=S_IFREG|0755, st_size=841592, ...}, AT_EMPTY_PATH) = 0 
    19:12:26.388750 mmap(NULL, 843792, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f2e64f9b000 
    19:12:26.388787 mprotect(0x7f2e64fa9000, 757760, PROT_NONE) = 0 
    19:12:26.388826 mmap(0x7f2e64fa9000, 532480, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xe000) = 0x7f2e64fa9000 
    19:12:26.388865 mmap(0x7f2e6502b000, 221184, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x90000) = 0x7f2e6502b000 
    19:12:26.388903 mmap(0x7f2e65062000, 32768, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xc6000) = 0x7f2e65062000 
    19:12:26.388951 close(3)                = 0 
    19:12:26.388986 openat(AT_FDCWD, "/usr/lib/libexpat.so.1", O_RDONLY|O_CLOEXEC) = 3 
    19:12:26.389027 read(3, "177ELF2113>1"..., 832) = 832 
    19:12:26.389067 newfstatat(3, "", {st_mode=S_IFREG|0755, st_size=194424, ...}, AT_EMPTY_PATH) = 0 
    19:12:26.389111 mmap(NULL, 196624, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f2e64f6a000 
    19:12:26.389147 mprotect(0x7f2e64f6e000, 172032, PROT_NONE) = 0 
    19:12:26.389185 mmap(0x7f2e64f6e000, 126976, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x4000) = 0x7f2e64f6e000 
    19:12:26.389221 mmap(0x7f2e64f8d000, 40960, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x23000) = 0x7f2e64f8d000 
    19:12:26.389256 mmap(0x7f2e64f98000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2d000) = 0x7f2e64f98000 
    19:12:26.389301 close(3)                = 0 
    19:12:26.389338 openat(AT_FDCWD, "/usr/lib/libXrender.so.1", O_RDONLY|O_CLOEXEC) = 3 
    19:12:26.389379 read(3, "177ELF2113>1"..., 832) = 832 
    19:12:26.389417 newfstatat(3, "", {st_mode=S_IFREG|0755, st_size=47048, ...}, AT_EMPTY_PATH) = 0 
    19:12:26.389460 mmap(NULL, 49488, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f2e64f5d000 
    19:12:26.389497 mmap(0x7f2e64f5f000, 28672, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f2e64f5f000 
    19:12:26.389539 mmap(0x7f2e64f66000, 8192, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x9000) = 0x7f2e64f66000 
    19:12:26.389577 mmap(0x7f2e64f68000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xa000) = 0x7f2e64f68000 
    19:12:26.389620 close(3)                = 0 
    19:12:26.389654 openat(AT_FDCWD, "/usr/lib/libXau.so.6", O_RDONLY|O_CLOEXEC) = 3 
    19:12:26.389694 read(3, "177ELF2113>1"..., 832) = 832 
    19:12:26.389733 newfstatat(3, "", {st_mode=S_IFREG|0755, st_size=14008, ...}, AT_EMPTY_PATH) = 0 
    19:12:26.389776 mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f2e64f5b000 
    19:12:26.389815 mmap(NULL, 16424, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f2e64f56000 
    19:12:26.389850 mmap(0x7f2e64f57000, 4096, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1000) = 0x7f2e64f57000 
    19:12:26.389889 mmap(0x7f2e64f58000, 4096, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f2e64f58000 
    19:12:26.389927 mmap(0x7f2e64f59000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f2e64f59000 
    19:12:26.389970 close(3)                = 0 
    19:12:26.390003 openat(AT_FDCWD, "/usr/lib/libXdmcp.so.6", O_RDONLY|O_CLOEXEC) = 3 
    19:12:26.390043 read(3, "177ELF2113>1"..., 832) = 832 
    19:12:26.390081 newfstatat(3, "", {st_mode=S_IFREG|0755, st_size=26296, ...}, AT_EMPTY_PATH) = 0 
    19:12:26.390124 mmap(NULL, 28688, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f2e64f4e000 
    19:12:26.390163 mmap(0x7f2e64f50000, 8192, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f2e64f50000 
    19:12:26.390205 mmap(0x7f2e64f52000, 8192, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x4000) = 0x7f2e64f52000 
    19:12:26.390243 mmap(0x7f2e64f54000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x5000) = 0x7f2e64f54000 
    19:12:26.390288 close(3)                = 0 
    19:12:26.390325 openat(AT_FDCWD, "/usr/lib/libz.so.1", O_RDONLY|O_CLOEXEC) = 3 
    19:12:26.390364 read(3, "177ELF2113>1"..., 832) = 832 
    19:12:26.390401 newfstatat(3, "", {st_mode=S_IFREG|0755, st_size=100184, ...}, AT_EMPTY_PATH) = 0 
    19:12:26.390445 mmap(NULL, 102416, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f2e64f34000 
    19:12:26.390482 mmap(0x7f2e64f37000, 57344, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x3000) = 0x7f2e64f37000 
    19:12:26.390520 mmap(0x7f2e64f45000, 28672, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x11000) = 0x7f2e64f45000 
    19:12:26.390558 mmap(0x7f2e64f4c000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x17000) = 0x7f2e64f4c000 
    19:12:26.390601 close(3)                = 0 
    19:12:26.390637 openat(AT_FDCWD, "/usr/lib/libbz2.so.1.0", O_RDONLY|O_CLOEXEC) = 3 
    19:12:26.390676 read(3, "177ELF2113>1  "..., 832) = 832 
    19:12:26.390714 newfstatat(3, "", {st_mode=S_IFREG|0755, st_size=74448, ...}, AT_EMPTY_PATH) = 0 
    19:12:26.390759 mmap(NULL, 76840, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f2e64f21000 
    19:12:26.390796 mmap(0x7f2e64f23000, 53248, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f2e64f23000 
    19:12:26.390835 mmap(0x7f2e64f30000, 8192, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xf000) = 0x7f2e64f30000 
    19:12:26.390872 mmap(0x7f2e64f32000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x10000) = 0x7f2e64f32000 
    19:12:26.390914 close(3)                = 0 
    19:12:26.390949 openat(AT_FDCWD, "/usr/lib/libpng16.so.16", O_RDONLY|O_CLOEXEC) = 3 
    19:12:26.390988 read(3, "177ELF2113>1 `"..., 832) = 832 
    19:12:26.391026 newfstatat(3, "", {st_mode=S_IFREG|0755, st_size=218808, ...}, AT_EMPTY_PATH) = 0 
    19:12:26.391069 mmap(NULL, 221200, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f2e64eea000 
    19:12:26.391105 mmap(0x7f2e64ef0000, 147456, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x6000) = 0x7f2e64ef0000 
    19:12:26.391143 mmap(0x7f2e64f14000, 45056, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2a000) = 0x7f2e64f14000 
    19:12:26.391180 mmap(0x7f2e64f1f000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x34000) = 0x7f2e64f1f000 
    19:12:26.391223 close(3)                = 0 
    19:12:26.391256 openat(AT_FDCWD, "/usr/lib/libharfbuzz.so.0", O_RDONLY|O_CLOEXEC) = 3 
    19:12:26.391296 read(3, "177ELF2113>1"..., 832) = 832 
    19:12:26.391333 newfstatat(3, "", {st_mode=S_IFREG|0755, st_size=950392, ...}, AT_EMPTY_PATH) = 0 
    19:12:26.391376 mmap(NULL, 953096, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f2e64e01000 
    19:12:26.391413 mprotect(0x7f2e64e0c000, 901120, PROT_NONE) = 0 
    19:12:26.391448 mmap(0x7f2e64e0c000, 671744, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xb000) = 0x7f2e64e0c000 
    19:12:26.391486 mmap(0x7f2e64eb0000, 225280, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xaf000) = 0x7f2e64eb0000 
    19:12:26.391521 mmap(0x7f2e64ee8000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xe6000) = 0x7f2e64ee8000 
    19:12:26.391565 close(3)                = 0 
    19:12:26.391598 openat(AT_FDCWD, "/usr/lib/libbrotlidec.so.1", O_RDONLY|O_CLOEXEC) = 3 
    19:12:26.391638 read(3, "177ELF2113>1"..., 832) = 832 
    19:12:26.391676 newfstatat(3, "", {st_mode=S_IFREG|0755, st_size=50872, ...}, AT_EMPTY_PATH) = 0 
    19:12:26.391718 mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f2e64dff000 
    19:12:26.391759 mmap(NULL, 53264, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f2e64df1000 
    19:12:26.391793 mmap(0x7f2e64df2000, 32768, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1000) = 0x7f2e64df2000 
    19:12:26.391831 mmap(0x7f2e64dfa000, 12288, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x9000) = 0x7f2e64dfa000 
    19:12:26.391865 mmap(0x7f2e64dfd000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xb000) = 0x7f2e64dfd000 
    19:12:26.391909 close(3)                = 0 
    19:12:26.391949 openat(AT_FDCWD, "/usr/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = 3 
    19:12:26.391987 read(3, "177ELF21133>1"..., 832) = 832 
    19:12:26.392025 newfstatat(3, "", {st_mode=S_IFREG|0755, st_size=940448, ...}, AT_EMPTY_PATH) = 0 
    19:12:26.392078 mmap(NULL, 942304, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f2e64d0a000 
    19:12:26.392116 mmap(0x7f2e64d18000, 495616, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xe000) = 0x7f2e64d18000 
    19:12:26.392154 mmap(0x7f2e64d91000, 385024, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x87000) = 0x7f2e64d91000 
    19:12:26.392191 mmap(0x7f2e64def000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xe4000) = 0x7f2e64def000 
    19:12:26.392236 close(3)                = 0 
    19:12:26.392273 openat(AT_FDCWD, "/usr/lib/libgraphite2.so.3", O_RDONLY|O_CLOEXEC) = 3 
    19:12:26.392314 read(3, "177ELF2113>1"..., 832) = 832 
    19:12:26.392352 newfstatat(3, "", {st_mode=S_IFREG|0755, st_size=132872, ...}, AT_EMPTY_PATH) = 0 
    19:12:26.392399 mmap(NULL, 135184, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f2e64ce8000 
    19:12:26.392436 mprotect(0x7f2e64ceb000, 114688, PROT_NONE) = 0 
    19:12:26.392471 mmap(0x7f2e64ceb000, 98304, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x3000) = 0x7f2e64ceb000 
    19:12:26.392508 mmap(0x7f2e64d03000, 12288, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1b000) = 0x7f2e64d03000 
    19:12:26.392544 mmap(0x7f2e64d07000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1e000) = 0x7f2e64d07000 
    19:12:26.392587 close(3)                = 0 
    19:12:26.392623 openat(AT_FDCWD, "/usr/lib/libglib-2.0.so.0", O_RDONLY|O_CLOEXEC) = 3 
    19:12:26.392664 read(3, "177ELF2113>1"..., 832) = 832 
    19:12:26.392702 newfstatat(3, "", {st_mode=S_IFREG|0755, st_size=1293744, ...}, AT_EMPTY_PATH) = 0 
    19:12:26.392746 mmap(NULL, 1299280, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f2e64baa000 
    19:12:26.392784 mprotect(0x7f2e64bc7000, 1171456, PROT_NONE) = 0 
    19:12:26.392819 mmap(0x7f2e64bc7000, 598016, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1d000) = 0x7f2e64bc7000 
    19:12:26.392859 mmap(0x7f2e64c59000, 569344, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xaf000) = 0x7f2e64c59000 
    19:12:26.392898 mmap(0x7f2e64ce5000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x13a000) = 0x7f2e64ce5000 
    19:12:26.392942 mmap(0x7f2e64ce7000, 848, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f2e64ce7000 
    19:12:26.392986 close(3)                = 0 
    19:12:26.393025 openat(AT_FDCWD, "/usr/lib/libbrotlicommon.so.1", O_RDONLY|O_CLOEXEC) = 3 
    19:12:26.393064 read(3, "177ELF2113>1"..., 832) = 832 
    19:12:26.393101 newfstatat(3, "", {st_mode=S_IFREG|0755, st_size=136968, ...}, AT_EMPTY_PATH) = 0 
    19:12:26.393145 mmap(NULL, 139280, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f2e64b87000 
    19:12:26.393183 mmap(0x7f2e64b88000, 4096, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1000) = 0x7f2e64b88000 
    19:12:26.393222 mmap(0x7f2e64b89000, 126976, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f2e64b89000 
    19:12:26.393260 mmap(0x7f2e64ba8000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x20000) = 0x7f2e64ba8000 
    19:12:26.393303 close(3)                = 0 
    19:12:26.393339 openat(AT_FDCWD, "/usr/lib/libpcre.so.1", O_RDONLY|O_CLOEXEC) = 3 
    19:12:26.393378 read(3, "177ELF2113>1  "..., 832) = 832 
    19:12:26.393416 newfstatat(3, "", {st_mode=S_IFREG|0755, st_size=481072, ...}, AT_EMPTY_PATH) = 0 
    19:12:26.393459 mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f2e64b85000 
    19:12:26.393498 mmap(NULL, 483592, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f2e64b0e000 
    19:12:26.393531 mmap(0x7f2e64b10000, 352256, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f2e64b10000 
    19:12:26.393570 mmap(0x7f2e64b66000, 118784, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x58000) = 0x7f2e64b66000 
    19:12:26.393609 mmap(0x7f2e64b83000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x74000) = 0x7f2e64b83000 
    19:12:26.393656 close(3)                = 0 
    19:12:26.393691 openat(AT_FDCWD, "/usr/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = 3 
    19:12:26.393730 read(3, "177ELF2113>1"..., 832) = 832 
    19:12:26.393768 newfstatat(3, "", {st_mode=S_IFREG|0755, st_size=14368, ...}, AT_EMPTY_PATH) = 0 
    19:12:26.393810 mmap(NULL, 16424, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f2e64b09000 
    19:12:26.393850 mmap(0x7f2e64b0a000, 4096, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1000) = 0x7f2e64b0a000 
    19:12:26.393890 mmap(0x7f2e64b0b000, 4096, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f2e64b0b000 
    19:12:26.393928 mmap(0x7f2e64b0c000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f2e64b0c000 
    19:12:26.393973 close(3)                = 0 
    19:12:26.394030 mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f2e64b07000 
    19:12:26.394072 arch_prctl(ARCH_SET_FS, 0x7f2e64b08240) = 0 
    19:12:26.394103 set_tid_address(0x7f2e64b08510) = 1856 
    19:12:26.394136 set_robust_list(0x7f2e64b08520, 24) = 0 
    19:12:26.394169 rseq(0x7f2e64b08be0, 0x20, 0, 0x53053053) = 0 
    19:12:26.394268 mprotect(0x7f2e65279000, 16384, PROT_READ) = 0 
    19:12:26.394308 mprotect(0x7f2e64b0c000, 4096, PROT_READ) = 0 
    19:12:26.394358 mprotect(0x7f2e64b83000, 4096, PROT_READ) = 0 
    19:12:26.394394 mprotect(0x7f2e64ba8000, 4096, PROT_READ) = 0 
    19:12:26.394520 mprotect(0x7f2e64ce5000, 4096, PROT_READ) = 0 
    19:12:26.394565 mprotect(0x7f2e64d07000, 8192, PROT_READ) = 0 
    19:12:26.394618 mprotect(0x7f2e64def000, 4096, PROT_READ) = 0 
    19:12:26.394658 mprotect(0x7f2e64dfd000, 4096, PROT_READ) = 0 
    19:12:26.394704 mprotect(0x7f2e64f4c000, 4096, PROT_READ) = 0 
    19:12:26.394750 mprotect(0x7f2e64f32000, 4096, PROT_READ) = 0 
    19:12:26.394826 mprotect(0x7f2e64f1f000, 4096, PROT_READ) = 0 
    19:12:26.394949 mprotect(0x7f2e65062000, 28672, PROT_READ) = 0 
    19:12:26.395086 mprotect(0x7f2e64ee8000, 4096, PROT_READ) = 0 
    19:12:26.395130 mprotect(0x7f2e64f54000, 4096, PROT_READ) = 0 
    19:12:26.395170 mprotect(0x7f2e64f59000, 4096, PROT_READ) = 0 
    19:12:26.395232 mprotect(0x7f2e652bd000, 4096, PROT_READ) = 0 
    19:12:26.395409 mprotect(0x7f2e6546f000, 12288, PROT_READ) = 0 
    19:12:26.395475 mprotect(0x7f2e64f68000, 4096, PROT_READ) = 0 
    19:12:26.395537 mprotect(0x7f2e64f98000, 8192, PROT_READ) = 0 
    19:12:26.395603 mprotect(0x7f2e6507d000, 4096, PROT_READ) = 0 
    19:12:26.395656 mprotect(0x7f2e65290000, 4096, PROT_READ) = 0 
    19:12:26.395709 mprotect(0x7f2e652c2000, 4096, PROT_READ) = 0 
    19:12:26.395815 mprotect(0x7f2e6532a000, 8192, PROT_READ) = 0 
    19:12:26.395915 mprotect(0x7f2e652db000, 4096, PROT_READ) = 0 
    19:12:26.395979 mprotect(0x7f2e65330000, 4096, PROT_READ) = 0 
    19:12:26.396041 mprotect(0x55ddd3750000, 4096, PROT_READ) = 0 
    19:12:26.396109 mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f2e64b05000 
    19:12:26.396170 mprotect(0x7f2e654c5000, 8192, PROT_READ) = 0 
    19:12:26.396236 prlimit64(0, RLIMIT_STACK, NULL, {rlim_cur=8192*1024, rlim_max=RLIM64_INFINITY}) = 0 
    19:12:26.396291 munmap(0x7f2e65478000, 94539) = 0 
    19:12:26.396396 getrandom("xdax34xf9x76x41x3dx81x03", 8, GRND_NONBLOCK) = 8 
    19:12:26.396449 brk(NULL)               = 0x55ddd48b1000 
    19:12:26.396498 brk(0x55ddd48d2000)     = 0x55ddd48d2000 
    19:12:26.396657 write(2, "usage: dwm [-v]", 15usage: dwm [-v]) = 15 
    19:12:26.396698 write(2, "n", 1 
    )       = 1 
    19:12:26.396764 exit_group(1)           = ? 
    19:12:26.396946 +++ exited with 1 +++ 

    Модератор: Bizdelnick

    Аватара пользователя

    carnivore

    Сообщения: 118
    ОС: kUbuntu 8.04

    Fontconfig error:Cannot load default config file

    Блин.Включаю сегодня комп, ухожу на кухню чего-нибудь похавать, прихожу, а там в КДЕ вместо букв кракозяблики.По памяти зашел в диалог настройки и сменил язык на английский—та же тема.Жму Ctrl+Alt+F1 и вижу там после вызова fc-cache сообщение
    Fontconfig error:Cannot load default config file
    Вызвал фонтконфиг вручную—та же фигня.Причем комп до этого никаким экспериментам не подвергался, никакие программы не устанавливались.Разве что пару раз самопроизвольно вырубался из-за глюка BIOS.Файловая система на корневой—ReiserFS.Но вчера вечером я завершил работу нормально, хотя во время выключения были сообщения вроде
    /dev/hda1: Not mounted
    /dev/hda2: Not mounted
    Хотя по крайней мере первый раздел точно был примонтирован(я с него музыку слушал).

    Пишу я вам это сообщение из Opera и поэтому вижу что пишу(у Оперы свои шрифты).

    Так как же мне быть?

    #make —not-war love

    Аватара пользователя

    carnivore

    Сообщения: 118
    ОС: kUbuntu 8.04

    Re: Fontconfig error:Cannot load default config file

    Сообщение

    carnivore » 24.11.2006 20:21

    Проблема решена.Но её причины гораздо глубже и опаснее чем я полагал.По какой-то причине челый ряд важных системных конфиг файлов либо совсем исчезли, либо одним командам видны а другим—нет, типа:

    Код: Выделить всё

    #ls /etc/*fonts*
     fonts.conf                    fonts.dtd
    #cat /etc/fonts.conf
     cat:/etc/fonts.conf:No such file or directory
    #cp /etc/fonts.conf ~/
     /etc/fonts.conf:No such file or directory

    Либо говорит что отказано в доступе:

    У мя есть варианты что это либо файловая система глючит из-за частых внезапных вырубаний(опять же, у меня где-то недели две глючит BIOS), либо дохнет винт :( Даже не знаю что хуже :(

    #make —not-war love

    Аватара пользователя

    cherep36

    Сообщения: 128
    Статус: Йа пробудилсо!
    ОС: Arch Linux

    Re: Fontconfig error:Cannot load default config file

    Сообщение

    cherep36 » 26.02.2007 23:55

    А ты про команду chmod слышал?? так вот сделай так
    chmod 777 /etc/fonts/fonts.conf
    chmod 777 /etc/fonts/fonts.dtd

    Товарищи — все, кто читает эту тему, обратите внимание: вот за такие советы в следующий раз администрация будет лепить плюхи двойные и тройные. Уважаемого cherep36 беру на заметочку, в следующий раз введу премодерацию на пару дней. Специально не удаляю эту вредную глупость — для наглядности. (J)

    Аватара пользователя

    Uncle_Theodore

    Сообщения: 3339
    ОС: Slackware 12.2, ArchLinux 64

    Re: Fontconfig error:Cannot load default config file

    Сообщение

    Uncle_Theodore » 27.02.2007 16:47

    cherep36 писал(а): ↑

    26.02.2007 23:55

    А ты про команду chmod слышал?? так вот сделай так
    chmod 777 /etc/fonts/fonts.conf
    chmod 777 /etc/fonts/fonts.dtd

    Во-первых, такого делать не надо. Во-вторых, пожалуйста, не давайте вредных советов. Предупреждение.

    Автору ветки, проверьте свой жесткий диск и файловую систему на нем. Похоже на проблему с железом.

    Аватара пользователя

    cherep36

    Сообщения: 128
    Статус: Йа пробудилсо!
    ОС: Arch Linux

    Re: Fontconfig error:Cannot load default config file

    Сообщение

    cherep36 » 28.02.2007 16:20

    вот за такие советы в следующий раз администрация будет лепить плюхи двойные и тройные

    Интересно за какие такие советы??? за правильные?? :cool:

    Во-первых, такого делать не надо. Во-вторых, пожалуйста, не давайте вредных советов

    Как эт не надо?? Какой же это вредный совет??
    Я сам позавчера столкнулся с такой же ошибкой после пересборки исксов и fontconfig’a, после чего большая часть приложений отказывалась запускаться ссылаясь на отсутсвие fonts.conf и fonts.dtd, начав шарить по форуму наткнулся на эту тему, проблема заключалась в том же

    Код: Выделить всё

    #ls /etc/*fonts*
    fonts.conf                    fonts.dtd
    #cat /etc/fonts.conf
    cat:/etc/fonts.conf:No such file or directory

    решилась она собственно изменением прав на эти два конфига. ;)
    Причём даже из под рута cat ругался что нет такого файла.
    Сейчас всё работает исправно.
    Уважаемые модераторы ткните пальцем где я не прав!!
    p.s.

    у меня где-то недели две глючит BIOS

    BIOS либо работает, либо неработает, другого не дано!!!

    файловая система глючит из-за частых внезапных вырубаний

    Если бы она глючила, это отразилось бы не только на двух файлах отвечающий за иксовые шрифты, и музыку ты бы послушать точно не смог бы. :)

    Аватара пользователя

    Uncle_Theodore

    Сообщения: 3339
    ОС: Slackware 12.2, ArchLinux 64

    Re: Fontconfig error:Cannot load default config file

    Сообщение

    Uncle_Theodore » 28.02.2007 16:48

    cherep36 писал(а): ↑

    28.02.2007 16:20

    Уважаемые модераторы ткните пальцем где я не прав!!

    Тыкаю.

    Код:

    $ ls -l /etc/fonts/
    total 20
    -rw-r--r-- 1 root root 11534 2005-09-12 02:03 fonts.conf
    -rw-r--r-- 1 root root 5840 2005-09-12 02:03 fonts.dtd
    $ cat /etc/fonts/fonts.conf
    <?xml version="1.0"?>
    <!DOCTYPE fontconfig SYSTEM "fonts.dtd">
    <!-- /etc/fonts/fonts.conf file to configure system font access -->
    <fontconfig>

    <!--
    DO NOT EDIT THIS FILE.
    IT WILL BE REPLACED WHEN FONTCONFIG IS UPDATED.
    LOCAL CHANGES BELONG IN 'local.conf'.

    ...
    Еще много-много всякого вывода
    ...

    <!--
    Rescan configuration every 30 seconds when FcFontSetList is called
    -->
    <rescan>
    <int>30</int>
    </rescan>
    </config>

    </fontconfig>

    Конфигурационные файлы системы не должны быть переписываемы кем попало (третья семерка) и уж явно
    конфигурационный текстовый файл не должен быть исполняемым (все три семерки).

    p.s.

    у меня где-то недели две глючит BIOS

    BIOS либо работает, либо неработает, другого не дано!!!

    Неверно.

    файловая система глючит из-за частых внезапных вырубаний

    Если бы она глючила, это отразилось бы не только на двух файлах отвечающий за иксовые шрифты, и музыку ты бы послушать точно не смог бы. :)

    Неверно.

    Пожалуйста, прежде чем давать советы, убедитесь, что Вы хорошо знакомы с предметом обсуждения. Вы можете сильно навредить людям, особенно излагая Ваши мысли столь безапелляционным тоном.

    Аватара пользователя

    cherep36

    Сообщения: 128
    Статус: Йа пробудилсо!
    ОС: Arch Linux

    Re: Fontconfig error:Cannot load default config file

    Сообщение

    cherep36 » 28.02.2007 17:04

    1)Ладно, права на файлы должны быть немного другие, а не те которые я указал(хотя в данном случае никакого вреда системе не принесёт), однако суть проблемы в данном случае заключается именно в правах, а не в чём-то другом.
    2)

    Неверно.

    А собственно аргументы??

    Аватара пользователя

    Uncle_Theodore

    Сообщения: 3339
    ОС: Slackware 12.2, ArchLinux 64

    Re: Fontconfig error:Cannot load default config file

    Сообщение

    Uncle_Theodore » 28.02.2007 17:16

    cherep36 писал(а): ↑

    28.02.2007 17:04

    1)Ладно, права на файлы должны быть немного другие, а не те которые я указал(хотя в данном случае никакого вреда системе не принесёт), однако суть проблемы в данном случае заключается именно в правах, а не в чём-то другом.

    Если они должны быть «немного другие», почему Вы посоветовали сменить их на 777?
    На чем основана Ваша уверенность, что проблема заключается именно в правах, а не в чем-то еще?
    На том, что это, возможно, помогло в Вашем конкретном случае?

    2)

    Неверно.

    А собственно аргументы??

    А, собственно, аргументы можно извлечь из документации. Или погуглив на данные темы.

    Еще раз, прежде чем делать категоричные заявления и советовать пользователям вносить деструктивные изменения в конфигурационные файлы системы, убедитесь в том, что Вы знаете о чем говорите.

    Для меня этот разговор закончен. Если я обнаружу еще один подобный пост от Вас в одном из своих разделов, я поставлю Вас на пре-модерацию. Не в обиду.

    Понравилась статья? Поделить с друзьями:

    Читайте также:

  • Font face как изменить
  • Font awesome error
  • Fondital ошибка е04
  • Fondital ошибка e02
  • Fondital victoria compact неисправности ошибки

  • 0 0 голоса
    Рейтинг статьи
    Подписаться
    Уведомить о
    guest

    0 комментариев
    Старые
    Новые Популярные
    Межтекстовые Отзывы
    Посмотреть все комментарии