Originally posted by: SystemAdmin
No, it will not be a different courier font on AIX, because unlike windows, AIX does not format the file with the font included, except when you use something like enscript to create postscript files.
In your case, obviously the two print queues are not identical even though you think they are. The difference is likely in the 'virtual printer'. This is the code that sends printer setup commands to the printer.
$ lpstat
Queue Dev Status Job Files User PP % Blks Cp Rnk
-----
---
hp4050 lpx READY
This shows that my queue is named hp4050 with a queue device of lpx.
I can see what type of printer definition this was based on with:
$ lsvirprt -q hp4050 -d lpx -a mN
Name Description Value
mN Printer model number hplj-4000
So I know that this was based on a virtual printer defined by a file
/usr/lib/lpd/pio/predev/hplj-4000.pcl (assuming it was a PCL printer) or .ps
if it is a PostScript printer.
I assume this is text because in PostScript all the characters are
formatted by the application and not by AIX.
Make sure that both queues are the same.
You could use this command to compare the two queues:
lsvirprt -q queue1 -d qdev > /tmp/queue1.attr
lsvirprt -q queue2 -d qdev > /tmp/queue2.attr
diff /tmp/queue2.attr /tmp/queue1.attr
These should not vary much except for queue name and device name. If they do, then you have not created the same queue.
There is a way to actually create a predef from the current virtual printer
and use that to build the new one if that is the way you want to go.