Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-12-2003 09:44 PM
08-12-2003 09:44 PM
Printer
My question is what's the page 1?
If scheduler was stoped, what happend the currently printing jobs? the jobs would cancel or pending after scheduler start?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-12-2003 10:02 PM
08-12-2003 10:02 PM
Re: Printer
Standard setup is to restart the prints from beginning.
For network printers somewhere you may find parameters like EOJ ( end of job ) or something like this. Changing these parameters
can change the behaviour of your printer restarting jobs stopped by a stopped spool.
Rgds
Alexander M. Ermes
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-13-2003 03:23 AM
08-13-2003 03:23 AM
Re: Printer
message is something like :-
__________
Adding a printer requires the print spooler to be temporarily stopped, but there is a request that is currently either being printed on a local printer or being sent to a remote printer.
Stopping the spooler will cause the request to be reprinted or resent once the spooler is restarted.
__________
Therefore any lp jobs in the spooler that have not been released to the printer/print server would be reprinted or resent in their entirity (first page to last page). No jobs would be cancelled !
If you do not want to see this message and want to close the scheduler to do the work you could always issues the commands from the command line (ie lpshut, lpsched).
Keith
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-13-2003 04:15 AM
08-13-2003 04:15 AM
Re: Printer
You need to disable yoour printers before adding one.
Then jobs can be put in the queue but will not print and when the currently printing jobs have stopped you can add the printer.
After the sam enable again.Printing starts again.
Easy way
#!/bin/ksh
#
#Printer parameter
#
# parameter is enable disable accept or reject to do all printers
#
option=$1
xx=`lpstat -p|grep printer|cut -f2 -d" "`
for printer in $xx
do
case $option in
accept) accept $printer ;;
reject) reject $printer ;;
enable) enable $printer ;;
disable) disable $printer ;;
*)echo invalid parameter ;;
esac
done
Steve Steel
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-13-2003 04:29 AM
08-13-2003 04:29 AM
Re: Printer
Maybe you might want to consider altering some of the parameters such as Job Recovery and/or TEOJ (True End Of Job). I can't access any system to verify if I have the right parameters.
Imagine a large print job starting from page 1 again.
Tim.