JavaScript is required to for searching.
Skip Navigation Links
Exit Print View
System Administration Guide: Printing     Oracle Solaris 11 Express 11/10
search filter icon
search icon

Document Information

Preface

1.  Introduction to Printing in the Oracle Solaris Operating System

2.  Planning for Printing (Tasks)

3.  Setting Up and Administering Printers by Using CUPS (Tasks)

4.  Setting Up and Administering Printers by Using Print Manager for LP (Tasks)

5.  Setting Up and Administering Printers by Using Oracle Solaris Print Manager (Tasks)

6.  Setting Up Printers by Using LP Print Commands (Tasks)

Setting Up Printers by Using LP Print Commands (Task Map)

Setting Up Directly Attached Printers by Using LP Print Commands

Specifying a PPD File When Setting Up a Printer

How to Add a New Directly Attached Printer by Using LP Print Commands

How to Add a Print Queue With localhost Specified as the Host Name (LP Print Commands)

Setting Up Network-Attached Printers by Using LP Print Commands

Oracle Support for Network Printers

Invoking Network Printer Support

Selecting the Printer Node Name

Selecting the Destination Name (Also Called the Network Printer Access Name)

Selecting the Network Printing Protocol

Setting the Timeout Value

Managing Network-Attached Printer Access

How to Add a New Network-Attached Printer by Using LP Print Commands

How to Set Up a Remote Printer That is Connected to a Print Server by Using IPP

Adding a New Network-Attached Printer by Using Printer Vendor-Supplied Software

How to Add a Attached Network Printer by Using Printer Vendor-Supplied Tools

Setting Up and Administering Printers on a Print Client (Task Map)

Adding Printer Access by Using LP Print Commands

How to Add Printer Access by Using LP Print Commands

Setting Up a .printers File

How to Set Up a .printers File

How to Delete a Printer and Remove Printer Access by Using LP Print Commands

7.  Administering Printers by Using LP Print Commands (Tasks)

8.  Customizing LP Printing Services and Printers (Tasks)

9.  Administering the LP Print Scheduler and Managing Print Requests (Tasks)

10.  Administering Printers on a Network (Tasks)

11.  Administering Character Sets, Filters, Forms, and Fonts (Tasks)

12.  Administering Printers by Using the PPD File Management Utility (Tasks)

13.  Printing in the Oracle Solaris Operating System (Reference)

14.  Troubleshooting Printing Problems in the Oracle Solaris OS (Tasks)

Glossary

Index

Setting Up Directly Attached Printers by Using LP Print Commands

The following table describes each of the printer definitions that you can define when setting up a new printer or modifying an existing printer by using the lpadmin command.

Printer Definition
Print Command Option
Description
Example
Default Setting
Required/Optional?
Printer Name
-p
Name of printer
laser1
N/A
Required to install an attached or network-attached printer
Print server
Name of print server
venus
Use localhost for Printer Server
Required to install an attached or network-attached printer
Description
-d
User defined string
laser printer near breakroom
N/A
Optional
Printer Port
-v
Device that the printer is attached to
/dev/term/a
/dev/term/a
Required to install an attached printer
Printer Type
-T
Type of printer
unknown
PostScript
Required to install an attached printer or a network-attached printer without PPD files
File Content Type
-I
Content to be printed
any
PostScript
Required to install an attached printer or a network-printer printer without PPD files
PPD file name
-n
Full path to the PPD file and file name with .ppd extension.
path/necprinter.ppd
N/A
Optional
Fault Notification
-A
Specifies how to notify user of errors
-A mail
Write to superuser
Optional
Default Printer
-d
Identifies the default printer
N/A
N/A
Optional
Banner Page control Menu:
-o
Select whether to print banner page
-o banner=never
-o banner=optional
Optional

Specifying a PPD File When Setting Up a Printer

To specify a PPD file when adding or modifying a printer by using LP print commands, use the lpadmin command with the -n option. For example, to add a print queue named foobar for a Lexmark printer, you would type the following command:

# lpadmin -p foobar -v device -I postscript -m standard_foomatic \ -n /path/Lexmark-Optra_E312-Postscript.ppd.gz

When using the lpadmin -n command to specify a PPD file, you must provide the full path to the PPD file.

If you use the lpadmin -n command to add a PPD file, and the repository that you specify in the PPD file path does not exist on the system, a copy of the PPD file is stored in the user label directory, within the user repository. This directory is located at /var/lp/ppd/user/manufacturer/ppd-file. The Oracle Solaris Print Manager cache is then updated to reflect the printer information from the recently added PPD file. For more information, see the ppdmgr(1M) man page.

How to Add a New Directly Attached Printer by Using LP Print Commands

