Posts

Showing posts from December, 2007

Printer Export

You may have number of printers configured on a Linux Servers and on some day the server needs the replacement, so you will need to configure the printers on new server again. Does this mean you have to run configuration to add all printers one by one?? NO, you don't. The easiest way it to export printers from original server & import it on any other server/s. Here are the steps in detail:on original server, login as root and run following command to export all configured printers to file 'printers.xml' #system-config-printer-tui --Xexport > printers.xml Copy 'printers.xml' to the new server by the way you are comfortable.Now run the following commands as root on the new server to import the printers: #system-config-printer-tui --Ximport [--force/--merge] < printers.xml import options:--force overide the current settings with the imported settings, this is the default. --merge merge the current settings with the imported settings. #system-config-printer Ju