domingo, 26 de octubre de 2008

Lexmark X1150 multifunction printer in Debian 64 bits

Today I had to set up a multifunction printer, namely the Lexmark x1150. I had already installed it under a 32 bits Debian install, following this howto, but it won't work with a 64 bits one. The problem was with rastertoz600, which showed:

./rastertoz600: error while loading shared libraries libcupsimage.so.2

I did a hack to fix this. I downloaded the licupsimage's 32 bits deb package, uncompressed it (ar x package.deb) and copied the libcupsimage.so.2 to /usr/lib32/ . Run ldconfig and that's all, the printer is working :-D

So, if you have a printer like this, follow the howto linked above and this hack should work.

miércoles, 22 de octubre de 2008

Tercer congreso argentino de historia de los alemanes del Volga

TERCER CONGRESO ARGENTINO DE HISTORIA Y CULTURA DE LOS ALEMANES DEL VOLGA

Ein Freus Volk”

Coronel Suárez – Provincia de Buenos Aires

14, 15 y 16 de Noviembre de 2008



Celebrados ya el Primer Congreso (“Volk auf dem Weg”) y el Segundo Congreso (“Ein treues Volk”) es tiempo de celebrar el Tercer Congreso de de Historia y Cultura de los Alemanes del Volga (“Ein Freus Volk”). Insertados en los pliegues de la riquísima cultura germánica, los Alemanes del Volga ostentan rasgos culturales propios surgidos de su largo caminar y de su relación con innumerables pueblos con los que han dialogado profundamente. Así, el objetivo de estas jornadas será generar un espacio participativo para pensar esta cultura como una cultura digna de ser estudiada, investigada y difundida en la comunidad.


Objetivos


  • Generar espacios participación para pensar a los Alemanes del Volga como una cultura con rasgos culturales propios y dignos de ser investigados y difundidos

  • Interesar a los jóvenes y acercarlos a nuestra cultura, aprovechando las diversas fuentes de información para el desarrollo de su propia formación profesional.

  • Difundir la autenticidad y solidez de nuestra propuesta de acercamiento a esta rica cultura

  • Motivar a la comunidad en general a participar de nuestras historias, escuchándolas, apreciándolas y transmitiéndolas.

  • Crear un espacio de investigación y reflexión

  • Fomentar el interés ciudadano por el conocimiento de la historia

  • Trabajar en programas educativos en forma conjunta con los docentes de nuestras escuelas para educar a los niños y jóvenes en el cuidado del patrimonio histórico.

  • Mostrar la Historia de los Alemanes del Volga, a través de historias y objetos que materializan y simbolizan la capacidad de superar etapas difíciles que a la vez son enriquecedoras.


Propuesta de actividades a desarrollar:


Lectura y publicación de ponencias que son investigaciones, estudios e historias generales o familiares que nos llevaran a generar un mayor conocimiento de la gran gesta de nuestra cultura.


Destinatarios de las Jornadas:


Comunidad en general, instituciones educativas y autoridades políticas.


Fecha de dictado y lugar: 14, 15 y 16 de noviembre en Coronel Suárez



Solicitar la ficha de inscripción a congresoalemanesdelvolga@hotmail.com ó a culturasuarez@speedy.com.ar.

sábado, 18 de octubre de 2008

Scanner de la multifunción Epson CX4700

Hoy estuve tratando de hacer andar el scanner de dicha impresora multifunción en Debian, con éxito. Los pasos que seguí son los de éste link, pero con una modificación. Reproduzco para que quede en castellano :-)

El primer paso es instalar los paquetes libsane y xsane (y dejar que aptitude se encargue de las dependencias :-D ). Luego hay que configurar el scanner.
Ejecutando lsusb obtengo la salida:

Bus 005 Device 002: ID 04b8:0819 Seiko Epson Corp. Stylus CX4700/CX4800/DX4800 (PX-A750)

Esta información la usamos en /etc/sane.d/epson.conf. En el mismo, ponemos las líneas:

usb 0x4b8 0x819
usb /dev/usb/scanner0

Luego queda configurar /etc/udev/rules.d/z60_libsane.rules para que los permisos necesarios sean puestos sobre el dispositivo. Ésto se logra agregando las siguientes líneas:

# Epson Corp.|Stylus CX4100/CX4700
SYSFS{idVendor}=="04b8", SYSFS{idProduct}=="0819", MODE="0664", GROUP="scanner", ENV{libsane_matched}="yes"

Luego reinicié, aunque seguramente debe haber una mejor manera :-)

Al usar xsane o kooka para escanear, nos dá la posibilidad de elegir entre los modelos CX4700 y CX4800. En mi caso, utilicé el primero.

miércoles, 15 de octubre de 2008

El libro oficial de Qt, primera edición, disponible para su descarga

