After spending two hours getting a Windows-7 scanner working I thought I would kill the rest of the day and make my little Raspberry Pi 3 talk to a network printer. It took only minutes.
https://www.howtogeek.com/169679/how-to-add-a-printer-to-your-raspberry-pi-or-other-linux-computer/
That link talks about using "CUPS" to print.
I entered the first two commands then realized this was about installing a print server so I stopped.
Next I pointed my browser to: "https://localhost:631" And there was CUPS up and running.
Add printer
enter user name and password.
CUPS found a network printer.
My word processor's print button went from gray to blue and I can print.
Did not reboot or anything like that.
By looking at CUPS I see that I can mark sharing and make a print server with little effort.
----------------------------------------
sudo apt-get install cups
sudo usermod -a -G lpadmin pi
-----------------------------------------
https://www.howtogeek.com/169679/how-to-add-a-printer-to-your-raspberry-pi-or-other-linux-computer/
That link talks about using "CUPS" to print.
I entered the first two commands then realized this was about installing a print server so I stopped.
Next I pointed my browser to: "https://localhost:631" And there was CUPS up and running.
Add printer
enter user name and password.
CUPS found a network printer.
My word processor's print button went from gray to blue and I can print.
Did not reboot or anything like that.
By looking at CUPS I see that I can mark sharing and make a print server with little effort.
----------------------------------------
sudo apt-get install cups
sudo usermod -a -G lpadmin pi
-----------------------------------------