linux-admin.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* xfree fonts
@ 2003-02-10 23:36 Jorge R . Csapo
  2003-02-11  5:16 ` Glynn Clements
  0 siblings, 1 reply; 4+ messages in thread
From: Jorge R . Csapo @ 2003-02-10 23:36 UTC (permalink / raw)
  To: linux-admin

Hi again, all,

I was trying to install some TrueType fonts in my Xfree86 and everything seemed
to work fine, but I'm getting this:

Could not init font path element /usr/X11R6/lib/X11/fonts/Speedo/, removing from list!
Could not init font path element /usr/X11R6/lib/X11/fonts/TT/, removing from list!

Notice that TT is my newly create truetype dir, but Speedo is the original one
that came with XFree.

Relevant info:

Distro: Slackware 8.0
Kernel: 2.4.5
XFree86: 4.1.0

Any ideas?

TIA

-- 
Jorge R. Csapo
--------------------------------------------------
 /"\
 \ / CAMPANHA DA FITA ASCII - CONTRA MAIL HTML
  X  ASCII RIBBON CAMPAIGN - AGAINST HTML MAIL
 / \
--------------------------------------------------
http://www.completo.com.br/~jorge
===========================================
With a PC, I always felt limited
by the software available.
On Unix, I am limited only by my knowledge.
--Peter J. Schoenster

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: xfree fonts
  2003-02-10 23:36 xfree fonts Jorge R . Csapo
@ 2003-02-11  5:16 ` Glynn Clements
  2003-02-11  8:29   ` Ping Problem Mohd Saifullah
  2003-02-11 11:22   ` xfree fonts - SOLVED Jorge R . Csapo
  0 siblings, 2 replies; 4+ messages in thread
From: Glynn Clements @ 2003-02-11  5:16 UTC (permalink / raw)
  To: Jorge R . Csapo; +Cc: linux-admin


Jorge R . Csapo wrote:

> I was trying to install some TrueType fonts in my Xfree86 and everything seemed
> to work fine, but I'm getting this:
> 
> Could not init font path element /usr/X11R6/lib/X11/fonts/Speedo/, removing from list!
> Could not init font path element /usr/X11R6/lib/X11/fonts/TT/, removing from list!
> 
> Notice that TT is my newly create truetype dir, but Speedo is the original one
> that came with XFree.

> Any ideas?

You need to load the appropriate modules:

	Section "Module"
	    Load	"freetype"
	    Load	"speedo"

This assumes that you have the necessary modules:

	$ ls -l /usr/X11R6/lib/modules/fonts/
	total 580
	-rwxrwxr-x    1 root     root        81104 Jan 19  2002 libbitmap.a
	-rwxrwxr-x    1 root     root        95376 Jan 19  2002 libfreetype.a
	-rwxrwxr-x    1 root     root        71464 Jan 19  2002 libspeedo.a
	-rwxrwxr-x    1 root     root       199936 Jan 19  2002 libtype1.a
	-rwxrwxr-x    1 root     root       118006 Jan 19  2002 libxtt.a

See /usr/lib/X11/doc/README.fonts for more details.

-- 
Glynn Clements <glynn.clements@virgin.net>

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Ping Problem
  2003-02-11  5:16 ` Glynn Clements
@ 2003-02-11  8:29   ` Mohd Saifullah
  2003-02-11 11:22   ` xfree fonts - SOLVED Jorge R . Csapo
  1 sibling, 0 replies; 4+ messages in thread
From: Mohd Saifullah @ 2003-02-11  8:29 UTC (permalink / raw)
  To: linux-admin


Greetings!

I am getting packet loss frequently during 'ping'ing. The following is the 
description of the source, destination and network.

Source: a linux system (RH 7.1)
Destination: a linux system (RH 7.2)

Both are in two different LANs. These LANs are connected through
H-Connects with link capacity 2Mbps. I want to measure this link's
capacity. For that i am using ping for some duration and taking the SNMP
interface octets measurements (This algorithm is accurate). But the
problem is 'ping' frequently reporting packet loss (20% to 100%) 15 times
out of 100 observations. Another surprising thing during that time link
utilization is 2% to 10% (by SNMP octets). Any idea where the problem is?
or any other easy way to calculate link actual bandwidth, please?

Thanks,
Saif


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: xfree fonts - SOLVED
  2003-02-11  5:16 ` Glynn Clements
  2003-02-11  8:29   ` Ping Problem Mohd Saifullah
@ 2003-02-11 11:22   ` Jorge R . Csapo
  1 sibling, 0 replies; 4+ messages in thread
From: Jorge R . Csapo @ 2003-02-11 11:22 UTC (permalink / raw)
  To: Glynn Clements; +Cc: linux-admin

Thanks Glynn, that did it.

Jorge

assim falou Glynn Clements (em 11/02/2003):
> 
> Jorge R . Csapo wrote:
> 
> > I was trying to install some TrueType fonts in my Xfree86 and everything seemed
> > to work fine, but I'm getting this:
> > 
> > Could not init font path element /usr/X11R6/lib/X11/fonts/Speedo/, removing from list!
> > Could not init font path element /usr/X11R6/lib/X11/fonts/TT/, removing from list!
> > 
> > Notice that TT is my newly create truetype dir, but Speedo is the original one
> > that came with XFree.
> 
> > Any ideas?
> 
> You need to load the appropriate modules:
> 
> 	Section "Module"
> 	    Load	"freetype"
> 	    Load	"speedo"
> 
> This assumes that you have the necessary modules:
> 
> 	$ ls -l /usr/X11R6/lib/modules/fonts/
> 	total 580
> 	-rwxrwxr-x    1 root     root        81104 Jan 19  2002 libbitmap.a
> 	-rwxrwxr-x    1 root     root        95376 Jan 19  2002 libfreetype.a
> 	-rwxrwxr-x    1 root     root        71464 Jan 19  2002 libspeedo.a
> 	-rwxrwxr-x    1 root     root       199936 Jan 19  2002 libtype1.a
> 	-rwxrwxr-x    1 root     root       118006 Jan 19  2002 libxtt.a
> 
> See /usr/lib/X11/doc/README.fonts for more details.
> 
> -- 
> Glynn Clements <glynn.clements@virgin.net>

-- 
Jorge R. Csapo
--------------------------------------------------
 /"\
 \ / CAMPANHA DA FITA ASCII - CONTRA MAIL HTML
  X  ASCII RIBBON CAMPAIGN - AGAINST HTML MAIL
 / \
--------------------------------------------------
http://www.completo.com.br/~jorge
===========================================
With a PC, I always felt limited
by the software available.
On Unix, I am limited only by my knowledge.
--Peter J. Schoenster

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2003-02-11 11:22 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-02-10 23:36 xfree fonts Jorge R . Csapo
2003-02-11  5:16 ` Glynn Clements
2003-02-11  8:29   ` Ping Problem Mohd Saifullah
2003-02-11 11:22   ` xfree fonts - SOLVED Jorge R . Csapo

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).