Drucker: Difference between revisions
No edit summary Tag: visualeditor |
|||
| Line 31: | Line 31: | ||
|DUS Hinterhaus 1.OG|| ||10.110.200.131||OKI ES5473 - A4 MFP||[https://www.oki.com/de/printing/support/drivers-and-utilities/colour-multifunction/46357102/ Download]|| | |DUS Hinterhaus 1.OG|| ||10.110.200.131||OKI ES5473 - A4 MFP||[https://www.oki.com/de/printing/support/drivers-and-utilities/colour-multifunction/46357102/ Download]|| | ||
|- | |- | ||
|BER 1.OG Empfang|| ||10.111.200.211||OKI ES5473 - A4 MFP||[https://www.oki.com/de/printing/support/drivers-and-utilities/colour-multifunction/46357102/ Download]|| | |BER 1.OG Empfang|| | PSL | BER | RDS26 | HH | 1OG | Empfang||10.111.200.211||OKI ES5473 - A4 MFP||[https://www.oki.com/de/printing/support/drivers-and-utilities/colour-multifunction/46357102/ Download]|| | ||
|- | |- | ||
|BER 1.OG Lager|| ||10.111.200.212||OKI ES8434 - A3 Printer||[https://www.oki.com/de/printing/support/drivers-and-utilities/colour/47074214/ downlaod]|| | |BER 1.OG Lager|| ||10.111.200.212||OKI ES8434 - A3 Printer||[https://www.oki.com/de/printing/support/drivers-and-utilities/colour/47074214/ downlaod]|| | ||
Revision as of 12:56, 6 January 2020
Verbrauchsmaterial
Alle Drucker mit Druckerpapier maximal füllen.
EPSON DIN A2 Drucker
| Standort | IP | Modell | Driver | Name |
|---|---|---|---|---|
| Hof Another Slang | 10.110.200.47 | EPSON SureColor SC-P800 | Download | - |
OKI Drucker
| Standort | Name | IP | Modell | Druckertreiber | Scannertreiber | Papierfächer |
|---|---|---|---|---|---|---|
| DUS Vorderhaus 1.OG | PSL | DUS | NEU | VH | 1OG | W | 10.110.200.111 | OKI ES5473 - A4 MFP | Download | Download | Tray1 = Geschäftspapier Tray2 = Normalpapier |
| DUS Vorderhaus 2.OG | PSL | DUS | NEU | VH | 2OG | E | 10.110.200.112 | OKI ES8434 - A3 Printer | Download | ||
| DUS Flachbau Empfang | 10.110.200.121 | OKI ES5473 - A4 MFP | Download | |||
| DUS Flachbau BuHa | 10.110.200.123 | OKI ES5473 - A4 MFP | Download | |||
| DUS Hinterhaus 1.OG | 10.110.200.131 | OKI ES5473 - A4 MFP | Download | |||
| BER 1.OG Empfang | PSL | BER | RDS26 | HH | 1OG | Empfang | 10.111.200.211 | OKI ES5473 - A4 MFP | Download | ||
| BER 1.OG Lager | 10.111.200.212 | OKI ES8434 - A3 Printer | downlaod |
Schnell Installation für macOS
In der Terminal.app folgenden Code ausführen.
Bis macOS 10.14 Mojave:
sudo bash < <(curl -s https://myapi3.parasol-island.com/driver/oki/install.text)
Ab macOS 10.15 Catalina:
sudo bash < <(curl -s https://myapi3.parasol-island.com/driver/oki/install.10.15.text)
Wenn nach einem Kennwort gefragt wird handelt es sich um dein Computerkennwort. (!Achtung: Das Kennwort wird beim Tippen nicht angezeigt!)
Error creating thumbnail: File missing
Error creating thumbnail: File missing
Error creating thumbnail: File missing
Error creating thumbnail: File missing
Papierprofile für EPSON SureColor SC-P800
File:Epson Enhanced Matte_15.03.2018_1.icc.zip
IT: Seitenzähler auslesen
<syntaxhighlight lang="bash">
- !/bin/bash
ES5473=( 10.110.200.111 \
10.110.200.121 \
10.110.200.123 \
10.110.200.131 )
ES8434=( 10.110.200.112 \
10.111.200.212 )
for ip in "${ES5473[@]}" do
echo " IP:" $ip echo " Serial:" $(snmpget -Oqv -v1 -c public $ip .1.3.6.1.2.1.43.5.1.1.17.1 | sed 's/\"//g') echo "Location:" $(snmpget -Oqv -v1 -c public $ip .1.3.6.1.2.1.1.6.0 | sed 's/\"//g') echo " Color:" $(snmpget -Oqv -v1 -c public $ip .1.3.6.1.4.1.2001.1.1.4.2.1.1.11.0 | sed 's/\"//g') echo " Mono:" $(snmpget -Oqv -v1 -c public $ip .1.3.6.1.4.1.2001.1.1.4.2.1.1.12.0 | sed 's/\"//g') echo "------------------------------------------------------"
done
for ip in "${ES8434[@]}" do
echo " IP:" $ip echo " Serial:" $(snmpget -Oqv -v1 -c public $ip .1.3.6.1.2.1.43.5.1.1.17.1 | sed 's/\"//g') echo "Location:" $(snmpget -Oqv -v1 -c public $ip .1.3.6.1.2.1.1.6.0 | sed 's/\"//g') echo " Color:" $(snmpget -Oqv -v1 -c public $ip .1.3.6.1.4.1.2001.1.1.1.1.11.1.10.140.0 | sed 's/\"//g') echo " Mono:" $(snmpget -Oqv -v1 -c public $ip .1.3.6.1.4.1.2001.1.1.1.1.11.1.10.130.0 | sed 's/\"//g') echo "------------------------------------------------------"
done
</syntaxhighlight>