You are here: 
text zoom : S | M | L
Printer Friendly Version
Further Enquiries:

 

Reporting Faults: 
Ingkarni Wardi 
Level 2 - CATS IT Student Support front desk 
or email cats@adelaide.edu.au

Lab phones dialing options :
**1  Technology Service Desk 
  > Opt 1 : IT Helpdesk
  > Opt 2 : Telecom
  > Opt 3 : MyUni
  > Opt 4 : Audio Visuals
**4  Security

Location of CAT Suites:

Ingkarni Wardli (Previously known as Innova21)
Basement/Ground/Level 2

Engineering Maths
Level 1

 

Follow us on cats facebook badge

Printing in Unix

UNIX Print Queues

The black and white laser printer queue is called laser. The colour printer queue is called plot.

Text Files

At the command prompt type print followed by a space and then the file name, for example:

print myfile.txt

The print command is an alias which converts the text file to postscript (which prints better than straight text) and then sends it to the printer. This alias uses a program called a2ps. If you wish to use other settings read the manual page for this program. You can view aliased commands by typing alias at the command prompt.

Postscript Files

Files that are already in postscript format, such as figures generated by Matlab, should be printed using the lpr command. Typically these files have a .ps extension.

At the command prompt type:

  • for the black and white printer: lpr -Plaser myfile.ps
  • for the colour printer: lpr -Pcolour myfile.ps