Gerade mit Ubuntu hier - netter Eindruck, aber:
Wieso wird im Firefox alles in einer fürchterlich hässlichen Schrftart dargestellt?
Also anders als im FF unter XP...
Linux 14.981 Themen, 106.344 Beiträge
Man kann auch unter Linux Windowsschriften nachinstallieren:
"Windows-Schriften unter Linux installieren
03.11.05 13:51:45
debian base system
Öfter taucht das Problema auf, daß einem Dokumente mit Windows-Schriftarten zugesendet werden. Da die Schriften, die dort verwendet werden, nicht frei sind, sind sie unter Linux nicht vorhanden, können aber nachinstalliert werden. Das ist natürlich nur mit vorhandener Windows-Lizenzierung erlaubt.
Unter Debian geht das mit:
apt-get install msttcorefonts
Damit Openoffice die Schriften auch kennt, empfehle ich die Schriften in das Verzeichnis ~/.fonts zu linken mit:
mkdir ~/.fonts
cd ~/.fonts
ln -s /usr/share/fonts/truetype/msttcorefonts/* . "
http://datenroulette.de/blog/index.php?blog=4&title=windows_schriften_unter_linux_installier&more=1&c=1&tb=1&pb=1
msttcorefonts:
Installer for Microsoft TrueType core fonts
This package allows for easy installation of the Microsoft True Type
Core Fonts for the Web including:
Andale Mono
Arial Black
Arial (Bold, Italic, Bold Italic)
Comic Sans MS (Bold)
Courier New (Bold, Italic, Bold Italic)
Georgia (Bold, Italic, Bold Italic)
Impact
Times New Roman (Bold, Italic, Bold Italic)
Trebuchet (Bold, Italic, Bold Italic)
Verdana (Bold, Italic, Bold Italic)
Webdings
You will need an Internet connection to download these fonts if you
don't already have them.
Ubuntu baut auf Debian testing auf.
Ich habe in der Konfigurationsdatei /etc/X11/xorg.conf nur noch den FontPath anpassen müssen:
Section "Files"
FontPath "unix/:7100" # local font server
# if the local font server has problems, we can fall back on these
FontPath "/usr/share/fonts/X11/misc"
FontPath "/usr/lib/X11/fonts/misc"
FontPath "/usr/share/fonts/X11/cyrillic"
FontPath "/usr/lib/X11/fonts/cyrillic"
FontPath "/usr/lib/X11/fonts/100dpi/:unscaled"
FontPath "/usr/lib/X11/fonts/75dpi/:unscaled"
FontPath "/usr/share/fonts/X11/Type1"
FontPath "/usr/lib/X11/fonts/Type1"
FontPath "/usr/share/fonts/X11/CID"
FontPath "/usr/lib/X11/fonts/CID"
FontPath "/usr/lib/X11/fonts/Speedo"
FontPath "/usr/share/fonts/X11/100dpi"
FontPath "/usr/lib/X11/fonts/100dpi"
FontPath "/usr/share/fonts/X11/75dpi"
FontPath "/usr/lib/X11/fonts/75dpi"
FontPath "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
FontPath "/var/lib/defoma/x-ttcidfont-conf.d/dirs/CID"
EndSection
Die Windowsschriften werden unter /usr/share/fonts/truetype/msttcorefonts gespeichert bei der Installation. In meiner Konfigurationsdatei vom XServer hat dieser FontPath gefehlt und mußte mit einem Editor nachträglich noch installiert werden. Die Windowsschriften können bei meinem Firefox unter Bearbeiten--> Einstallungen--->Inhalt eingestellt werden.
