Sorry for bothering guys… I’ve found the solution. If somebody has this problem, this is the solution:
- Install CUPS:
sudo pacman -Sy cups
- Start and enable (make it start after boot) the CUPS printing service:
sudo systemctl start org.cups.cupsd && sudo systemctl enable org.cups.cups
- Install HP Linux Imaging and Printing:
sudo pacman -S hplip
- Install a driver plug-in via
sudo hp-setup -i
. Root privileges are important here, otherwise it says “error: No device selected/specified or that supports this functionality.” when selecting a connection method. During installation of the plug-in, I selected the default option each time. - Install
system-config-printer
, a GUI tool to configure printers. - Start
system-config-printer
and click the button to add a printer. Select your printer and choose HPLIP as the connection method (see screenshot). -
system-config-printer
should now allow you to print a test page. - In order for a GTK application like Evince to show your printer in the printing dialog, you need to install
gtk3-print-backends
as well.
(Solution found in https://unix.stackexchange.com/questions/359531/installing-hp-printer-driver-for-arch-linux )
Good Luck