Search

Search IconIcon to open search

Adding Printer on Linux

Last updated by Simon Späti

This example are for my Brother DCPL2550DN currently having

# UI

system-config-printer - CUPS configuration tool.

# Drivers are installed

check what

1
ls /usr/share/cups/model/ | grep -i brother

# Terminal way

# Brother MFC-L3760CDW

Uncomment multilib in sudo vim /etc/pacman.conf

1
2
[multilib]
Include = /etc/pacman.d/mirrorlist

Then do this

1
2
3
4
#update package database
sudo pacman -Sy
#install otherwise missing package for yay brother package below
sudo pacman -S lib32-expat

Now we can install like normal:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
# Driver from AUR https://aur.archlinux.org/packages/brother-mfc-l3760cdw)
yay -S brother-mfc-l3760cdw

# Add the printer directly
sudo lpadmin -p Brother-MFC-L3760CDW -E -v ipp://192.168.1.205/ipp -m everywhere

# Set it as default (optional)
sudo lpadmin -d Brother-MFC-L3760CDW

# Test if it was added
lpstat -p

Old way - didn’t work the best

1
#sudo lpadmin -p Brother-MFC-L3760CDW -E -v ipp://192.168.1.205/ipp/print -P /usr/share/cups/model/Brother/brother_mfcl3760cdw_printer_en.ppd

# Brother-DCP-L2550DN

with the terminal:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
# Driver from AUR: https://aur.archlinux.org/packages/brother-dcpl2550dn)
yay -S brother-dcpl2550dn

# Add the printer directly
sudo lpadmin -p Brother-DCP-L2550DN -E -v ipp://192.168.1.108/ipp/print -P /usr/share/cups/model/Brother/Brother-DCPL2550DN-cups-en.ppd

# Set it as default (optional)
sudo lpadmin -d Brother-DCP-L2550DN

# Test if it was added
lpstat -p

# Troubleshooting

Error when adding:

# Adding Scan to Network

To scan to Synology or network drive, see Adding Network Drive - NAS Synology.


Origin: My Lenovo ThinkBook 14 G7 ARP (AMD)
References: Arch Linux, Adding Network Drive - NAS Synology
Created 2025-08-20