This procedure describes how to add a new attached printer specifying a PPD file by using the lpadmin command with the -n option. Two examples follow this procedure. The first example illustrates how to add a new attached printer that is associated with a PPD file. The second example shows how to add a new attached printer that is not associated with a PPD file.

  1. Connect the printer to the system, then turn on the power to the printer.

    Consult the printer vendor's installation documentation for information about the hardware switches and cabling requirements.

  2. Log in to the print server and become superuser.
  3. Collect the information that is required to configure an attached printer with PPD files.
    • Printer name and port device

    • File content type

    • PPD file

    To determine the PPD file that the printer will use, first define the printer make, model, and driver.

    For overview information about using PPD files when adding a new printer or modifying an existing printer by using LP print commands, see What's New in Printing?.

  4. Define the printer name, port device, file content type, and PPD file that the printer will use.

    When using PPD files, the file content type is typically PostScript.

    1. Specify the printer name and the port device that the printer will use.
      # lpadmin -p printer-name -v /dev/printers/0

      The device to use is /dev/printers/0.

      You can now use the -s option with the lpadmin command to specify the print service host name as localhost. For more information, see How to Add a Print Queue With localhost Specified as the Host Name (LP Print Commands).

    2. Specify the interface script that the printer will use.
      # lpadmin -p printer-name -m standard_foomatic
    3. Specify the file content type and the PPD file that the printer will use.
      # lpadmin -p printer-name -I content-type -n /path/ppdfile

      The PPD file that you supply is located in the /path directory.

    4. Specify the printer description.
      # lpadmin -p printer-name -D "printer-description"

    For more information, see the lpadmin(1M) man page.

  5. (Optional) Add filters to the print server.
    # cd /etc/lp/fd
    # for filter in *.fd;do
        > name=`basename $filter .fd`
        > lpfilter -f $ name-F $ filter
        > done
  6. Enable the printer to accept print requests and to print those requests.
    # accept printer-name
    # enable printer-name
  7. Verify that the printer is correctly configured.
    # lpstat -p printer-name -l

    The output of the lpstat command will list the PPD file that you used.

Example 6-1 Adding a New Directly Attached Printer by Specifying a PPD File

This example shows how to add a new attached printer with PPD files. Using the -n option with the lpadmin command enables you to add a new print queue by specifying PPD files. The following information is used as an example only.

# lpadmin -p paper -v /dev/printers/0 (1)
# lpadmin -p paper -I postscript (2)
# lpadmin -p paper -m standard_footmatic (3)
# lpadmin -p paper -n /path/Lexmark-Optra_E312-Postscript.ppd.gz(4)
# lpadmin -p paper -D "Color printer on third floor, rm 3003" (5)
# cd /etc/lp/fd

# accept paper
    destination “paper” now accepting requests 
# enable paper    (6) 
printer “paper” now enabled 
# lpstat -p paper (7)
printer paper is idle. enabled since Feb 28 11:21 2004...
  1. Defines the printer name and the port device that the printer will use

  2. Sets the file content types to which the printer can print to directly

  3. Specifies the interface script for utilizing PPD files


    Note - This command also copies the PPD file to the user label in the user PPD file repository, if /path is not in an existing PPD file repository on the system.


  4. Specifies the path to the PPD file and the PPD file name

  5. Adds a description for the printer

  6. Accepts print requests for the printer and enables the printer

  7. Verifies that the printer is ready for printing

Example 6-2 Adding a New Directly Attached Printer Without Specifying a PPD File

This example shows how to add a new attached printer without associating it with a PPD file. The commands in this example must be executed on the print server where the printer is connected. The following information is used as an example only.

  1. Gives lp ownership and sole access to a port device

  2. Defines the printer name and the port device that the printer will use

  3. Sets the printer type of the printer

  4. Specifies the file content types to which the printer can print directly

  5. Adds a description for the printer

  6. Accepts print requests for the printer and enables the printer

  7. Verifies that the printer is ready for printing

See Also

How to Add a Print Queue With localhost Specified as the Host Name (LP Print Commands)

This procedure shows how to use LP print commands to add a local print queue with the localhost option specified as the host name in the print system databases. Note that you can also modify a configured print queue to use localhost as the host name.

  1. Become superuser.
  2. Set the print host name to localhost.
    # lpadmin -p new-print-queue -s localhost -v device
  3. Check the entry in the /etc/printers.conf file.
    # lpget new-print-queue
    new-print-queue:
            bsdaddr=abc,new-print-queue,Solaris

    If the print queue was created or modified successfully, the output of the lpget command returns the name of the new or modified print queue.

Example 6-3 Adding a Print Queue With localhost Specified as the Host Name

This example shows how to add a new print queue, paper, by using the lpadmin command with the -s option to specify localhost as the host name.

$ su - root
# lpadmin -p paper -s localhost -v /dev/ecpp0

# lpget paper
paper:
        bsdaddr=localhost,paper,Solaris

Example 6-4 Adding a Print Queue by Using the Default Behavior of lpadmin to Specify the Host Name

This example shows the default behavior of the lpadmin command for using system host name, abc, when adding a new print queue.

$ su - root
# lpadmin -p newspaper -v /dev/printers/0

# lpget newspaper
fargo:
        bsdaddr=abc,newspaper,Solaris

Example 6-5 Modifying a Print Queue to Use localhost as the Host Name

This example shows how to modify an existing print queue, newspaper, and specify localhost as the new print server name.

$ su - root
# lpadmin -p newspaper -s localhost

# lpget newspaper
newspaper:
        bsdaddr=localhost,newspaper,Solaris
See Also

For information about specifying localhost as the print server's host name when adding or modifying a print queue with Oracle Solaris Print Manager, see How to Add a Print Queue With localhost Specified as the Host Name (Oracle Solaris Print Manager).