Sziasztok!
Végül is kiderült http://hup.hu/node/69311 mi a probléma a nyomtatókkal.
Azt találtam ki, hogy a local gépre kötném és emulálnék egy print szervert (Sajnos muszáj mert share-elve nem nyomtat rá az alkalmazás, amit használunk), és akkor lehet rá helyben is nyomtatni, ha esetleg kikapcsolták, vagy elfogyott a papír.
Tud esetleg valaki olyan szoftot, ami print servert emulál?
Köszi
Balázs
- 1903 megtekintés
Hozzászólások
windows-ban tudtommal van LPD-kliens és LDP-szerver funkció is. Amelyik gépre feldugod, ott konfiguráld a (régen MS TCP/IP-printing névre hallgatott) szerver funkciót, a klienseken meg vegyed fel olyan nyomtatóként, akinek TCP-s port-ja van konfigurálva (ez a kliens funkcionalitás).
- A hozzászóláshoz be kell jelentkezni
valahol lattam ilyet:
---------------cuthere--------------
Make sure /etc/services has the following line:
jetdirect 9100/tcp laserjet hplj #
If you are using xinetd,
create the file /etc/xinetd.d/jetdirect with the following contents:
# Allow applications using the AppSocket / JetDirect protocol
# to communicate with CUPS.
service jetdirect
{
socket_type = stream
protocol = tcp
wait = no
user = lp
server = /usr/bin/lp
server_args = -d -o raw
groups = yes
disable = no
}
Restart your services:
service xinetd restart
service cups restart
If you are using inetd instead of xinetd,
edit the file /etc/inetd.conf so it contains the following line:
9100 stream tcp nowait lp /usr/bin/lp lp -d -o raw
Restart your services:
service inetd restart
service cups restart
Your CUPS_PRINTER_NAME can be found in the /etc/cups/printers.conf or /etc/printcap files.
-----------------cuthere------------
remélem beindítja a fantáziád! ;-)
- A hozzászóláshoz be kell jelentkezni