> I've verified that the system sees USB devices, but it no longer sees > (or, at least, creates) a device for my HP PSC 2210 printer. I can't > find a device mapping to the printer in system-config-printer. It was > working with FC4. > > The printer shows up with lsusb > > # lsusb > Bus 005 Device 003: ID 04b4:6560 Cypress Semiconductor Corp. CY7C65640 > USB-2.0 "TetraHub" > Bus 005 Device 001: ID 0000:0000 > Bus 004 Device 002: ID 03f0:2911 Hewlett-Packard > Bus 004 Device 001: ID 0000:0000 > Bus 001 Device 001: ID 0000:0000 > Bus 003 Device 001: ID 0000:0000 > Bus 002 Device 001: ID 0000:0000 Could this be bug 180325? https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=180325 Is there a /dev/usb/lp0 created by udev (try "ls /dev/usb/lp0")? If there isn't, try running this as root: mkdir /dev/usb ln -s /dev/lp0 /dev/usb/lp0 service cups restart This creates a /dev/usb directory if it is missing, symlinks lp0 there and restarts cups. Then your printer will work if it configured already, or you will be able to configure it with system-config-printer. Note that you need to run these 3 commands after each reboot (unless you stick them into /etc/rc.d/rc.local or somewhere like that). Kevin Kofler