Mis notas técnicas
-
Unable to query: Can’t create/write to file ‘/tmp/#sql6f7a_fe_0.MYI’ (Errcode: 13)
Este problemas es debido al que servicio mysqld no puede escribir en /tmp. Lo más comodo es copiar y pegar esto: chown root:root /tmp chmod 1777 /tmp /etc/init.d/mysqld restart
-
/usr/lib/python2.3/site-packages/cElementTree.so: cannot open shared object file: No such file or directory
[ad name=»advert»] Este error es debido a que estas instalando una version de ElementTree que no se corresponde con tu arquitectura. Por ejemplo que hayas instalado la version de i386 en una máquina x86_64 o al revés.
-
mailman y plesk
-
La fuente parece encriptada, y no puede leerse. ¿Está intentando reproducir un DVD encriptado sin libdvdcss?
Este error: La fuente parece encriptada, y no puede leerse. ¿Está intentando reproducir un DVD encriptado sin libdvdcss? Aparece al intentar reproducir un dvd con la instalación de Debian Lenny. Aunque el paquete libdvdcss2 está presente: <code>$ dpkg -l | grep css ii libdvdcss2 1.2.9-0.0 Simple foundation for reading DVDs – runtime</code> NO es capaz…
-
Agujerazo de seguridad en firefox 2.0
Nos han jodido !!
-
borrar la tabla de particiones con linux
Con esto dejamos el mbr lleno de ceros 😀 [shell]dd if=/dev/zero of=/dev/hda bs=512 count=1[/shell]
-
Unable to create graph: Garbage ‘123G’ after command ‘COMMENT: 123G’
Este error te puede traer de cabeza si usas rrds 1.2 y tu codigo ha sido diseñado para versiones anteriores. En la web hay un texto aclaratorio ( http://oss.oetiker.ch/rrdtool/doc/rrdgraph_graph.en.html ) COMMENT:text Text is printed literally in the legend section of the graph. Note that in RRDtool 1.2 you have to escape colons in COMMENT text…
-
Drupal login + PHP 5.2.1 no mantiene la sesión
Parece que hay un fallo de Drupal en versiones no actualizadas que al ejecutarse sobre php 5.1.x 5.2.x , en mi caso 5.2.1 no mantienen la sesión de usuarios logados. La solución más facil es parchear settings.php y añadir al fichero [shell]register_shutdown_function(‘session_write_close’);[/shell] Más información: http://drupal.org/node/102114
-
convertir video
rapido, c=F3modo y sin ventanas: [shell] mencoder raw_video_file.mpg -ovc lavc -oac mp3lame -o new_file.avi [/shell]
-
Tablas importantes en SQL Server
System Table Description sysforeignkeys Resides in each database and stores information about the foreign keys in that database. sysindexes Contains a row for each index within a database. Specifies the table with which the index is associated, whether its clustered or nonclustered, the number of keys, and so on. sysindexkeys Stores information on the keys…