Ubuntu – Add network printer to Ubuntu Server via command line terminal

printingserver

I'm building an application that will need to print from the server. I have lots of printers on the network. All Ubuntu and Windows desktops can see them when browsing network printers. I want to print to one of the network printers using the default settings already setup for the printer on the network.

How do i add a network printer to Ubuntu Server (no GUI)?

Best Answer

You can use CUPS for that. Install it by typing sudo apt install cups
Here's their documentation on how to set up network printers: https://www.cups.org/doc/network.html

Related Question