After successfully configuring my printer on both Manjaro and Arch, with the help of various tutorials and wikis, I decided to share my experience. Below, you’ll find my step-by-step guide on setting up a wireless printer on Arch and Manjaro Linux.
- Install the avahi package:
pacman -S avahi
- Install the nss-mdns package for hostname resolution:
pacman -S nss-mdns
- Start and enable avahi-daemon.service:
systemctl start avahi-daemon.service
systemctl enable avahi-daemon.service
- Then, edit the file /etc/nsswitch.conf and change the line:
hosts: files dns myhostname
to:
hosts: files mdns_minimal [NOTFOUND=return] dns myhostname
- Install the cups, ghostscript, and gsfonts packages:
pacman -S cups ghostscript gsfonts
- Start and enable org.cups.cupsd.service:
systemctl start org.cups.cupsd.service
systemctl enable org.cups.cupsd.servic
Optionally; CUPS can use Avahi browsing to discover unknown shared printers in your network. This can be useful in large setups where the server is unknown. To use this feature, start cups-browsed.service.
- Optionally ; some linuxers claim that they have problem when try adding printer without installing system-config-printer (error adding printer) so if you have this problem just install it:
pacman -S system-config-printer
- Add your user to sys ; lp and scanner (if your printer is also a scanner) groups:
gpasswd --add username group
- Install your printer driver [https://wiki.archlinux.org/index.php/CUPS#Installing_the_best_driver]
- Use Printer Setting or Cups to add your wireless printer: http://localhost:631/
That is all. Enjoy printing 🖨️



Linux-Tech&More Comment Policy
Comments are welcomed and encouraged on this blog. Spam, abusive and off-topics comments will be deleted. Please read our Comments policy before commenting.
Join the Discussion!