Enabling CUPS: Difference between revisions

From OLPC
Jump to navigation Jump to search
mNo edit summary
(reorganized, added information about html admin interface and printing from Firefox)
Line 4: Line 4:
traditional wireless network with the following steps from the Terminal activity:
traditional wireless network with the following steps from the Terminal activity:


1. Install CUPS:
== Install CUPS: ==
su -
su -
yum install cups.i386
yum install cups.i386


Yum currently fails in 8.2 builds. This is covered in [http://dev.laptop.org/ticket/8125 | Trac ticket 8125]. There is a workaround there too.
2. Configure your printer by editing (See [[#Example entry in printers.conf|example]] below):

== Configure your printer (in terminal) ==
Configure your printer by editing:
/etc/cups/printers.conf
/etc/cups/printers.conf


===Example entry in printers.conf===
3. Restart CUPS:

<Printer fooprinter>
DeviceURI ipp://19.86.47.16
</Printer>

==Restart CUPS==
/etc/init.d/cups restart
/etc/init.d/cups restart
or
/sbin/service cups start


4. Print using the lpr command:
==Configure CUPS using CUPS' html interface==
Rather than editing printer.conf, a full featured visual admin tool is available.
In Browse open 'http://localhost:631/admin/

==Print using the lpr command==
lpr -P fooprinter foodoc.ps
lpr -P fooprinter foodoc.ps


Line 21: Line 36:
The long-term plan is a Sugar integration, but in a pinch this should get you started. Of course, the option remains to copy your files to a USB stick and print from another machines.
The long-term plan is a Sugar integration, but in a pinch this should get you started. Of course, the option remains to copy your files to a USB stick and print from another machines.


==Print from Firefox==
===Example entry in printers.conf===
One Sugar activity with printer support is [[Firefox]]. This has a traditional menu system. This will give you an example of printing integrated with an activity. File/Print/ brings up a traditional print dialog.

<Printer fooprinter>
DeviceURI ipp://19.86.47.16
</Printer>


==See also==
==See also==

Revision as of 19:58, 6 September 2008

Peter Krenesky, from the Open Source Lab at Oregon State University, has verified that CUPS is installable and works on the XO over a traditional wireless network with the following steps from the Terminal activity:

Install CUPS:

su -
yum install cups.i386

Yum currently fails in 8.2 builds. This is covered in | Trac ticket 8125. There is a workaround there too.

Configure your printer (in terminal)

Configure your printer by editing:

/etc/cups/printers.conf

Example entry in printers.conf

<Printer fooprinter>
DeviceURI ipp://19.86.47.16
</Printer>

Restart CUPS

/etc/init.d/cups restart

or

/sbin/service cups start

Configure CUPS using CUPS' html interface

Rather than editing printer.conf, a full featured visual admin tool is available. In Browse open 'http://localhost:631/admin/

Print using the lpr command

lpr -P fooprinter foodoc.ps

(In the above example, the printer name is "fooprinter" and the document being printed is "foodoc.ps".)

The long-term plan is a Sugar integration, but in a pinch this should get you started. Of course, the option remains to copy your files to a USB stick and print from another machines.

Print from Firefox

One Sugar activity with printer support is Firefox. This has a traditional menu system. This will give you an example of printing integrated with an activity. File/Print/ brings up a traditional print dialog.

See also