C++ GUI Programming with Qt 4 primera edición está disponible para su descarga. Muy buen libro para los que arrancan con Qt. Yo lo tengo y me ha servido mucho (lástima que nunca lo leí del todo, como me pasó con el de patrones de diseño :-( ).

miércoles, 8 de octubre de 2008

Propuesta: introducción a mantenedor/desarrollador de Debian

Se me ocurre que podría ser una muy buena idea que, durante algún festival medio grande de software libre, como pueden ser las JRSL o el CafeConf, se dicte un curso introductorio al mantenimiento de paquetes en Debian, y porqué no, a ser un Desarrollador Debian.

Desde mi punto de vista, sería una buena estrategia no sólo para conseguir colaboradores para el proyecto, haciéndoles mas fáciles los primeros pasos, sino también una excelente herramienta de marketing (que, nos guste o no, mal no viene).

¿Ideas, comentarios?

lunes, 6 de octubre de 2008

VFAT, UTF-8, KDE, HAL and the kernel/mount

(That title seems that I am shouting...)

We (well, more precisely Debian Qt/KDE Maintainers' list) received a bug report about vfat devices with UTF-8 being mounted as case sensitive filesystems. I was trying to see what could be done, but as usual, Sune "pusling" Vuorela is much faster than I :-) . It turns out that HAL is sending this information to KDE. Michael Biebl, who works in HAL, joined the discussion, and told us that that's the info they get from the kernel, and the do not mess with it. And also the filesystem can actually be written like that (which I do not know if that is standard).

It seems that mounting a device as UTF-8 makes it case sensitive by default. And there are some people who need UTF-8 in their vfat devices.

So, where's the bug? In UTF-8 that implies a case sensitive filesystem? In the kernel/mount for providing a case sensitive filesystem where it should not be? In HAL for passing that info (I do not think so) In KDE, for mounting with the options that they are given?

Just as a fix, Sune sent a patch that mount's vfat devices as case insensitive. It will surely work, but it doesn't feel "right" to do that...

domingo, 5 de octubre de 2008

Generating Blogspot's feeds for more than one category

Suposse you have a blogpost blog like I do ;-) . Now suposse that someone wants to add a certain category of your blog into a planet. You could follow this instructions and that's all, you have your own feed for a special category.

But it happens that I blog about Debian. In english and in spanish. And there are two planets. So, I asked myself if I could filter by two categories (and perhaps, more). It's possible:

http://www.yourBlogName.blogspot.com/feeds/posts/default/-/category1/category2

So, for example, my spanish Debian posts would be:

http://www.perezmeyer.blogspot.com/feeds/posts/default/-/debian/español

(If the feed above fails, you are probably having a problem with the ñ in it. Try copying and pasting the URL feed).

And, in english:

http://www.perezmeyer.blogspot.com/feeds/posts/default/-/debian/english


Of course, if you happen to be interested in my KDE posts, just change debian with kde in the above URLs ;-)

viernes, 3 de octubre de 2008

Simulación de contagio

Mi primer trabajo en C++ fué mi primer trabajo en Qt. Y no fué un ejercicio, sino un programa que realiza la simulación de un proceso de contagio, para la tésis de Ana Tablar.

Una animación de lo logrado:


Pueden verlo a mayor resolución aquí.

El código tiene sus errores, y compilado con Qt 4.4 falla. Pero resulta ser que tenía una versión para Windows guardada por ahí, la corrí con wine... y voilá! :-D

On soft linking .kde to .kde4

As you might know, Debian's KDE 4 setup creates and uses ~/.kde4 instead of ~/.kde . After being using both of them for some time (I keep using twinkle, konversation and katapult, as krunner is too slow, and the great Amarok), I decided to move ~/.kde to ~/kde-old and softlinking ~/.kde to ~/.kde4.

I had to copy the configs of konversation and Amarok (not katapult as it's easy to configure, and twinkle uses ~/.twinkle), but so far it turned to work great. Great I say? better! Now katapult and konversation uses the brand new icons of KDE. Links in konversation opens with the apps configured in KDE 4, and I can even jump between different parts of flac files (perhaps that's another issue, but at least it works now :-D ).

Maybe I shoul ask Sune and start trying to port OpenSuse's tool for migrating KDE's setup to Debian.

jueves, 2 de octubre de 2008

Siemens HiCom 300 and Asterisk

I have spent almost two years trying to get a Siemens HiCom 300 to work with an Asterisk setup trough a DIUS2 card. It seems that the HiCom is not well configured :-(

Dear Lazy Web, if you happen to know how to make this work, please do not heasitate to leave a comment :-)

miércoles, 1 de octubre de 2008

6º Maratón nacional de lectura, también en Coronel Suárez

La Biblioteca Popular Infantil de Coronel Suárez, que preside mi señora madre :-) , invita participar del 6º Maratón nacional de lectura, el 3 de Octubre a partir de las 8 hs. en las instalaciones de la biblioteca, Lamadrid 1429 de la ciudad de Coronel Suárez.

Mas información, haciendo click en la imagen.



Má: te vas a pasar tu cumple leyendo :-D