- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Moving spooled job to another printer
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
11-04-2002 04:50 AM
11-04-2002 04:50 AM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-04-2002 04:52 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-04-2002 04:53 AM
11-04-2002 04:53 AM
Re: Moving spooled job to another printer
Anybody with recent experience of lpmove that could shed anymore light on the subject is welcome to respond.
Thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-04-2002 04:56 AM
11-04-2002 04:56 AM
Re: Moving spooled job to another printer
Here are a couple of recent threads on altering print jobs that may help:
http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x9056b10230dcd61190050090279cd0f9,00.html
http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x32cfa848deccd61190050090279cd0f9,00.html
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-04-2002 05:01 AM
11-04-2002 05:01 AM
Re: Moving spooled job to another printer
Stuart
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-04-2002 05:04 AM
11-04-2002 05:04 AM
Re: Moving spooled job to another printer
try this,
jr0001:{root}# lpstat pt0060
pt0060-10 root 3896 Nov 04 14:00
jr0001:{root}# lpmove pt0060-10 nt13:pt0060
total of 1 requests moved to pt0060
where nt13 is a name of another printserver.
Regards,
Robert-Jan.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-05-2002 11:57 AM
11-05-2002 11:57 AM
Re: Moving spooled job to another printer
!/bin/sh
#
# LPMOVE6.SH Shell script to use the lpalt command to move a group
# of files from one print que to another.
#
# Arguements Two(2) are required, you need the original printer
# and the new destination printer name.
#
#
# lpmove6.sh , 1.2
# 09/14/00 , 16:25:27
#
# 08/22/00 JAM Sr
#============================================================================
ORG_PRTR=6
NEW_PRTR=va22_hp21
# create the file of print outputs
while [ 0 ]
do
echo `date` Checking the $ORG_PRTR queue for print request
HR=`date +%H`
if [ $HR -gt 17 ]; then
exit
else
lpstat -o${ORG_PRTR} |grep ^${ORG_PRTR} |awk '{print $1}' > /tmp/prt.log
if [ -s /tmp/prt.log ]; then
for i in `cat /tmp/prt.log`
do
echo $i
lpalt ${i} -d${NEW_PRTR}
done
fi
sleep 300
fi
done
rm /tmp/prt.log