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 Manjaro and Arch Linux.
pacman -S avahi{codeBox}
2- Install the nss-mdns package for hostname resolution
pacman -S nss-mdns{codeBox}
3- Start and enable avahi-daemon.service
systemctl start avahi-daemon.service
systemctl enable avahi-daemon.service{codeBox}
4- Then, edit the file /etc/nsswitch.conf and change the line:
hosts: files dns myhostname
to:
hosts: files mdns_minimal [NOTFOUND=return] dns myhostname{codeBox}
5- Install the cups, ghostscript, and gsfonts packages:
pacman -S cups ghostscript gsfonts{codeBox}
6- Start and enable org.cups.cupsd.service
systemctl start org.cups.cupsd.service
systemctl enable org.cups.cupsd.service{codeBox}
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. {alertInfo}
7- 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{codeBox}
8- Add your user to sys ; lp and scanner (if your printer is also a scanner) groups:
gpasswd --add username group{codeBox}
9- Install your printer driver [https://wiki.archlinux.org/index.php/CUPS#Installing_the_best_driver]
10- Use Printer Setting or Cups to add your wireless printer: http://localhost:631/
That is all. Enjoy printing 🖨