Path: utzoo!attcan!uunet!cs.utexas.edu!uwm.edu!bionet!agate!darkstar!ucscb.UCSC.EDU!tachyon From: tachyon@ucscb.UCSC.EDU (Tane' Tachyon) Newsgroups: comp.unix.xenix Subject: Re: Altos 2086 Questions Keywords: Altos Message-ID: <5346@darkstar.ucsc.edu> Date: 22 Jul 90 11:56:57 GMT References: <6774@ozdaltx.UUCP> Sender: usenet@darkstar.ucsc.edu Organization: Tachyon Labs Lines: 25 In article <6774@ozdaltx.UUCP> rcj@ozdaltx.UUCP ( Dallas) writes: >I am currently doing some work on an Altos 2086 Xenix box and have >a few questions regarding it. > > [some questions deleted] > > 4) Last question (I promise!!): Is there a program available to > download soft fonts to HP Laserjets via Xenix? You're probably looking for some kind of font-manager program, but just in case it would be useful to you, here's a script I made to download a font, give it an ID number and make it permanent. echo "\033*c999D\c" > /dev/lp0 # tells LaserJet to use ID 999 for the font cp anyfont.hpf /dev/lp0 # copies font to printer echo "\033*c999d5F\c" > /dev/lp0 # makes font "permanent" Obviously you would use a different port if your printer wasn't hooked up to lp0. Hmm, actually, this was for an SCO XENIX system --probably your Altos system has different device names for the parallel and serial ports.