包含在查找更多文档专项支持资源 | 以 PDF 格式下载本书 (1611 KB)
Chapter 8 LP Print Service Reference InformationThis chapter provides background information on the LP print service.
For step-by-step instructions on print management tasks, see: The LP Print ServiceThe LP print service is a set of software utilities that allows users to print files while they continue to work. Originally, the print service was called the LP spooler. (LP stood for line printer, but its meaning now includes many other types of printers, such as laser printers. Spool is an acronym for system peripheral operation off-line.) The print service consists of the LP print service software, any print filters you might provide, and the hardware (the printer, system, and network connections). The Structure of the LP Print ServiceThis section describes the directory structure, files, logs, and commands of the LP print service. LP Print Service DirectoriesThe files of the LP print service are distributed among seven directories, as shown in the table below. Table 8-1 Directories for the LP Print Service
LP Print Service Configuration FilesThe scheduler stores configuration information in LP configuration files located in the /etc/lp directory, as described in the table below. The configuration files listed in the table below are private interfaces, and are subject to change in future releases. You should not build software that relies on these files being in their current locations or that relies on the data being in the format currently used. Table 8-2 Contents of the /etc/lp Directory
These configuration files serve a similar function to the /etc/printcap file in the SunOS 4.1 release. Note - You can check the contents of the configuration files, but you should not edit them directly. Instead, use the lpadmin(1M) command to make configuration changes. Your changes will be written to the configuration files in the /etc/lp directory. The lpsched daemon administers and updates the configuration files. The /etc/lp/printers directory has a subdirectory for each local printer known to the system. The following example shows the /etc/lp/printers subdirectories of printers sparc1 and luna.
The following table describes the files within each of the printer-specific directories.
The configuration file for the printer luna, /etc/lp/printers/luna/configuration, would typically appear as follows:
The terminfo DatabaseThe /usr/share/lib directory contains the terminfo database directory, which contains definitions for many types of terminals and printers. The LP print service uses information in the terminfo database to initialize a printer, to establish a selected page size, character pitch, line pitch, and character set, as well as to communicate the sequence of codes to a printer. Each printer is identified in the terminfo database with a short name. See "Printer Type" for a description of the structure of the terminfo database. If necessary, you can add entries to the terminfo database, but it is a tedious and time-consuming process. See "Adding a terminfo Entry for an Unsupported Printer". Daemons and LP Internal FilesThe /usr/lib/lp directory contains daemons and files used by the LP print service, as described in the table below. Table 8-3 Contents of the /usr/lib/lp Directory
LP Print Service Log FilesThe LP print service maintains two sets of log files described in the following table.
Print Queue LogsThe scheduler for each system keeps a log of print requests in the directories /var/spool/lp/tmp/system and /var/spool/lp/requests/system. Each print request has two files (one in each directory) that contain information about the request. The information in the /var/spool/lp/requests/system directory can be accessed only by root or lp. The information in the /var/spool/lp/tmp/system can be accessed only by the user who submitted the request, root, or lp. The following example shows the contents of the /var/spool/lp/tmp/terra directory:
These files remain in their directories only as long as the print request is in the queue. Once the request is finished, the information in the files is combined and appended to the file /var/lp/logs/requests, which is described in the next section. Use the information in the /var/spool/lp logs if you need to track the status of a print request that is currently in the queue. History LogsThe LP print service records a history of printing services in two log files: lpsched and requests. These log files are located in the /var/lp/logs directory. You can use the information in these logs to diagnose and troubleshoot printing problems. This is an example of the contents of the /var/lp/logs directory:
The files with the .1 and .2 suffixes are copies of the previous day's logs. Each day, the lp cron job cleans out the lpsched and requests log files and keeps copies for two days. See "Creating and Editing crontab Files" for suggestions on modifying the cron job for cleaning out the requests log. The two most important log files for troubleshooting is the lpsched log, which contains information about local printing requests The requests log contains information about print requests that are completed and no longer in the print queue. Once a request is finished printing, the information in the /var/spool/lp log files is combined and appended to the /var/lp/logs/requests log. The requests log has a simple structure, so that you can extract data using common UNIX shell commands. Requests are listed in the order they are printed, and are separated by lines showing their request IDs. Each line below the separator line is marked with a single letter that identifies the kind of information contained in that line. Each letter is separated from the data by a single space. The following example shows the contents of a requests log:
The table below shows the letter codes and the content of their corresponding lines in the LP requests log. Table 8-4 Letter Codes in the LP requests Log
The table below shows the outcome codes in the LP requests log and their descriptions. Table 8-5 Outcome Codes in the LP requests Log
Spooling DirectoriesFiles queued for printing are stored in the /var/spool/lp directory until they are printed, which might be only seconds. The table below shows the contents of the /var/spool/lp directory. Table 8-6 Contents of the /var/spool/lp Directory
LP Print Service CommandsThe table below lists frequently used LP print service commands. You must be root or lp to use the 1M commands. Table 8-7 Quick Reference to LP Print Service Commands
Functions of the LP Print ServiceThe LP print service performs the following functions:
The table below describes the directory structure and commands. How LP Administers Files and Schedules Local Print RequestsThe LP print service has a scheduler daemon called lpsched. The scheduler daemon updates the LP system files with information about printer setup and configuration. The lpsched daemon schedules all local print requests on a print server, as shown in the figure below, whether users issue the requests from an application or from the command line. Also, the scheduler tracks the status of printers and filters on the print server. When a printer finishes a request, the scheduler schedules the next request, if there is one, in the queue on the print server. Figure 8-1 The lpsched Daemon Schedules Local Print Requests
Each print server must have only one LP scheduler running. The scheduler is started when a system is booted (or enters run level 2) by the control script /etc/rc2.d/S80lp. Without rebooting the systems, you can stop the scheduler with the /usr/lib/lp/lpshut command and restart the scheduler with the lpsched command. The scheduler for each system manages requests issued to the system by the lp commands. Scheduling Network Print RequestsEach print client communicates directly with a print sever over the network. The communication is done between the requesting command (lp, lpstat, cancel, lpr, lpq, or lprm) and the print service on the print server. Doing so, reduces the print system overhead on client only systems, improving scalability, performance and accuracy of data. Print servers now listen for print request with the Internet services daemon (inetd). Upon hearing a request for print service from the network, inetd starts a program called the "protocol adaptor" (in.lpd). The protocol adaptor translates the print request and communicates it to the print spooler, returning the results to the requester. It starts on demand and exits when it has serviced the network request. This eliminates idle system overhead for printing. It also eliminates any additional system configuration for networked printing support as was the case in previous versions of Solaris printing. Filtering Print FilesPrint filters are programs on the print server that convert the content of a queued file from one format to another. A print filter can be as simple or as complex as needed. The SunOS release provides print filters in the /usr/lib/lp/postscript directory that cover most situations where the destination printer requires the data to be in PostScript format. If you need filters for non-PostScript printers, you have to create the filters and add them to the systems that need them. A set of print filter descriptor files are provided in the /etc/lp/fd directory. These descriptor files describe the characteristics of the filter (for example, fast or slow filter), and point to the filter program (for example, /usr/lib/lp/postscript/postdaisy). What the Printer Interface Program DoesThe LP print service interacts with other parts of the operating system. It uses a standard printer interface program to:
The LP print service uses the standard interface program (found in the /usr/lib/lp/model directory) unless you specify a different one. You can create custom interface programs, but you must make sure that the custom program does not terminate the connection to the printer or interfere with proper printer initialization. How the lpsched Daemon Tracks the Status of Print RequestsThe lpsched daemon on both the print server and print client keeps a log of each print request that it processes and notes any errors that occur during the printing process. This log is kept in the /var/lp/logs/lpsched file. Every night, the lp cron job renames /var/lp/logs/lpsched to a new lpsched.n file and starts a new log file. If errors occur or jobs disappear from the print queue, you can use the log files to determine what lpsched has done with a printing job. Cleaning Out Log FilesThe lpsched and requests log files in the /var/lp/logs directory grow as information is appended. The LP print service uses a default cron job to clean out the log files. The lp cron job is located in the /var/spool/cron/crontabs/lp file. It periodically moves the contents of the log files. The contents of log are moved to log.1, and the contents of log.1 are moved to log.2. The contents of log.2 are lost (that is, replaced by the former contents of log.1) when log.2 gets overwritten.
How to Change Frequency of Printer Request Log RotationStarting with the Solaris 2.6 release, the requests log file on the printer server is rotated weekly rather than daily. You can change the rotation interval back to daily if the printer server is busy.
How Local Printing WorksThe figure below shows what happens when a user submits a request to print a PostScript file on a local printer, which is a printer connected to the user's system. The local system does all processing; however, the print request follows the same path it would if the client and server were separate systems. Requests always flow from client to server following the same path. Figure 8-2 The Local Printing Process
How Remote Printing WorksThe figure below shows what happens when a user on a SunOS 5.8 print client submits a print request to a SunOS 4.1 print server. The command opens a connection and handles it's own communications with the print server directly. Figure 8-3 Network Printing Between a SunOS 5.8 Print Client and a SunOS 4.1 Print Server
The figure below shows a SunOS 4.1 print client submitting a print request to a SunOS 5.8 print server. The lpd daemon handles the local part of the print request and the connection to the print server. On the print server, the network listen process, inetd, waits for network printing requests and starts a protocol adaptor to service the request. The protocol adaptor communicates with the lpsched daemon, which processes the request on the print server. Figure 8-4 Network Printing Between a SunOS 4.1 Print Client and a SunOS 5.8 Print Server
The figure below shows what happens when a user on a SunOS 5.8 print client submits a print request to a SunOS 5.8 print server. The print command on the print client handles the local part of each print request by communicating directly with the print server. The inetd process on the print server monitors network printing requests and starts a protocol adaptor to communicate with the lpsched daemon on the print server, which processes the print request. Figure 8-5 Network Printing Between a SunOS 5.8 Print Client and a SunOS 5.8 Print Server
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||