Subject: HP-UX X server (was: kernel build...)
To: None <port-hp300@netbsd.org>
From: Steve Peurifoy <sp128@ibm.net>
List: port-hp300
Date: 08/27/1998 01:07:21
> Ah, you're running the HP-UX X server under emulation mode? Fantastic!
> I would like to put up some detailed information on the www server on
> how to do this... are there any volunteers out there who could help with
> this?
I'll describe the setup I use for what it's worth. I make no claims that
this is the best arrangement but it works well for me...
I wanted to keep the HP stuff isolated from the rest of the system for
ease of keeping track of what's what, so I put it into its own directory
tree and run it chroot()ed. At the end of this message is a list of the
contents of the tree obtained from an HP-UX 9.0 system. The relevant
NetBSD device files need to be added to this tree bien sur. The X server
proper is actually from a patch (whose designation I don't remember)
which fixes a few bugs in the released version, but either should work.
The fonts are not from HP-UX but (with a few additions) are the ones
from the old BSD X11R5 package. Everything else in my setup (clients,
startup scripts, etc.) is from there as well.
Some of the files I included are probably unnecessary, but this seems to
be a sufficient set. For example, none of the libdd*.sl driver libraries
appear to be accessed on my system so the server evidently doesn't need
them. Of course, the archive libraries are certainly extraneous - I just
kept them in case I had occasion to try to statically link something with
them at some point. Why some of the executables like "id" are there and
whether they're necessary is knowledge that's been lost in the mists of
time. I do find it fairly difficult to believe that "cal" is really
needed. I vauely recall that I was just testing HPUX_COMPAT and chroot2.
Nuke 'em.
My ${HOME}/.xserverrc file looks like this:
-------- cut here --------
#!/bin/sh
if [ ! -h /tmp/.X11-unix/X0 ]
then
rm -f /tmp/.X11-unix/X0
ln -s /usr/hpx/usr/spool/sockets/X11/0 /tmp/.X11-unix/X0
fi
DISPLAY=`hostname`:0.0
export DISPLAY
chroot2 /usr/hpx X :0
-------- cut here --------
The setuid root program "chroot2" sets up a minimal environment and runs
the server after chroot()ing into the root of the tree. Obviously, on
a system with untrusted users it's a gigantic security hole so caveat
emptor. All sorts of more elaborate schemes are left as an exercise
for the reader. The source follows:
-------- cut here --------
#include <stdio.h>
#include <stdlib.h>
char** environ;
char* envp[4];
int
main(int argc, char** argv)
{
char msg[512];
uid_t myuid;
gid_t mygid;
myuid = getuid();
mygid = getgid();
if (chdir(argv[1]) != 0)
{
sprintf(msg, "%s: chdir(2) failed", argv[0]);
perror(msg);
exit(1);
}
if (chroot(argv[1]) != 0)
{
sprintf(msg, "%s: chroot(2) failed", argv[0]);
perror(msg);
exit(1);
}
/* reset uid/gid to real values */
if ((setuid(myuid) != 0) || (setgid(mygid) != 0))
{
sprintf(msg, "%s: setuid(2) or setgid(2) failed", argv[0]);
perror(msg);
exit(1);
}
envp[0] = "PATH=/bin:/usr/bin:/usr/bin/X11";
envp[1] = "PWD=/";
envp[2] = (char *)0;
environ = envp;
execvp(argv[2], &argv[2]);
sprintf(msg, "%s: exec(2) failed", argv[0]);
perror(msg);
exit(1);
}
-------- cut here --------
I think that about covers it. Put the line
/dev/grf0
in /usr/hpx/usr/lib/X11/X0screens and rock'n'roll. Of course, it goes
without saying that one needs COMPAT_HPUX in one's config to run this
stuff. SYS V IPC is also needed for communication between X and grmd.
I should note that the X server does segfault on shutdown for some
reason. I haven't yet been sufficiently motivated to track down
why. Since /usr/hpx is writable only by root, no droppings are left
behind to take up space.
Hope this is useful to someone. If there's interest, I could experiment
with finding the actual minimum set of required HP-UX files and/or
re-write this in a more structured fashion. Let me know.
-Steve
**********
Contents of /usr/hpx:
total 10
drwxr-xr-x 2 root wheel 512 Sep 26 1997 bin
drwxr-xr-x 2 root wheel 512 Sep 26 1997 dev
drwxr-xr-x 2 root wheel 512 Sep 26 1997 lib
drwxrwxrwx 3 root wheel 512 Aug 21 22:18 tmp
drwxr-xr-x 5 root wheel 512 Sep 26 1997 usr
/usr/hpx/bin:
total 12
-rwxr-xr-x 1 root wheel 5400 Sep 20 1992 env
/usr/hpx/dev:
total 0
crw-rw-rw- 1 root wheel 10, 0 Aug 24 1997 grf0
crw-rw-rw- 1 root wheel 14, 0 Aug 24 1997 hil0
crw-rw-rw- 1 root wheel 14, 1 Aug 24 1997 hil1
crw-rw-rw- 1 root wheel 14, 2 Aug 24 1997 hil2
crw-rw-rw- 1 root wheel 14, 3 Aug 24 1997 hil3
crw-rw-rw- 1 root wheel 14, 4 Aug 24 1997 hil4
crw-rw-rw- 1 root wheel 14, 5 Aug 24 1997 hil5
crw-rw-rw- 1 root wheel 14, 6 Aug 24 1997 hil6
crw-rw-rw- 1 root wheel 14, 7 Aug 24 1997 hil7
crw-rw-rw- 1 root wheel 2, 2 Aug 22 1997 null
crw-rw-rw- 1 root wheel 14, 0 Aug 26 1997 rhil
crw-rw-rw- 1 root wheel 1, 0 Aug 22 1997 tty
/usr/hpx/lib:
total 3384
-r-xr-xr-x 1 bin bin 45056 Sep 20 1992 dld.sl
-r--r--r-- 1 bin bin 768526 Jan 17 1996 libc.a
-r-xr-xr-x 1 bin bin 762356 Jan 17 1996 libc.sl
-r--r--r-- 1 bin bin 54840 Sep 20 1992 libm.a
-r-xr-xr-x 1 bin bin 75550 Sep 20 1992 libm.sl
/usr/hpx/tmp:
/usr/hpx/usr:
total 6
drwxr-xr-x 3 root wheel 512 Sep 26 1997 bin
drwxr-xr-x 5 root wheel 512 Sep 26 1997 lib
drwxr-xr-x 3 root wheel 512 Sep 26 1997 spool
/usr/hpx/usr/bin:
total 24
drwxr-xr-x 2 root wheel 512 Sep 26 1997 X11
-rwxr-xr-x 1 root wheel 4480 Sep 20 1992 cal
-rwxr-xr-x 1 root wheel 5400 Sep 20 1992 id
/usr/hpx/usr/bin/X11:
total 7824
-r-xr-xr-x 1 bin bin 2828862 Feb 6 1996 X
-r-xr-xr-x 1 bin bin 1151696 Nov 30 1994 mwm
/usr/hpx/usr/lib:
total 1452
drwxr-xr-x 2 root wheel 512 Sep 26 1997 Motif1.2
drwxr-xr-x 4 root wheel 512 Mar 25 19:21 X11
drwxr-xr-x 2 root wheel 512 Sep 26 1997 X11R5
-r-xr-xr-x 1 root wheel 74576 Sep 20 1992 grmd
-r--r--r-- 1 bin bin 68871 Sep 20 1992 libdd300h.a
-r-xr-xr-x 1 bin bin 83185 Sep 20 1992 libdd300h.sl
-r--r--r-- 1 bin bin 119865 Sep 20 1992 libdd98550.a
-r-xr-xr-x 1 bin bin 134426 Sep 20 1992 libdd98550.sl
-r--r--r-- 1 bin bin 10523 Sep 20 1992 libddbit.a
-r-xr-xr-x 1 bin bin 21842 Sep 20 1992 libddbit.sl
-r--r--r-- 1 bin bin 2847 Sep 20 1992 libddbyte.a
-r-xr-xr-x 1 bin bin 13215 Sep 20 1992 libddbyte.sl
-r--r--r-- 1 bin bin 21817 Sep 20 1992 libddhil.a
-r-xr-xr-x 1 bin bin 32241 Sep 20 1992 libddhil.sl
-r--r--r-- 1 bin bin 4949 Sep 20 1992 libddkbd.a
-r-xr-xr-x 1 bin bin 17740 Sep 20 1992 libddkbd.sl
-r--r--r-- 1 bin bin 13715 Sep 20 1992 libddlkbd.a
-r-xr-xr-x 1 bin bin 22500 Sep 20 1992 libddlkbd.sl
-r-xr-xr-x 1 bin bin 12772 Sep 20 1992 libdld.sl
-r--r--r-- 1 bin bin 22236 Sep 20 1992 libfontm.a
-r-xr-xr-x 1 bin bin 31280 Sep 20 1992 libfontm.sl
/usr/hpx/usr/lib/Motif1.2:
total 6592
-r--r--r-- 1 bin bin 1664710 Feb 8 1996 libXm.a
-r-xr-xr-x 1 bin bin 1685343 Feb 8 1996 libXm.sl
/usr/hpx/usr/lib/X11:
total 624
-r--r--r-- 1 bin bin 4694 Nov 21 1989 X0devices
-r--r--r-- 1 bin bin 3135 Nov 21 1989 X0pointerkeys
-r--r--r-- 1 bin bin 8374 Aug 24 1997 X0screens
-r--r--r-- 1 bin bin 8384 Sep 20 1992 XErrorDB
-r--r--r-- 1 bin bin 201129 Feb 6 1996 XHPKeymaps
-r--r--r-- 1 bin bin 2123 Sep 20 1992 XHPmodmap
-r--r--r-- 1 root wheel 3306 Dec 3 1997 XKeysymDB
-r--r--r-- 1 bin bin 2788 Sep 20 1992 XKeysymDB.orig
drwxr-xr-x 2 root wheel 512 Sep 26 1997 extensions
drwxr-xr-x 7 root wheel 512 Sep 26 1997 fonts
-r--r--r-- 1 bin bin 4096 Aug 18 1993 rgb.dir
-r--r--r-- 1 bin bin 29696 Aug 18 1993 rgb.pag
-r--r--r-- 1 bin bin 32314 Aug 18 1993 rgb.txt
/usr/hpx/usr/lib/X11/extensions:
total 224
-r-xr-xr-x 1 bin bin 100157 Jul 22 1993 libSXR5.sl
/usr/hpx/usr/lib/X11/fonts:
total 28
drwxr-xr-x 2 root wheel 4608 Sep 26 1997 100dpi
drwxr-xr-x 2 root wheel 4608 Sep 26 1997 75dpi
drwxr-xr-x 2 root wheel 512 Sep 26 1997 PEX
drwxr-xr-x 2 root wheel 512 Sep 26 1997 Speedo
drwxr-xr-x 2 root wheel 2048 Mar 25 18:31 misc
/usr/hpx/usr/lib/X11/fonts/100dpi:
total 5566
-r--r--r-- 1 root wheel 8884 Sep 18 1994 charB08.pcf
-r--r--r-- 1 root wheel 9616 Sep 18 1994 charB10.pcf
-r--r--r-- 1 root wheel 10360 Sep 18 1994 charB12.pcf
-r--r--r-- 1 root wheel 11216 Sep 18 1994 charB14.pcf
-r--r--r-- 1 root wheel 14184 Sep 18 1994 charB18.pcf
-r--r--r-- 1 root wheel 20424 Sep 18 1994 charB24.pcf
-r--r--r-- 1 root wheel 8904 Sep 18 1994 charBI08.pcf
-r--r--r-- 1 root wheel 9632 Sep 18 1994 charBI10.pcf
-r--r--r-- 1 root wheel 10436 Sep 18 1994 charBI12.pcf
-r--r--r-- 1 root wheel 11232 Sep 18 1994 charBI14.pcf
-r--r--r-- 1 root wheel 14692 Sep 18 1994 charBI18.pcf
-r--r--r-- 1 root wheel 20924 Sep 18 1994 charBI24.pcf
-r--r--r-- 1 root wheel 8920 Sep 18 1994 charI08.pcf
-r--r--r-- 1 root wheel 9560 Sep 18 1994 charI10.pcf
-r--r--r-- 1 root wheel 10328 Sep 18 1994 charI12.pcf
-r--r--r-- 1 root wheel 11040 Sep 18 1994 charI14.pcf
-r--r--r-- 1 root wheel 12904 Sep 18 1994 charI18.pcf
-r--r--r-- 1 root wheel 18704 Sep 18 1994 charI24.pcf
-r--r--r-- 1 root wheel 8884 Sep 18 1994 charR08.pcf
-r--r--r-- 1 root wheel 9572 Sep 18 1994 charR10.pcf
-r--r--r-- 1 root wheel 10292 Sep 18 1994 charR12.pcf
-r--r--r-- 1 root wheel 10820 Sep 18 1994 charR14.pcf
-r--r--r-- 1 root wheel 12688 Sep 18 1994 charR18.pcf
-r--r--r-- 1 root wheel 18360 Sep 18 1994 charR24.pcf
-r--r--r-- 1 root wheel 8668 Sep 18 1994 courB08.pcf
-r--r--r-- 1 root wheel 10872 Sep 18 1994 courB10.pcf
-r--r--r-- 1 root wheel 11336 Sep 18 1994 courB12.pcf
-r--r--r-- 1 root wheel 11896 Sep 18 1994 courB14.pcf
-r--r--r-- 1 root wheel 13340 Sep 18 1994 courB18.pcf
-r--r--r-- 1 root wheel 20176 Sep 18 1994 courB24.pcf
-r--r--r-- 1 root wheel 8656 Sep 18 1994 courBO08.pcf
-r--r--r-- 1 root wheel 10872 Sep 18 1994 courBO10.pcf
-r--r--r-- 1 root wheel 11316 Sep 18 1994 courBO12.pcf
-r--r--r-- 1 root wheel 11884 Sep 18 1994 courBO14.pcf
-r--r--r-- 1 root wheel 13496 Sep 18 1994 courBO18.pcf
-r--r--r-- 1 root wheel 20936 Sep 18 1994 courBO24.pcf
-r--r--r-- 1 root wheel 8660 Sep 18 1994 courO08.pcf
-r--r--r-- 1 root wheel 10856 Sep 18 1994 courO10.pcf
-r--r--r-- 1 root wheel 11288 Sep 18 1994 courO12.pcf
-r--r--r-- 1 root wheel 11700 Sep 18 1994 courO14.pcf
-r--r--r-- 1 root wheel 13096 Sep 18 1994 courO18.pcf
-r--r--r-- 1 root wheel 18368 Sep 18 1994 courO24.pcf
-r--r--r-- 1 root wheel 8688 Sep 18 1994 courR08.pcf
-r--r--r-- 1 root wheel 10860 Sep 18 1994 courR10.pcf
-r--r--r-- 1 root wheel 11284 Sep 18 1994 courR12.pcf
-r--r--r-- 1 root wheel 11728 Sep 18 1994 courR14.pcf
-r--r--r-- 1 root wheel 13076 Sep 18 1994 courR18.pcf
-r--r--r-- 1 root wheel 16880 Sep 18 1994 courR24.pcf
-r--r--r-- 1 root wheel 3154 Sep 18 1994 fonts.alias
-r--r--r-- 1 root wheel 15500 Sep 18 1994 fonts.dir
-r--r--r-- 1 root wheel 9104 Sep 18 1994 helvB08.pcf
-r--r--r-- 1 root wheel 11364 Sep 18 1994 helvB10.pcf
-r--r--r-- 1 root wheel 11928 Sep 18 1994 helvB12.pcf
-r--r--r-- 1 root wheel 12640 Sep 18 1994 helvB14.pcf
-r--r--r-- 1 root wheel 15460 Sep 18 1994 helvB18.pcf
-r--r--r-- 1 root wheel 21312 Sep 18 1994 helvB24.pcf
-r--r--r-- 1 root wheel 9152 Sep 18 1994 helvBO08.pcf
-r--r--r-- 1 root wheel 11432 Sep 18 1994 helvBO10.pcf
-r--r--r-- 1 root wheel 11988 Sep 18 1994 helvBO12.pcf
-r--r--r-- 1 root wheel 12732 Sep 18 1994 helvBO14.pcf
-r--r--r-- 1 root wheel 16244 Sep 18 1994 helvBO18.pcf
-r--r--r-- 1 root wheel 24660 Sep 18 1994 helvBO24.pcf
-r--r--r-- 1 root wheel 9144 Sep 18 1994 helvO08.pcf
-r--r--r-- 1 root wheel 11388 Sep 18 1994 helvO10.pcf
-r--r--r-- 1 root wheel 11936 Sep 18 1994 helvO12.pcf
-r--r--r-- 1 root wheel 12668 Sep 18 1994 helvO14.pcf
-r--r--r-- 1 root wheel 15984 Sep 18 1994 helvO18.pcf
-r--r--r-- 1 root wheel 23236 Sep 18 1994 helvO24.pcf
-r--r--r-- 1 root wheel 9104 Sep 18 1994 helvR08.pcf
-r--r--r-- 1 root wheel 11356 Sep 18 1994 helvR10.pcf
-r--r--r-- 1 root wheel 11928 Sep 18 1994 helvR12.pcf
-r--r--r-- 1 root wheel 12620 Sep 18 1994 helvR14.pcf
-r--r--r-- 1 root wheel 15140 Sep 18 1994 helvR18.pcf
-r--r--r-- 1 root wheel 20484 Sep 18 1994 helvR24.pcf
-r--r--r-- 1 root wheel 10064 Sep 18 1994 luBIS08.pcf
-r--r--r-- 1 root wheel 10904 Sep 18 1994 luBIS10.pcf
-r--r--r-- 1 root wheel 11888 Sep 18 1994 luBIS12.pcf
-r--r--r-- 1 root wheel 12976 Sep 18 1994 luBIS14.pcf
-r--r--r-- 1 root wheel 16776 Sep 18 1994 luBIS18.pcf
-r--r--r-- 1 root wheel 18204 Sep 18 1994 luBIS19.pcf
-r--r--r-- 1 root wheel 25276 Sep 18 1994 luBIS24.pcf
-r--r--r-- 1 root wheel 10024 Sep 18 1994 luBS08.pcf
-r--r--r-- 1 root wheel 10852 Sep 18 1994 luBS10.pcf
-r--r--r-- 1 root wheel 11808 Sep 18 1994 luBS12.pcf
-r--r--r-- 1 root wheel 12864 Sep 18 1994 luBS14.pcf
-r--r--r-- 1 root wheel 15792 Sep 18 1994 luBS18.pcf
-r--r--r-- 1 root wheel 16556 Sep 18 1994 luBS19.pcf
-r--r--r-- 1 root wheel 25072 Sep 18 1994 luBS24.pcf
-r--r--r-- 1 root wheel 10060 Sep 18 1994 luIS08.pcf
-r--r--r-- 1 root wheel 10980 Sep 18 1994 luIS10.pcf
-r--r--r-- 1 root wheel 11952 Sep 18 1994 luIS12.pcf
-r--r--r-- 1 root wheel 12932 Sep 18 1994 luIS14.pcf
-r--r--r-- 1 root wheel 15420 Sep 18 1994 luIS18.pcf
-r--r--r-- 1 root wheel 16532 Sep 18 1994 luIS19.pcf
-r--r--r-- 1 root wheel 24180 Sep 18 1994 luIS24.pcf
-r--r--r-- 1 root wheel 10040 Sep 18 1994 luRS08.pcf
-r--r--r-- 1 root wheel 10840 Sep 18 1994 luRS10.pcf
-r--r--r-- 1 root wheel 11748 Sep 18 1994 luRS12.pcf
-r--r--r-- 1 root wheel 12776 Sep 18 1994 luRS14.pcf
-r--r--r-- 1 root wheel 15312 Sep 18 1994 luRS18.pcf
-r--r--r-- 1 root wheel 15820 Sep 18 1994 luRS19.pcf
-r--r--r-- 1 root wheel 21884 Sep 18 1994 luRS24.pcf
-r--r--r-- 1 root wheel 10420 Sep 18 1994 lubB08.pcf
-r--r--r-- 1 root wheel 10980 Sep 18 1994 lubB10.pcf
-r--r--r-- 1 root wheel 12032 Sep 18 1994 lubB12.pcf
-r--r--r-- 1 root wheel 13196 Sep 18 1994 lubB14.pcf
-r--r--r-- 1 root wheel 16284 Sep 18 1994 lubB18.pcf
-r--r--r-- 1 root wheel 17404 Sep 18 1994 lubB19.pcf
-r--r--r-- 1 root wheel 23896 Sep 18 1994 lubB24.pcf
-r--r--r-- 1 root wheel 10420 Sep 18 1994 lubBI08.pcf
-r--r--r-- 1 root wheel 11008 Sep 18 1994 lubBI10.pcf
-r--r--r-- 1 root wheel 12180 Sep 18 1994 lubBI12.pcf
-r--r--r-- 1 root wheel 13492 Sep 18 1994 lubBI14.pcf
-r--r--r-- 1 root wheel 17052 Sep 18 1994 lubBI18.pcf
-r--r--r-- 1 root wheel 17776 Sep 18 1994 lubBI19.pcf
-r--r--r-- 1 root wheel 25172 Sep 18 1994 lubBI24.pcf
-r--r--r-- 1 root wheel 10388 Sep 18 1994 lubI08.pcf
-r--r--r-- 1 root wheel 10956 Sep 18 1994 lubI10.pcf
-r--r--r-- 1 root wheel 12084 Sep 18 1994 lubI12.pcf
-r--r--r-- 1 root wheel 13280 Sep 18 1994 lubI14.pcf
-r--r--r-- 1 root wheel 16268 Sep 18 1994 lubI18.pcf
-r--r--r-- 1 root wheel 17376 Sep 18 1994 lubI19.pcf
-r--r--r-- 1 root wheel 24416 Sep 18 1994 lubI24.pcf
-r--r--r-- 1 root wheel 10276 Sep 18 1994 lubR08.pcf
-r--r--r-- 1 root wheel 10828 Sep 18 1994 lubR10.pcf
-r--r--r-- 1 root wheel 11908 Sep 18 1994 lubR12.pcf
-r--r--r-- 1 root wheel 13144 Sep 18 1994 lubR14.pcf
-r--r--r-- 1 root wheel 15924 Sep 18 1994 lubR18.pcf
-r--r--r-- 1 root wheel 16608 Sep 18 1994 lubR19.pcf
-r--r--r-- 1 root wheel 23332 Sep 18 1994 lubR24.pcf
-r--r--r-- 1 root wheel 10004 Sep 18 1994 lutBS08.pcf
-r--r--r-- 1 root wheel 10928 Sep 18 1994 lutBS10.pcf
-r--r--r-- 1 root wheel 11736 Sep 18 1994 lutBS12.pcf
-r--r--r-- 1 root wheel 12640 Sep 18 1994 lutBS14.pcf
-r--r--r-- 1 root wheel 14300 Sep 18 1994 lutBS18.pcf
-r--r--r-- 1 root wheel 14592 Sep 18 1994 lutBS19.pcf
-r--r--r-- 1 root wheel 23448 Sep 18 1994 lutBS24.pcf
-r--r--r-- 1 root wheel 9996 Sep 18 1994 lutRS08.pcf
-r--r--r-- 1 root wheel 10800 Sep 18 1994 lutRS10.pcf
-r--r--r-- 1 root wheel 11600 Sep 18 1994 lutRS12.pcf
-r--r--r-- 1 root wheel 12544 Sep 18 1994 lutRS14.pcf
-r--r--r-- 1 root wheel 14020 Sep 18 1994 lutRS18.pcf
-r--r--r-- 1 root wheel 14400 Sep 18 1994 lutRS19.pcf
-r--r--r-- 1 root wheel 20888 Sep 18 1994 lutRS24.pcf
-r--r--r-- 1 root wheel 9108 Sep 18 1994 ncenB08.pcf
-r--r--r-- 1 root wheel 11468 Sep 18 1994 ncenB10.pcf
-r--r--r-- 1 root wheel 11912 Sep 18 1994 ncenB12.pcf
-r--r--r-- 1 root wheel 12844 Sep 18 1994 ncenB14.pcf
-r--r--r-- 1 root wheel 16744 Sep 18 1994 ncenB18.pcf
-r--r--r-- 1 root wheel 20168 Sep 18 1994 ncenB24.pcf
-r--r--r-- 1 root wheel 9096 Sep 18 1994 ncenBI08.pcf
-r--r--r-- 1 root wheel 11484 Sep 18 1994 ncenBI10.pcf
-r--r--r-- 1 root wheel 11968 Sep 18 1994 ncenBI12.pcf
-r--r--r-- 1 root wheel 12872 Sep 18 1994 ncenBI14.pcf
-r--r--r-- 1 root wheel 17132 Sep 18 1994 ncenBI18.pcf
-r--r--r-- 1 root wheel 21376 Sep 18 1994 ncenBI24.pcf
-r--r--r-- 1 root wheel 9032 Sep 18 1994 ncenI08.pcf
-r--r--r-- 1 root wheel 11428 Sep 18 1994 ncenI10.pcf
-r--r--r-- 1 root wheel 11952 Sep 18 1994 ncenI12.pcf
-r--r--r-- 1 root wheel 12684 Sep 18 1994 ncenI14.pcf
-r--r--r-- 1 root wheel 15560 Sep 18 1994 ncenI18.pcf
-r--r--r-- 1 root wheel 22840 Sep 18 1994 ncenI24.pcf
-r--r--r-- 1 root wheel 9048 Sep 18 1994 ncenR08.pcf
-r--r--r-- 1 root wheel 11412 Sep 18 1994 ncenR10.pcf
-r--r--r-- 1 root wheel 11872 Sep 18 1994 ncenR12.pcf
-r--r--r-- 1 root wheel 12712 Sep 18 1994 ncenR14.pcf
-r--r--r-- 1 root wheel 15660 Sep 18 1994 ncenR18.pcf
-r--r--r-- 1 root wheel 21288 Sep 18 1994 ncenR24.pcf
-r--r--r-- 1 root wheel 9172 Sep 18 1994 symb08.pcf
-r--r--r-- 1 root wheel 10008 Sep 18 1994 symb10.pcf
-r--r--r-- 1 root wheel 10580 Sep 18 1994 symb12.pcf
-r--r--r-- 1 root wheel 11128 Sep 18 1994 symb14.pcf
-r--r--r-- 1 root wheel 12940 Sep 18 1994 symb18.pcf
-r--r--r-- 1 root wheel 18232 Sep 18 1994 symb24.pcf
-r--r--r-- 1 root wheel 16624 Sep 18 1994 tech14.pcf
-r--r--r-- 1 root wheel 16620 Sep 18 1994 techB14.pcf
-r--r--r-- 1 root wheel 17540 Sep 18 1994 term14.pcf
-r--r--r-- 1 root wheel 17540 Sep 18 1994 termB14.pcf
-r--r--r-- 1 root wheel 8864 Sep 18 1994 timB08.pcf
-r--r--r-- 1 root wheel 11188 Sep 18 1994 timB10.pcf
-r--r--r-- 1 root wheel 11684 Sep 18 1994 timB12.pcf
-r--r--r-- 1 root wheel 12424 Sep 18 1994 timB14.pcf
-r--r--r-- 1 root wheel 15384 Sep 18 1994 timB18.pcf
-r--r--r-- 1 root wheel 20388 Sep 18 1994 timB24.pcf
-r--r--r-- 1 root wheel 8820 Sep 18 1994 timBI08.pcf
-r--r--r-- 1 root wheel 11112 Sep 18 1994 timBI10.pcf
-r--r--r-- 1 root wheel 10092 Sep 18 1994 timBI12.pcf
-r--r--r-- 1 root wheel 12444 Sep 18 1994 timBI14.pcf
-r--r--r-- 1 root wheel 16000 Sep 18 1994 timBI18.pcf
-r--r--r-- 1 root wheel 21076 Sep 18 1994 timBI24.pcf
-r--r--r-- 1 root wheel 8788 Sep 18 1994 timI08.pcf
-r--r--r-- 1 root wheel 11072 Sep 18 1994 timI10.pcf
-r--r--r-- 1 root wheel 11628 Sep 18 1994 timI12.pcf
-r--r--r-- 1 root wheel 12288 Sep 18 1994 timI14.pcf
-r--r--r-- 1 root wheel 14816 Sep 18 1994 timI18.pcf
-r--r--r-- 1 root wheel 20500 Sep 18 1994 timI24.pcf
-r--r--r-- 1 root wheel 8776 Sep 18 1994 timR08.pcf
-r--r--r-- 1 root wheel 11172 Sep 18 1994 timR10.pcf
-r--r--r-- 1 root wheel 11588 Sep 18 1994 timR12.pcf
-r--r--r-- 1 root wheel 12300 Sep 18 1994 timR14.pcf
-r--r--r-- 1 root wheel 14668 Sep 18 1994 timR18.pcf
-r--r--r-- 1 root wheel 19608 Sep 18 1994 timR24.pcf
/usr/hpx/usr/lib/X11/fonts/75dpi:
total 4872
-r--r--r-- 1 root wheel 8184 Sep 18 1994 charB08.pcf
-r--r--r-- 1 root wheel 8684 Sep 18 1994 charB10.pcf
-r--r--r-- 1 root wheel 9204 Sep 18 1994 charB12.pcf
-r--r--r-- 1 root wheel 9848 Sep 18 1994 charB14.pcf
-r--r--r-- 1 root wheel 11056 Sep 18 1994 charB18.pcf
-r--r--r-- 1 root wheel 14180 Sep 18 1994 charB24.pcf
-r--r--r-- 1 root wheel 8236 Sep 18 1994 charBI08.pcf
-r--r--r-- 1 root wheel 8696 Sep 18 1994 charBI10.pcf
-r--r--r-- 1 root wheel 9248 Sep 18 1994 charBI12.pcf
-r--r--r-- 1 root wheel 9896 Sep 18 1994 charBI14.pcf
-r--r--r-- 1 root wheel 11120 Sep 18 1994 charBI18.pcf
-r--r--r-- 1 root wheel 14688 Sep 18 1994 charBI24.pcf
-r--r--r-- 1 root wheel 8220 Sep 18 1994 charI08.pcf
-r--r--r-- 1 root wheel 8700 Sep 18 1994 charI10.pcf
-r--r--r-- 1 root wheel 9180 Sep 18 1994 charI12.pcf
-r--r--r-- 1 root wheel 9864 Sep 18 1994 charI14.pcf
-r--r--r-- 1 root wheel 10876 Sep 18 1994 charI18.pcf
-r--r--r-- 1 root wheel 12904 Sep 18 1994 charI24.pcf
-r--r--r-- 1 root wheel 8192 Sep 18 1994 charR08.pcf
-r--r--r-- 1 root wheel 8664 Sep 18 1994 charR10.pcf
-r--r--r-- 1 root wheel 9200 Sep 18 1994 charR12.pcf
-r--r--r-- 1 root wheel 9824 Sep 18 1994 charR14.pcf
-r--r--r-- 1 root wheel 10816 Sep 18 1994 charR18.pcf
-r--r--r-- 1 root wheel 12684 Sep 18 1994 charR24.pcf
-r--r--r-- 1 root wheel 9504 Sep 18 1994 courB08.pcf
-r--r--r-- 1 root wheel 9888 Sep 18 1994 courB10.pcf
-r--r--r-- 1 root wheel 10484 Sep 18 1994 courB12.pcf
-r--r--r-- 1 root wheel 10888 Sep 18 1994 courB14.pcf
-r--r--r-- 1 root wheel 11916 Sep 18 1994 courB18.pcf
-r--r--r-- 1 root wheel 13316 Sep 18 1994 courB24.pcf
-r--r--r-- 1 root wheel 9492 Sep 18 1994 courBO08.pcf
-r--r--r-- 1 root wheel 9848 Sep 18 1994 courBO10.pcf
-r--r--r-- 1 root wheel 10448 Sep 18 1994 courBO12.pcf
-r--r--r-- 1 root wheel 10880 Sep 18 1994 courBO14.pcf
-r--r--r-- 1 root wheel 11880 Sep 18 1994 courBO18.pcf
-r--r--r-- 1 root wheel 13520 Sep 18 1994 courBO24.pcf
-r--r--r-- 1 root wheel 9468 Sep 18 1994 courO08.pcf
-r--r--r-- 1 root wheel 9832 Sep 18 1994 courO10.pcf
-r--r--r-- 1 root wheel 10464 Sep 18 1994 courO12.pcf
-r--r--r-- 1 root wheel 10908 Sep 18 1994 courO14.pcf
-r--r--r-- 1 root wheel 11712 Sep 18 1994 courO18.pcf
-r--r--r-- 1 root wheel 13104 Sep 18 1994 courO24.pcf
-r--r--r-- 1 root wheel 9524 Sep 18 1994 courR08.pcf
-r--r--r-- 1 root wheel 9844 Sep 18 1994 courR10.pcf
-r--r--r-- 1 root wheel 10456 Sep 18 1994 courR12.pcf
-r--r--r-- 1 root wheel 10872 Sep 18 1994 courR14.pcf
-r--r--r-- 1 root wheel 11716 Sep 18 1994 courR18.pcf
-r--r--r-- 1 root wheel 13056 Sep 18 1994 courR24.pcf
-r--r--r-- 1 root wheel 3066 Sep 18 1994 fonts.alias
-r--r--r-- 1 root wheel 15238 Nov 9 1995 fonts.dir
-r--r--r-- 1 root wheel 9788 Sep 18 1994 helvB08.pcf
-r--r--r-- 1 root wheel 10308 Sep 18 1994 helvB10.pcf
-r--r--r-- 1 root wheel 10744 Sep 18 1994 helvB12.pcf
-r--r--r-- 1 root wheel 11340 Sep 18 1994 helvB14.pcf
-r--r--r-- 1 root wheel 12608 Sep 18 1994 helvB18.pcf
-r--r--r-- 1 root wheel 15472 Sep 18 1994 helvB24.pcf
-r--r--r-- 1 root wheel 9808 Sep 18 1994 helvBO08.pcf
-r--r--r-- 1 root wheel 10336 Sep 18 1994 helvBO10.pcf
-r--r--r-- 1 root wheel 10776 Sep 18 1994 helvBO12.pcf
-r--r--r-- 1 root wheel 11412 Sep 18 1994 helvBO14.pcf
-r--r--r-- 1 root wheel 12708 Sep 18 1994 helvBO18.pcf
-r--r--r-- 1 root wheel 16232 Sep 18 1994 helvBO24.pcf
-r--r--r-- 1 root wheel 9816 Sep 18 1994 helvO08.pcf
-r--r--r-- 1 root wheel 10352 Sep 18 1994 helvO10.pcf
-r--r--r-- 1 root wheel 10728 Sep 18 1994 helvO12.pcf
-r--r--r-- 1 root wheel 11324 Sep 18 1994 helvO14.pcf
-r--r--r-- 1 root wheel 12644 Sep 18 1994 helvO18.pcf
-r--r--r-- 1 root wheel 15972 Sep 18 1994 helvO24.pcf
-r--r--r-- 1 root wheel 9764 Sep 18 1994 helvR08.pcf
-r--r--r-- 1 root wheel 10300 Sep 18 1994 helvR10.pcf
-r--r--r-- 1 root wheel 10736 Sep 18 1994 helvR12.pcf
-r--r--r-- 1 root wheel 11332 Sep 18 1994 helvR14.pcf
-r--r--r-- 1 root wheel 12672 Sep 18 1994 helvR18.pcf
-r--r--r-- 1 root wheel 15124 Sep 18 1994 helvR24.pcf
-r--r--r-- 1 root wheel 9280 Sep 18 1994 luBIS08.pcf
-r--r--r-- 1 root wheel 9988 Sep 18 1994 luBIS10.pcf
-r--r--r-- 1 root wheel 10624 Sep 18 1994 luBIS12.pcf
-r--r--r-- 1 root wheel 11040 Sep 18 1994 luBIS14.pcf
-r--r--r-- 1 root wheel 12360 Sep 18 1994 luBIS18.pcf
-r--r--r-- 1 root wheel 12568 Sep 18 1994 luBIS19.pcf
-r--r--r-- 1 root wheel 16056 Sep 18 1994 luBIS24.pcf
-r--r--r-- 1 root wheel 9240 Sep 18 1994 luBS08.pcf
-r--r--r-- 1 root wheel 9968 Sep 18 1994 luBS10.pcf
-r--r--r-- 1 root wheel 10580 Sep 18 1994 luBS12.pcf
-r--r--r-- 1 root wheel 10996 Sep 18 1994 luBS14.pcf
-r--r--r-- 1 root wheel 12292 Sep 18 1994 luBS18.pcf
-r--r--r-- 1 root wheel 12720 Sep 18 1994 luBS19.pcf
-r--r--r-- 1 root wheel 15328 Sep 18 1994 luBS24.pcf
-r--r--r-- 1 root wheel 9276 Sep 18 1994 luIS08.pcf
-r--r--r-- 1 root wheel 9944 Sep 18 1994 luIS10.pcf
-r--r--r-- 1 root wheel 10560 Sep 18 1994 luIS12.pcf
-r--r--r-- 1 root wheel 11040 Sep 18 1994 luIS14.pcf
-r--r--r-- 1 root wheel 12200 Sep 18 1994 luIS18.pcf
-r--r--r-- 1 root wheel 12708 Sep 18 1994 luIS19.pcf
-r--r--r-- 1 root wheel 14896 Sep 18 1994 luIS24.pcf
-r--r--r-- 1 root wheel 9248 Sep 18 1994 luRS08.pcf
-r--r--r-- 1 root wheel 9924 Sep 18 1994 luRS10.pcf
-r--r--r-- 1 root wheel 10556 Sep 18 1994 luRS12.pcf
-r--r--r-- 1 root wheel 10996 Sep 18 1994 luRS14.pcf
-r--r--r-- 1 root wheel 12096 Sep 18 1994 luRS18.pcf
-r--r--r-- 1 root wheel 12672 Sep 18 1994 luRS19.pcf
-r--r--r-- 1 root wheel 14236 Sep 18 1994 luRS24.pcf
-r--r--r-- 1 root wheel 9240 Sep 18 1994 lubB08.pcf
-r--r--r-- 1 root wheel 9892 Sep 18 1994 lubB10.pcf
-r--r--r-- 1 root wheel 10528 Sep 18 1994 lubB12.pcf
-r--r--r-- 1 root wheel 10976 Sep 18 1994 lubB14.pcf
-r--r--r-- 1 root wheel 12272 Sep 18 1994 lubB18.pcf
-r--r--r-- 1 root wheel 12764 Sep 18 1994 lubB19.pcf
-r--r--r-- 1 root wheel 15848 Sep 18 1994 lubB24.pcf
-r--r--r-- 1 root wheel 9288 Sep 18 1994 lubBI08.pcf
-r--r--r-- 1 root wheel 9932 Sep 18 1994 lubBI10.pcf
-r--r--r-- 1 root wheel 10536 Sep 18 1994 lubBI12.pcf
-r--r--r-- 1 root wheel 11004 Sep 18 1994 lubBI14.pcf
-r--r--r-- 1 root wheel 12288 Sep 18 1994 lubBI18.pcf
-r--r--r-- 1 root wheel 12908 Sep 18 1994 lubBI19.pcf
-r--r--r-- 1 root wheel 15692 Sep 18 1994 lubBI24.pcf
-r--r--r-- 1 root wheel 9256 Sep 18 1994 lubI08.pcf
-r--r--r-- 1 root wheel 9896 Sep 18 1994 lubI10.pcf
-r--r--r-- 1 root wheel 10472 Sep 18 1994 lubI12.pcf
-r--r--r-- 1 root wheel 10952 Sep 18 1994 lubI14.pcf
-r--r--r-- 1 root wheel 12220 Sep 18 1994 lubI18.pcf
-r--r--r-- 1 root wheel 12764 Sep 18 1994 lubI19.pcf
-r--r--r-- 1 root wheel 15460 Sep 18 1994 lubI24.pcf
-r--r--r-- 1 root wheel 9232 Sep 18 1994 lubR08.pcf
-r--r--r-- 1 root wheel 9884 Sep 18 1994 lubR10.pcf
-r--r--r-- 1 root wheel 10396 Sep 18 1994 lubR12.pcf
-r--r--r-- 1 root wheel 10848 Sep 18 1994 lubR14.pcf
-r--r--r-- 1 root wheel 12172 Sep 18 1994 lubR18.pcf
-r--r--r-- 1 root wheel 12720 Sep 18 1994 lubR19.pcf
-r--r--r-- 1 root wheel 14604 Sep 18 1994 lubR24.pcf
-r--r--r-- 1 root wheel 9248 Sep 18 1994 lutBS08.pcf
-r--r--r-- 1 root wheel 16272 Sep 18 1994 lutBS10.pcf
-r--r--r-- 1 root wheel 17184 Sep 18 1994 lutBS12.pcf
-r--r--r-- 1 root wheel 18096 Sep 18 1994 lutBS14.pcf
-r--r--r-- 1 root wheel 19920 Sep 18 1994 lutBS18.pcf
-r--r--r-- 1 root wheel 12524 Sep 18 1994 lutBS19.pcf
-r--r--r-- 1 root wheel 13760 Sep 18 1994 lutBS24.pcf
-r--r--r-- 1 root wheel 9216 Sep 18 1994 lutRS08.pcf
-r--r--r-- 1 root wheel 16276 Sep 18 1994 lutRS10.pcf
-r--r--r-- 1 root wheel 17188 Sep 18 1994 lutRS12.pcf
-r--r--r-- 1 root wheel 18100 Sep 18 1994 lutRS14.pcf
-r--r--r-- 1 root wheel 19924 Sep 18 1994 lutRS18.pcf
-r--r--r-- 1 root wheel 12328 Sep 18 1994 lutRS19.pcf
-r--r--r-- 1 root wheel 13636 Sep 18 1994 lutRS24.pcf
-r--r--r-- 1 root wheel 9724 Sep 18 1994 ncenB08.pcf
-r--r--r-- 1 root wheel 10340 Sep 18 1994 ncenB10.pcf
-r--r--r-- 1 root wheel 10768 Sep 18 1994 ncenB12.pcf
-r--r--r-- 1 root wheel 11468 Sep 18 1994 ncenB14.pcf
-r--r--r-- 1 root wheel 11076 Sep 18 1994 ncenB18.pcf
-r--r--r-- 1 root wheel 14800 Sep 18 1994 ncenB24.pcf
-r--r--r-- 1 root wheel 9720 Sep 18 1994 ncenBI08.pcf
-r--r--r-- 1 root wheel 10308 Sep 18 1994 ncenBI10.pcf
-r--r--r-- 1 root wheel 10808 Sep 18 1994 ncenBI12.pcf
-r--r--r-- 1 root wheel 11468 Sep 18 1994 ncenBI14.pcf
-r--r--r-- 1 root wheel 11120 Sep 18 1994 ncenBI18.pcf
-r--r--r-- 1 root wheel 15032 Sep 18 1994 ncenBI24.pcf
-r--r--r-- 1 root wheel 9696 Sep 18 1994 ncenI08.pcf
-r--r--r-- 1 root wheel 8892 Sep 18 1994 ncenI10.pcf
-r--r--r-- 1 root wheel 10752 Sep 18 1994 ncenI12.pcf
-r--r--r-- 1 root wheel 11456 Sep 18 1994 ncenI14.pcf
-r--r--r-- 1 root wheel 10980 Sep 18 1994 ncenI18.pcf
-r--r--r-- 1 root wheel 13620 Sep 18 1994 ncenI24.pcf
-r--r--r-- 1 root wheel 9668 Sep 18 1994 ncenR08.pcf
-r--r--r-- 1 root wheel 8904 Sep 18 1994 ncenR10.pcf
-r--r--r-- 1 root wheel 10736 Sep 18 1994 ncenR12.pcf
-r--r--r-- 1 root wheel 11448 Sep 18 1994 ncenR14.pcf
-r--r--r-- 1 root wheel 10972 Sep 18 1994 ncenR18.pcf
-r--r--r-- 1 root wheel 14124 Sep 18 1994 ncenR24.pcf
-r--r--r-- 1 root wheel 8784 Sep 18 1994 symb08.pcf
-r--r--r-- 1 root wheel 9176 Sep 18 1994 symb10.pcf
-r--r--r-- 1 root wheel 9764 Sep 18 1994 symb12.pcf
-r--r--r-- 1 root wheel 10268 Sep 18 1994 symb14.pcf
-r--r--r-- 1 root wheel 11440 Sep 18 1994 symb18.pcf
-r--r--r-- 1 root wheel 13400 Sep 18 1994 symb24.pcf
-r--r--r-- 1 root wheel 14768 Sep 18 1994 tech14.pcf
-r--r--r-- 1 root wheel 14772 Sep 18 1994 techB14.pcf
-r--r--r-- 1 root wheel 15556 Sep 18 1994 term14.pcf
-r--r--r-- 1 root wheel 15556 Sep 18 1994 termB14.pcf
-r--r--r-- 1 root wheel 9504 Sep 18 1994 timB08.pcf
-r--r--r-- 1 root wheel 10088 Sep 18 1994 timB10.pcf
-r--r--r-- 1 root wheel 10728 Sep 18 1994 timB12.pcf
-r--r--r-- 1 root wheel 11200 Sep 18 1994 timB14.pcf
-r--r--r-- 1 root wheel 12416 Sep 18 1994 timB18.pcf
-r--r--r-- 1 root wheel 15336 Sep 18 1994 timB24.pcf
-r--r--r-- 1 root wheel 9524 Sep 18 1994 timBI08.pcf
-r--r--r-- 1 root wheel 10100 Sep 18 1994 timBI10.pcf
-r--r--r-- 1 root wheel 10696 Sep 18 1994 timBI12.pcf
-r--r--r-- 1 root wheel 9684 Sep 18 1994 timBI14.pcf
-r--r--r-- 1 root wheel 12320 Sep 18 1994 timBI18.pcf
-r--r--r-- 1 root wheel 15864 Sep 18 1994 timBI24.pcf
-r--r--r-- 1 root wheel 9432 Sep 18 1994 timI08.pcf
-r--r--r-- 1 root wheel 10032 Sep 18 1994 timI10.pcf
-r--r--r-- 1 root wheel 10668 Sep 18 1994 timI12.pcf
-r--r--r-- 1 root wheel 11184 Sep 18 1994 timI14.pcf
-r--r--r-- 1 root wheel 12204 Sep 18 1994 timI18.pcf
-r--r--r-- 1 root wheel 14848 Sep 18 1994 timI24.pcf
-r--r--r-- 1 root wheel 9424 Sep 18 1994 timR08.pcf
-r--r--r-- 1 root wheel 9992 Sep 18 1994 timR10.pcf
-r--r--r-- 1 root wheel 10652 Sep 18 1994 timR12.pcf
-r--r--r-- 1 root wheel 11172 Sep 18 1994 timR14.pcf
-r--r--r-- 1 root wheel 12288 Sep 18 1994 timR18.pcf
-r--r--r-- 1 root wheel 14616 Sep 18 1994 timR24.pcf
-r--r--r-- 1 root wheel 17040 Nov 9 1995 user11x19.pcf
-r--r--r-- 1 root wheel 18824 Nov 9 1995 user12x23.pcf
-r--r--r-- 1 root wheel 20160 Nov 9 1995 user14x26.pcf
/usr/hpx/usr/lib/X11/fonts/PEX:
total 56
-r--r--r-- 1 root wheel 13616 Sep 18 1994 Roman.phont
-r--r--r-- 1 root wheel 13616 Sep 18 1994 Roman_M.phont
/usr/hpx/usr/lib/X11/fonts/Speedo:
total 1060
-r--r--r-- 1 root wheel 73994 Sep 18 1994 font0419.spd
-r--r--r-- 1 root wheel 73570 Sep 18 1994 font0582.spd
-r--r--r-- 1 root wheel 74266 Sep 18 1994 font0583.spd
-r--r--r-- 1 root wheel 73686 Sep 18 1994 font0611.spd
-r--r--r-- 1 root wheel 59472 Sep 18 1994 font0648.spd
-r--r--r-- 1 root wheel 61214 Sep 18 1994 font0649.spd
-r--r--r-- 1 root wheel 59460 Sep 18 1994 font0709.spd
-r--r--r-- 1 root wheel 61065 Sep 18 1994 font0710.spd
-r--r--r-- 1 root wheel 562 Sep 18 1994 fonts.dir
-r--r--r-- 1 root wheel 562 Sep 18 1994 fonts.scale
/usr/hpx/usr/lib/X11/fonts/misc:
total 9036
-r--r--r-- 1 root wheel 16596 Sep 18 1994 10x20.pcf
-r--r--r-- 1 root wheel 17784 Sep 18 1994 12x24.pcf
-r--r--r-- 1 root wheel 14184 Sep 18 1994 12x24rk.pcf
-r--r--r-- 1 root wheel 9332 Sep 18 1994 5x7.pcf
-r--r--r-- 1 root wheel 6456 Sep 18 1994 5x8.pcf
-r--r--r-- 1 root wheel 6992 Sep 18 1994 6x10.pcf
-r--r--r-- 1 root wheel 7468 Sep 18 1994 6x12.pcf
-r--r--r-- 1 root wheel 13472 Sep 18 1994 6x13.pcf
-r--r--r-- 1 root wheel 13108 Sep 18 1994 6x13B.pcf
-r--r--r-- 1 root wheel 7012 Sep 18 1994 6x9.pcf
-r--r--r-- 1 root wheel 13096 Sep 18 1994 7x13.pcf
-r--r--r-- 1 root wheel 13132 Sep 18 1994 7x13B.pcf
-r--r--r-- 1 root wheel 12988 Sep 18 1994 7x14.pcf
-r--r--r-- 1 root wheel 12984 Sep 18 1994 7x14B.pcf
-r--r--r-- 1 root wheel 11068 Sep 18 1994 7x14rk.pcf
-r--r--r-- 1 root wheel 13088 Sep 18 1994 8x13.pcf
-r--r--r-- 1 root wheel 13084 Sep 18 1994 8x13B.pcf
-r--r--r-- 1 root wheel 14248 Sep 18 1994 8x16.pcf
-r--r--r-- 1 root wheel 12364 Sep 18 1994 8x16rk.pcf
-r--r--r-- 1 root wheel 14372 Sep 18 1994 9x15.pcf
-r--r--r-- 1 root wheel 14340 Sep 18 1994 9x15B.pcf
-r--r--r-- 1 root wheel 6988 May 30 1996 clB6x10.pcf
-r--r--r-- 1 root wheel 7500 May 30 1996 clB6x12.pcf
-r--r--r-- 1 root wheel 6988 May 30 1996 clB8x10.pcf
-r--r--r-- 1 root wheel 7500 May 30 1996 clB8x12.pcf
-r--r--r-- 1 root wheel 7756 May 30 1996 clB8x13.pcf
-r--r--r-- 1 root wheel 8012 May 30 1996 clB8x14.pcf
-r--r--r-- 1 root wheel 8524 May 30 1996 clB8x16.pcf
-r--r--r-- 1 root wheel 6476 May 30 1996 clB8x8.pcf
-r--r--r-- 1 root wheel 8268 May 30 1996 clB9x15.pcf
-r--r--r-- 1 root wheel 7492 Sep 18 1994 clI6x12.pcf
-r--r--r-- 1 root wheel 6468 Sep 18 1994 clI8x8.pcf
-r--r--r-- 1 root wheel 5956 Sep 18 1994 clR4x6.pcf
-r--r--r-- 1 root wheel 6980 Sep 18 1994 clR5x10.pcf
-r--r--r-- 1 root wheel 5956 Sep 18 1994 clR5x6.pcf
-r--r--r-- 1 root wheel 6468 Sep 18 1994 clR5x8.pcf
-r--r--r-- 1 root wheel 6980 Sep 18 1994 clR6x10.pcf
-r--r--r-- 1 root wheel 7492 Sep 18 1994 clR6x12.pcf
-r--r--r-- 1 root wheel 7748 Sep 18 1994 clR6x13.pcf
-r--r--r-- 1 root wheel 5956 Sep 18 1994 clR6x6.pcf
-r--r--r-- 1 root wheel 6468 Sep 18 1994 clR6x8.pcf
-r--r--r-- 1 root wheel 6980 Sep 18 1994 clR7x10.pcf
-r--r--r-- 1 root wheel 7492 Sep 18 1994 clR7x12.pcf
-r--r--r-- 1 root wheel 8004 Sep 18 1994 clR7x14.pcf
-r--r--r-- 1 root wheel 6468 Sep 18 1994 clR7x8.pcf
-r--r--r-- 1 root wheel 6980 Sep 18 1994 clR8x10.pcf
-r--r--r-- 1 root wheel 7492 Sep 18 1994 clR8x12.pcf
-r--r--r-- 1 root wheel 7748 Sep 18 1994 clR8x13.pcf
-r--r--r-- 1 root wheel 8004 Sep 18 1994 clR8x14.pcf
-r--r--r-- 1 root wheel 8516 Sep 18 1994 clR8x16.pcf
-r--r--r-- 1 root wheel 6468 Sep 18 1994 clR8x8.pcf
-r--r--r-- 1 root wheel 8260 Sep 18 1994 clR9x15.pcf
-r--r--r-- 1 root wheel 9836 Sep 18 1994 cursor.pcf
-r--r--r-- 1 root wheel 4832 Sep 18 1994 deccurs.pcf
-r--r--r-- 1 root wheel 1844 Sep 18 1994 decsess.pcf
-r--r--r-- 1 root wheel 6471 Mar 25 18:55 fonts.alias
-r--r--r-- 1 root wheel 5115 Mar 25 18:32 fonts.dir
-r--r--r-- 1 root wheel 511940 Sep 18 1994 hanglg16.pcf
-r--r--r-- 1 root wheel 511940 Sep 18 1994 hanglm16.pcf
-r--r--r-- 1 root wheel 1038276 Sep 18 1994 hanglm24.pcf
-r--r--r-- 1 root wheel 11572 Sep 18 1994 heb6x13.pcf
-r--r--r-- 1 root wheel 10100 Sep 18 1994 heb8x13.pcf
-r--r--r-- 1 root wheel 18644 May 17 1996 hp8.10x20.pcf
-r--r--r-- 1 root wheel 18644 May 17 1996 hp8.10x20b.pcf
-r--r--r-- 1 root wheel 16084 May 17 1996 hp8.12x15.pcf
-r--r--r-- 1 root wheel 15060 May 17 1996 hp8.6x13.pcf
-r--r--r-- 1 root wheel 15060 May 17 1996 hp8.6x13b.pcf
-r--r--r-- 1 root wheel 11032 May 17 1996 hp8.6x8.pcf
-r--r--r-- 1 root wheel 12500 May 17 1996 hp8.6x8b.pcf
-r--r--r-- 1 root wheel 5404 May 17 1996 hp8.7x10.pcf
-r--r--r-- 1 root wheel 16596 May 17 1996 hp8.8x16.pcf
-r--r--r-- 1 root wheel 16596 May 17 1996 hp8.8x16b.pcf
-r--r--r-- 1 root wheel 6556 May 17 1996 hp8.8x16i.pcf
-r--r--r-- 1 root wheel 422536 Sep 18 1994 jiskan16.pcf
-r--r--r-- 1 root wheel 862664 Sep 18 1994 jiskan24.pcf
-r--r--r-- 1 root wheel 395024 Sep 18 1994 k14.pcf
-r--r--r-- 1 root wheel 8272 Sep 18 1994 nil2.pcf
-r--r--r-- 1 root wheel 2520 Sep 18 1994 olcursor.pcf
-r--r--r-- 1 root wheel 16000 Sep 18 1994 olgl10.pcf
-r--r--r-- 1 root wheel 17104 Sep 18 1994 olgl12.pcf
-r--r--r-- 1 root wheel 20100 Sep 18 1994 olgl14.pcf
-r--r--r-- 1 root wheel 24336 Sep 18 1994 olgl19.pcf
/usr/hpx/usr/lib/X11R5:
total 1876
-r-xr-xr-x 1 bin bin 551641 Nov 30 1994 libX11.sl
-r-xr-xr-x 1 bin bin 36716 Nov 30 1994 libXext.sl
-r-xr-xr-x 1 bin bin 55071 Sep 20 1992 libXhp11.sl
-r-xr-xr-x 1 bin bin 294036 Nov 30 1994 libXt.sl
/usr/hpx/usr/spool:
total 2
drwxrwxrwx 3 root wheel 512 Aug 21 22:18 sockets
/usr/hpx/usr/spool/sockets:
total 2
drwxrwxrwx 2 root wheel 512 Aug 21 22:18 X11
/usr/hpx/usr/spool/sockets/X11:
**************