Posted on 07-05-2019 12:08 PM
I'm attempting to find the -o options for a Konica Minolta bizhub C958 to pre-configure the PaperSource / Finisher extra hardware using lpadmin -o.
Is there an easy way to find all the -o options for this printer?
Posted on 07-07-2019 10:14 AM
You can use this command to get all available options:
lpoptions -p "printer_name" -l
I often output this command into a file:
lpoptions -p "printer_name" -l > /tmp/before
Then making all changes in the CUPS UI on http://localhost:631
and run this command again:
lpoptions -p "printer_name" -l > /tmp/after
Then you can use diff
to see the differences:
diff /tmp/before /tmp/after