From owner-freebsd-questions@FreeBSD.ORG Thu Aug 22 14:56:01 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id DB84127C for ; Thu, 22 Aug 2013 14:56:01 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from out3-smtp.messagingengine.com (out3-smtp.messagingengine.com [66.111.4.27]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id ADE1D233A for ; Thu, 22 Aug 2013 14:56:01 +0000 (UTC) Received: from compute3.internal (compute3.nyi.mail.srv.osa [10.202.2.43]) by gateway1.nyi.mail.srv.osa (Postfix) with ESMTP id E519B22013 for ; Thu, 22 Aug 2013 10:55:53 -0400 (EDT) Received: from web3 ([10.202.2.213]) by compute3.internal (MEProxy); Thu, 22 Aug 2013 10:55:53 -0400 DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= messagingengine.com; h=message-id:from:to:mime-version :content-transfer-encoding:content-type:in-reply-to:references :subject:date; s=smtpout; bh=R8WKcaJv2+HW6cWpai/M1Wf/YzY=; b=Q8p cD+u8xHbu3yMZvzEnjvpVNLcUCJER0uAl0obtR5RkEcm/BcCkcqlBfMDgpZm3yMU QGiws9Ket8yFkvNy7arbGVpHif/JfaVRXNfnENvJAras+CatuHiWwGkc0FiQth2w v95DK4VqKcw/NacFKB6NSRAzp+yAQBxhIbLvJRlk= Received: by web3.nyi.mail.srv.osa (Postfix, from userid 99) id 36FADB02389; Thu, 22 Aug 2013 10:55:53 -0400 (EDT) Message-Id: <1377183353.3434.12899185.0697AF9A@webmail.messagingengine.com> X-Sasl-Enc: MB3BV33up9iVryLTjzroKtt2xrgvAU7jX9M1wBX6EIGr 1377183353 From: Mark Felder To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain X-Mailer: MessagingEngine.com Webmail Interface - ajax-d009844e In-Reply-To: References: <20130820153321.c99e018a.freebsd@edvax.de> <20130822125315.GA1638@tiny.Sisis.de> Subject: Re: Setup HP Laserjet 1120m over network with LPD Date: Thu, 22 Aug 2013 09:55:53 -0500 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Aug 2013 14:56:01 -0000 On Thu, Aug 22, 2013, at 8:19, Juris Kaminskis wrote: > > generally i would prefer to stick with the native freebsd printing system > which is LPD > As you should! CUPS is horrible... I also use apsfilter. I can print almost any file I want just by doing lpr filename apsfilter's generated config required some hand tweaking by me, but here's an example I'll drop for you: /etc/printcap: netlaser|netlaser;r=600x600;q=medium;c=gray;p=letter;m=auto:\ :lp=9100@netlaser:\ :if=/usr/local/etc/apsfilter/basedir/bin/apsfilter:\ :sd=/var/spool/lpd/netlaser:\ :lf=/var/spool/lpd/netlaser/log:\ :af=/var/spool/lpd/netlaser/acct:\ :mx#0:\ :sh: /etc/hosts: 192.168.94.5 netlaser /usr/local/etc/apsfilter/netlaser/apsfilterrc: # # don't delete these settings # PRINTER='PS' PAPERSIZE='letter' METHOD='auto' QUALITY='medium' COLOR='gray' RESOLUTION='600x600' # apsfilter as jukebox # important if audio playback device is a network print queue # INTERFACE='network' INTERFACE='network' And then I think I just had to create /var/spool/lpd/netlaser with ownership root:daemon and 755 After that I think restarting lpd and it just works?