IT/Software/Applications/CUPS: Difference between revisions
Access restrictions were established for this page. If you see this message, you have no access to this page.
Walttheboss (talk | contribs) No edit summary |
Walttheboss (talk | contribs) No edit summary |
||
Line 1: | Line 1: | ||
== Common Unix Printing System == | |||
(Common Uncomfortable Pain Somewhere*) | |||
<nowiki>*</nowiki>Yes we mean "there". | |||
Over the years I have logged/wasted/learned for countless hours. | Over the years I have logged/wasted/learned for countless hours. | ||
<br /> | |||
=== Basics === | |||
To restart local printer services you need. | To restart local printer services you need. | ||
Line 12: | Line 16: | ||
<code>sudo service cups-browsed restart && sudo service cups restart</code> | <code>sudo service cups-browsed restart && sudo service cups restart</code> | ||
<br /> | |||
=== Next Level === | |||
Usually best to just start over by running three commands. | Usually best to just start over by running three commands. | ||
<br /> | <br /> |
Revision as of 05:55, 28 October 2021
Common Unix Printing System
(Common Uncomfortable Pain Somewhere*)
*Yes we mean "there".
Over the years I have logged/wasted/learned for countless hours.
Basics
To restart local printer services you need.
sudo service cups restart
To restart the network broadcast(sharing) and browsing(using others) you need.
sudo service cups-browsed restart && sudo service cups restart
Next Level
Usually best to just start over by running three commands.
sudo apt-get install --reinstall cups cups-browsed cups-client cups-common cups-daemon cups-server-common
then:
sudo systemctl daemon-reload
You can check the statuses with
service cups status
service cups-browsed status