rpm -qa|grep cupsIf no packages are listed, install cups package using YaST. The first stumbling block will be to get to CUPS administration. The default installation is missing passwd.md5 file and below are two steps to fix it. From shell as root run the following commands.
touch /etc/cups/passwd.md5 lppasswd -a -g sys rootImportant notes! The user must be root, because that is how default /etc/cups/cupsd.conf is configured. If you want to mess with cupsd.conf, do it on your own. The password for user root generated above in /etc/cups/passwd.md5 is not related to "real" root password that is kept in /etc/shadow. To verify that everything is working run the following command from shell as root.
/etc/init.d/cups restartThen enter the following URL from your favorite browser.
http://localhost:631You should see greenish-brown default CUPS page, where all printer configuration is done the easy way. If not, then you probably messed up /etc/cups/cupsd.conf. Remove cups completely and reinstall it the right way.
www.linuxprinting.org/Select from the menu on the left side "Printer Listings" to get to the following page.
http://www.linuxprinting.org/printer_list.cgiNext to the first "Show" button select "Minolta" and "PagePro 1250W". Press the "Show" button to the left of the selections you made to get to the following page.
www.linuxprinting.org/show_printer.cgi?recnum=Minolta-PagePro_1250WSelect "download PPD" or follow the link below to get PPD file.
http://www.linuxprinting.org/ppd-o-matic.cgi?driver=min12xxw&printer=Minolta-PagePro_1250W&show=0Compress downloaded file by running the following command from shell as root.
gzip Minolta-PagePro_1250W-min12xxw.ppdCopy the resulting file to /usr/share/cups/model/Minolta by running the following command from shell as root.
cp -a Minolta-PagePro_1250W-min12xxw.ppd.gz /usr/share/cups/model/Minolta/Restart CUPS, because we updated the driver list by running the following command from shell as root.
/etc/init.d/cups restart
http://www.linuxprinting.org/show_printer.cgi?recnum=Minolta-PagePro_1250WSelect "Home page" to get to the following page.
http://www.hinterbergen.de/mala/min12xxw/Download the current version of the source min12xxw-0.0.8.tar.gz Extract and compile the source by running the commands below from shell as root.
tar xfz min12xxw-0.0.8.tar.gz cd min12xxw-0.0.8 ./config make make install make cleanThat is it! Enter the following URL from your favorite browser and add the new printer from administration menu.
http://localhost:631It worked for me! I have done this on two separate machines P3 and P4 in 64bit mode. Let me know if you encounter problems.
Click to change font size