<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>
	Kommentare zu: Schrift und Schriftgröße in Google Earth unter Linux anpassen	</title>
	<atom:link href="https://konstantin.filtschew.de/blog/2007/04/06/schrift-und-schriftgrose-in-google-earth-unter-linux/feed/" rel="self" type="application/rss+xml" />
	<link>https://konstantin.filtschew.de/blog/2007/04/06/schrift-und-schriftgrose-in-google-earth-unter-linux/</link>
	<description>Der tägliche IT-Wahnsinn</description>
	<lastBuildDate>Sun, 30 Sep 2012 18:03:10 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9</generator>
	<item>
		<title>
		Von: Zyrusthc		</title>
		<link>https://konstantin.filtschew.de/blog/2007/04/06/schrift-und-schriftgrose-in-google-earth-unter-linux/comment-page-1/#comment-39183</link>

		<dc:creator><![CDATA[Zyrusthc]]></dc:creator>
		<pubDate>Sun, 30 Sep 2012 18:03:10 +0000</pubDate>
		<guid isPermaLink="false">http://konstantin.filtschew.de/blog/?p=90#comment-39183</guid>

					<description><![CDATA[Bei mir hat es auch nicht geholfen. Und mit den Libs ändern führte zu Problemen das GoogleEarth nicht mehr startete.

Lösen konnte ich es in dem ich den Startbefehl angepasst habe.
/opt/google/earth/free/google-earth -fn -microsoft-arial-medium-r-bold--15-120-75-75-p-o-iso8859-2]]></description>
			<content:encoded><![CDATA[<p>Bei mir hat es auch nicht geholfen. Und mit den Libs ändern führte zu Problemen das GoogleEarth nicht mehr startete.</p>
<p>Lösen konnte ich es in dem ich den Startbefehl angepasst habe.<br />
/opt/google/earth/free/google-earth -fn -microsoft-arial-medium-r-bold&#8211;15-120-75-75-p-o-iso8859-2</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Von: Admira98		</title>
		<link>https://konstantin.filtschew.de/blog/2007/04/06/schrift-und-schriftgrose-in-google-earth-unter-linux/comment-page-1/#comment-38629</link>

		<dc:creator><![CDATA[Admira98]]></dc:creator>
		<pubDate>Fri, 20 Feb 2009 11:54:32 +0000</pubDate>
		<guid isPermaLink="false">http://konstantin.filtschew.de/blog/?p=90#comment-38629</guid>

					<description><![CDATA[Bei GE5 unter Ubuntu8.10 haben die Hinweise nicht funktioniert. Hab die Lösung dennoch im Netz gefunden:

OK, on Ubuntu 8.10, the culprits for lousy font display in Google Earth 5 beta seems to be the following four Google libraries used for Qt display:
libQtCore.so.4, libQtGui.so.4, libQtNetwork.so.4. and libQtWebKit.so.4  These libraries are in /usr/local/google-earth (the default install directory on my system) or wherever the google-earth folder is on your system.

In a terminal window, cd to your google-earth folder using:

you@yourcomp:$ cd /usr/local/google-earth

Then rename the four offending Qt library files:

you@yourcomp:/usr/local/google-earth$  mv libQtCore.so.4 libQtCore.so.4.bak
you@yourcomp:/usr/local/google-earth$  mv libQtGui.so.4 libQtGui.so.4.bak
you@yourcomp:/usr/local/google-earth$  mv libQtNetwork.so.4 libQtNetwork.so.4.bak
you@yourcomp:/usr/local/google-earth$  mv libQtWebKit.so.4 libQtWebKit.so.4.bak

Then find your system libraries libQtCore.so.4.x.x, libQtGui.so.4.x.x, libQtNetwork.so.4.x.x and libQtWebKit.so.4.x.x, where the 4.x.x was 4.4.3 on my Ubuntu 8.10 system. These libraries are usually in /usr/lib on Ubuntu systems. If they are not currently installed on your system use Synaptic to find them in the Ubuntu repositories and install them. They will be named libqt4-core, libqt4-gui, libqt4-network and libqt4-webkit. We are now going to create symbolic links to these system libraries in the google-earth folder:

you@yourcomp:/usr/local/google-earth$  ln -s /usr/lib/libQtCore.so.4.4.3  libQtCore.so.4
you@yourcomp:/usr/local/google-earth$  ln -s /usr/lib/libQtGui.so.4.4.3  libQtGui.so.4
you@yourcomp:/usr/local/google-earth$  ln -s /usr/lib/libQtNetwork.so.4.4.3  libQtNetwork.so.4
you@yourcomp:/usr/local/google-earth$  ln -s /usr/lib/libQtWebKit.so.4.4.3  libQtWebKit.so.4]]></description>
			<content:encoded><![CDATA[<p>Bei GE5 unter Ubuntu8.10 haben die Hinweise nicht funktioniert. Hab die Lösung dennoch im Netz gefunden:</p>
<p>OK, on Ubuntu 8.10, the culprits for lousy font display in Google Earth 5 beta seems to be the following four Google libraries used for Qt display:<br />
libQtCore.so.4, libQtGui.so.4, libQtNetwork.so.4. and libQtWebKit.so.4  These libraries are in /usr/local/google-earth (the default install directory on my system) or wherever the google-earth folder is on your system.</p>
<p>In a terminal window, cd to your google-earth folder using:</p>
<p>you@yourcomp:$ cd /usr/local/google-earth</p>
<p>Then rename the four offending Qt library files:</p>
<p>you@yourcomp:/usr/local/google-earth$  mv libQtCore.so.4 libQtCore.so.4.bak<br />
you@yourcomp:/usr/local/google-earth$  mv libQtGui.so.4 libQtGui.so.4.bak<br />
you@yourcomp:/usr/local/google-earth$  mv libQtNetwork.so.4 libQtNetwork.so.4.bak<br />
you@yourcomp:/usr/local/google-earth$  mv libQtWebKit.so.4 libQtWebKit.so.4.bak</p>
<p>Then find your system libraries libQtCore.so.4.x.x, libQtGui.so.4.x.x, libQtNetwork.so.4.x.x and libQtWebKit.so.4.x.x, where the 4.x.x was 4.4.3 on my Ubuntu 8.10 system. These libraries are usually in /usr/lib on Ubuntu systems. If they are not currently installed on your system use Synaptic to find them in the Ubuntu repositories and install them. They will be named libqt4-core, libqt4-gui, libqt4-network and libqt4-webkit. We are now going to create symbolic links to these system libraries in the google-earth folder:</p>
<p>you@yourcomp:/usr/local/google-earth$  ln -s /usr/lib/libQtCore.so.4.4.3  libQtCore.so.4<br />
you@yourcomp:/usr/local/google-earth$  ln -s /usr/lib/libQtGui.so.4.4.3  libQtGui.so.4<br />
you@yourcomp:/usr/local/google-earth$  ln -s /usr/lib/libQtNetwork.so.4.4.3  libQtNetwork.so.4<br />
you@yourcomp:/usr/local/google-earth$  ln -s /usr/lib/libQtWebKit.so.4.4.3  libQtWebKit.so.4</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Von: Fonts installieren &#124; keyongtech		</title>
		<link>https://konstantin.filtschew.de/blog/2007/04/06/schrift-und-schriftgrose-in-google-earth-unter-linux/comment-page-1/#comment-38610</link>

		<dc:creator><![CDATA[Fonts installieren &#124; keyongtech]]></dc:creator>
		<pubDate>Thu, 22 Jan 2009 05:23:04 +0000</pubDate>
		<guid isPermaLink="false">http://konstantin.filtschew.de/blog/?p=90#comment-38610</guid>

					<description><![CDATA[[...] Vielen Dank schon im Voraus! &#062; &#062; Peer  Hallo Peer, Google hilft (fast) immer, auch hier.  http://konstantin.filtschew.de/blog/?p=90  Musst halt nur die versteckten Dateien in Deinem Browser aktivieren, dann sollte es klappten. Bei [...]]]></description>
			<content:encoded><![CDATA[<p>[&#8230;] Vielen Dank schon im Voraus! &gt; &gt; Peer  Hallo Peer, Google hilft (fast) immer, auch hier.  <a href="http://konstantin.filtschew.de/blog/?p=90" rel="ugc">http://konstantin.filtschew.de/blog/?p=90</a>  Musst halt nur die versteckten Dateien in Deinem Browser aktivieren, dann sollte es klappten. Bei [&#8230;]</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Von: Konstantin Filtschew		</title>
		<link>https://konstantin.filtschew.de/blog/2007/04/06/schrift-und-schriftgrose-in-google-earth-unter-linux/comment-page-1/#comment-38587</link>

		<dc:creator><![CDATA[Konstantin Filtschew]]></dc:creator>
		<pubDate>Sun, 28 Dec 2008 16:39:32 +0000</pubDate>
		<guid isPermaLink="false">http://konstantin.filtschew.de/blog/?p=90#comment-38587</guid>

					<description><![CDATA[Hallo Kuba,

die Einstellungen sind jetzt umgezogen. Sie sind in der folgenden Datei zu finden:
~/.config/Google/GoogleEarthPlus.conf

Füge mal in der Render-Section die folgenden Einträge ein:
&lt;code&gt;
[Render]
GuiFontFamily=Arial
GuiFontSize=12
GuiFontStyle=0
GuiFontWeight=50 
&lt;/code&gt;

weitere Infos sind hier zu finden:
http://groups.google.com/group/earth-linux/browse_thread/thread/a219f4560bf93af3

Gruß

Konstantin]]></description>
			<content:encoded><![CDATA[<p>Hallo Kuba,</p>
<p>die Einstellungen sind jetzt umgezogen. Sie sind in der folgenden Datei zu finden:<br />
~/.config/Google/GoogleEarthPlus.conf</p>
<p>Füge mal in der Render-Section die folgenden Einträge ein:<br />
<code><br />
[Render]<br />
GuiFontFamily=Arial<br />
GuiFontSize=12<br />
GuiFontStyle=0<br />
GuiFontWeight=50<br />
</code></p>
<p>weitere Infos sind hier zu finden:<br />
<a href="http://groups.google.com/group/earth-linux/browse_thread/thread/a219f4560bf93af3" rel="nofollow ugc">http://groups.google.com/group/earth-linux/browse_thread/thread/a219f4560bf93af3</a></p>
<p>Gruß</p>
<p>Konstantin</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Von: kuba		</title>
		<link>https://konstantin.filtschew.de/blog/2007/04/06/schrift-und-schriftgrose-in-google-earth-unter-linux/comment-page-1/#comment-38584</link>

		<dc:creator><![CDATA[kuba]]></dc:creator>
		<pubDate>Sun, 28 Dec 2008 12:10:00 +0000</pubDate>
		<guid isPermaLink="false">http://konstantin.filtschew.de/blog/?p=90#comment-38584</guid>

					<description><![CDATA[Danke Konstantin,

es hat wunderbar geklappt, nur noch bleiben die Toolbar mit mickrige Beschriftung die kaum zu erahnen ist.
Ich habe unter „Ansicht“ gesehen aber da gibt’s kein Antrag zu Schriftart bzw. -grösse  Änderung.
Weiß Du ein Rat?

Grüße 
Kuba]]></description>
			<content:encoded><![CDATA[<p>Danke Konstantin,</p>
<p>es hat wunderbar geklappt, nur noch bleiben die Toolbar mit mickrige Beschriftung die kaum zu erahnen ist.<br />
Ich habe unter „Ansicht“ gesehen aber da gibt’s kein Antrag zu Schriftart bzw. -grösse  Änderung.<br />
Weiß Du ein Rat?</p>
<p>Grüße<br />
Kuba</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Von: Konstantin Filtschew		</title>
		<link>https://konstantin.filtschew.de/blog/2007/04/06/schrift-und-schriftgrose-in-google-earth-unter-linux/comment-page-1/#comment-38582</link>

		<dc:creator><![CDATA[Konstantin Filtschew]]></dc:creator>
		<pubDate>Sat, 27 Dec 2008 18:50:35 +0000</pubDate>
		<guid isPermaLink="false">http://konstantin.filtschew.de/blog/?p=90#comment-38582</guid>

					<description><![CDATA[Hallo Kuba,

das kann man jetzt direkt unter Optionen einstellen.

So sieht es auf einem englischen System aus:
1. Im Menü auf Tools und dann Options gehen.
2. Auf dem Karteireiter &quot;3D View&quot; im Bereich &quot;Fonts&quot; auf &quot;Choose 3D Front&quot; klicken und dort die entsprechende Schrift und Schriftgröße einstellen.

Gruß

Konstantin]]></description>
			<content:encoded><![CDATA[<p>Hallo Kuba,</p>
<p>das kann man jetzt direkt unter Optionen einstellen.</p>
<p>So sieht es auf einem englischen System aus:<br />
1. Im Menü auf Tools und dann Options gehen.<br />
2. Auf dem Karteireiter &#8222;3D View&#8220; im Bereich &#8222;Fonts&#8220; auf &#8222;Choose 3D Front&#8220; klicken und dort die entsprechende Schrift und Schriftgröße einstellen.</p>
<p>Gruß</p>
<p>Konstantin</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Von: kuba		</title>
		<link>https://konstantin.filtschew.de/blog/2007/04/06/schrift-und-schriftgrose-in-google-earth-unter-linux/comment-page-1/#comment-38580</link>

		<dc:creator><![CDATA[kuba]]></dc:creator>
		<pubDate>Fri, 26 Dec 2008 23:21:49 +0000</pubDate>
		<guid isPermaLink="false">http://konstantin.filtschew.de/blog/?p=90#comment-38580</guid>

					<description><![CDATA[hallo Konstantin,

bin nur user und habe (oder besser gesagt wurde bei mir  ) google earth in: dateisystem  /opt/google-earth installiert.
Darin finde ich weder Registry noch  ein ähnliches Pfad zu dem von dir angebotenen. Nun bleiben meine Fonts weiter klein, könntest du eimnem Neuling helfen?
Grüsse
Kuba]]></description>
			<content:encoded><![CDATA[<p>hallo Konstantin,</p>
<p>bin nur user und habe (oder besser gesagt wurde bei mir  ) google earth in: dateisystem  /opt/google-earth installiert.<br />
Darin finde ich weder Registry noch  ein ähnliches Pfad zu dem von dir angebotenen. Nun bleiben meine Fonts weiter klein, könntest du eimnem Neuling helfen?<br />
Grüsse<br />
Kuba</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
