Cups Rename Printer May 2026
sudo lpadmin -p New_Name -d -E -v device://uri -m model.ppd sudo lpadmin -x Old_Name (You must know the original device URI and PPD/driver.)
sudo cupsrename Old_Name New_Name That preserves queues, jobs, and history. Until then, the web interface is the real hero. cups rename printer
It sounds like you're asking for a review of the command (or a related renaming function within CUPS), but the exact phrasing "cups rename printer" could refer to a few things. I'll assume you want a practical, user-focused review of renaming a printer using CUPS (Common UNIX Printing System) – both via the command line ( lpadmin ) and the web interface – since there's no dedicated cups-rename-printer command in standard CUPS. sudo lpadmin -p New_Name -d -E -v device://uri -m model
Below is a structured, helpful review of the process, its reliability, and its quirks. Overview CUPS doesn't have a single rename command. Instead, you must add a new printer with the desired name and delete the old one (while preserving settings). This is counterintuitive for beginners but perfectly functional. The review covers two methods: command line ( lpadmin ) and the web UI ( localhost:631 ). Method 1: Command Line ( lpadmin ) – Power User's Choice Command pattern: I'll assume you want a practical, user-focused review