Firefox"Quantum"60.0.2(64ビット)をDebian GNU/Linux Stretchにsnap経由でインストールし、 this に従ってください。このバージョンのFirefoxではフォントのレンダリングに大きな問題があります。 FirefoxQuantumとJupyterNotebookヘッダーのスクリーンキャップ FirefoxESRと同じページのスクリーンキャップ。私は見つけることができるすべての解決策を試します:
this ;のような.fonts.conf
を追加します。
変更gfx.canvas.Azure.backends
およびgfx.content.Azure.backends
を最初にskia
からcairo
に、最後にdirect2d1.1,cairo,skia
に;
グラフィックアクセラレーションを無効にしてみてください。
デフォルトと同じフォントを設定します(serif
16、serif
、sans-serif
、monospace
12)。
しかし、何も機能しません!何かが恋しいのかもしれませんが、他に何も見つかりませんでした。
1-ユーザーディレクトリに、nexサブディレクトリを作成します。mkdir-p〜/.config/fontconfig
2-テキストエディタを使用して、ファイルfont.conf(〜/ .config/fontconfig/font.conf)を作成し、次のコンテンツを貼り付けます:<?xml version='1.0'?> <!DOCTYPE fontconfig SYSTEM 'fonts.dtd'> <fontconfig> <match target="font"> <edit mode="assign" name="rgba"> <const>rgb</const> </edit> </match> <match target="font"> <edit mode="assign" name="hinting"> <bool>true</bool> </edit> </match> <match target="font"> <edit mode="assign" name="hintstyle"> <const>hintslight</const> </edit> </match> <match target="font"> <edit mode="assign" name="antialias"> <bool>true</bool> </edit> </match> <match target="font"> <edit mode="assign" name="lcdfilter"> <const>lcddefault</const> </edit> </match> </fontconfig>
このファイルを保存します(〜/ .config/fontconfig/fonts.conf)
3-Firefoxを再起動します。
インストール方法を変更し、.tar.bzip2
アーカイブをmozillaから直接ダウンロードすることを選択しました。 firefox/
ディレクトリを/opt
に配置し、リンクを作成します:>Sudo ln -s /opt/firefox/firefox /usr/bin/firefox-quantum
そして特定のfirefox-quantum.desktop
ファイルを/usr/share/applications/
フォルダーに追加し、フォントレンダリングの問題はなくなりました。
アルノメ。