> Hi,
> I have spent the last 6 hours chasing a how-to on installing a
> network printer under Solaris 2.6 on x86.
> The specific printer is a HP8100N and I downloaded the JetAdmin
> products for the 8100 and only after installing 2 different
> version got the message that they are only for SPARC systems.
> Grrr.
> Anyway, can anyone point me at the Dummies How-To to install a
> network printer (TCP/IP) under Solaris x86?
> Many thanks,
> Tony
I got this from a previous posting and added it to my post-install
jumpstart scripts. Our developers would*the filters up, so I
combined that with the original...
#!/usr/bin/ksh
# Create the default network printer
# Stolen from postings on usenet
# Add filters as needed if Developers*up again
lpadmin -p printername -v /dev/null -m netstandard
lpadmin -p printername -o protocol=bsd -o dest=x.x.x.x
lpadmin -p printername -T PS -I postscript
enable printername
accept printername
lpadmin -d printername
if [ ! -d /usr/lib/lp/postscript/download ]; then
cd /etc/lp/fd
lpfilter -f download -F download.fd
lpfilter -f dpost -F dpost.fd
lpfilter -f postio -F postio.fd
lpfilter -f postior -F postior.fd
lpfilter -f postprint -F postprint.fd
lpfilter -f postreverse -F postreverse.fd
fi
Feel free to add or modify, but if you have any goodies to ad/fix, post
them for me and others...
Gary