45 lines
1.1 KiB
Markdown
45 lines
1.1 KiB
Markdown
# Printing
|
|
Printing at PSI usually goes via the Findme printing system. More details about this and what printers are available can be found here: https://intranet.psi.ch/de/computing/pull-printing .
|
|
|
|
Each user can see his individual printing queue on: https://printmgmt.psi.ch/user
|
|
|
|
## Configuration
|
|
|
|
Enable printing on a system (printing is usually enabled by default on desktop systems):
|
|
```yaml
|
|
base::enable_printing: true
|
|
```
|
|
|
|
Special printing configuration:
|
|
```yaml
|
|
|
|
# Configure your own printers
|
|
printing::printers:
|
|
'C5500':
|
|
- 'Findme'
|
|
'C400':
|
|
- 'ODGA_006'
|
|
|
|
# set default printer - default if not specified: Findme
|
|
printing::default_printer: 'ODGA_006'
|
|
```
|
|
|
|
## Usage / Troubleshooting
|
|
|
|
```bash
|
|
# print a file (using the default queue)
|
|
[root@lx-test-02 ~]# lp test.txt
|
|
|
|
# list all print jobs
|
|
[root@lx-test-02 ~]# lpq -a
|
|
Rank Owner Job File(s) Total Size
|
|
1st root 3 test.txt 1024 bytes
|
|
|
|
# delete a print job from the queue
|
|
[root@lx-test-02 ~]# lprm 3
|
|
|
|
# list all print jobs
|
|
[root@lx-test-02 ~]# lpq -a
|
|
no entries
|
|
```
|