How to install CUPS on Manjaro
CUPS stands for Common Unix Printing System. It is an open-source printing system for Unix-like operating systems, including Linux. In this tutorial, we will go through the steps to install CUPS on Manjaro.
Prerequisites
Before we begin, make sure you have the following prerequisites:
- A Manjaro installation
- A terminal window
Steps
Open a terminal window by pressing
Ctrl + Alt + Ton your keyboard.Update the package list by running the following command:
sudo pacman -SyInstall CUPS by running the following command:
sudo pacman -S cupsStart the CUPS daemon by running the following command:
sudo systemctl start cups.serviceVerify that CUPS is running by accessing the web interface in your web browser. Type the following URL in your web browser:
http://localhost:631. You should see the CUPS web interface.If you want to enable automatic start of the CUPS service at boot time, execute the following command:
sudo systemctl enable cups.serviceNow CUPS should start automatically every time you boot your system.
Conclusion
In this tutorial, we have shown how to install CUPS on Manjaro. You should now be able to use CUPS for managing your printers on your Manjaro system.