Manuel Stühn <FreeBSDnewbie(at)freenet.de> wrote:
> Hallo.
> Ich hab nochmal an meinen BIOS-Einstellungen gespielt und den lpt von NORMAL
> auf ECP gestellt. Wenn ich nach dem Hochfahren per Hand
> # lptcontrol -e
> abschicke, dann ist problemloses Drucken möglich. Wie kann ich einstellen,
> dass der lpt schon beim Hochfahren in den extended polled mode geschaltet
> wird?
Am einfachsten geht es so:
echo /usr/sbin/lptcontrol -e >> /etc/rc.local
Oder ein kleines Startskript in /usr/local/etc/rc.d ablegen:
#!/bin/sh -
if [ /$1 = /start ]; then /usr/sbin/lptcontrol -e; fi
Gruß
Olli
--
Oliver Fromme, secnetix GmbH & Co KG, Oettingenstr. 2, 80538 München
Any opinions expressed in this message may be personal to the author
and may not necessarily reflect the opinions of secnetix in any way.
"C++ is over-complicated nonsense. And Bjorn Shoestrap's book
a danger to public health. I tried reading it once, I was in
recovery for months."
-- Cliff Sarginson
To Unsubscribe: send mail to majordomo(at)de.FreeBSD.org
with "unsubscribe de-bsd-questions" in the body of the message
Received on Tue 09 Mar 2004 - 11:11:35 CET