It tried to remove 2 printers from CUPS on my laptop with Ubuntu 22.04. I managed to remove one of two printers (via http://localhost:631/printers/). The other printer I try to remove via http://localhost:631/printers/, can not deleted. What am I doing wrong? Is there something corrupt on my system?
Asked
Active
Viewed 5,626 times
1 Answers
2
Always make sure cups is stopped when you alter printers. Maybe that is your issue but it will be difficult to tell you what is wrong with only this information.
However you can do this from your Linux system. Stop cups and make a backup of printers.conf.
sudo service cups stop
cd /etc/cups/
sudo cp printers.conf printers.confOLD
To list all printers do:
lpstat -v
and using the listed printer ID this will remove a printer (change it for your printer ID):
sudo lpadmin -x {printerID}
Then start cups again with:
sudo service cups start
Rinzwind
- 309,379