Posts Tagged ‘Linux’

Git para usuarios de Subversion

Tuesday, August 4th, 2009

Para los amantes de los sistemas de control de versiones para su código fuente, la gente de IBM nos manda la primera parte sobre el uso de Git para los usuarios que tengan algo de conocimiento previo en Subversion:

Distributed version control systems (DVCSs) offer a number of advantages over centralized VCSs, and for Subversion users looking to explore this model, Git is a great place to start. Using Subversion as a baseline, this articles shows how to install Git, set up a remote repository, and begin using basic Git commands.

Disponible ‘Implementación de Servidores con GNU/Linux’ edición agosto 2009.

Tuesday, August 4th, 2009

Recién he publicado la edición de agosto de 2009 de mi libro electrónico «Implementación de Servidores con GNU/Linux.» Esta edición tiene un total de 600 páginas y acumula 10 años de experiencias y trabajo de investigación en un proyecto de comunidad que inició un 27 de agosto de 1999. La obra se publica con licenciamiento Creative Commons Reconocimiento – NoComercial – CompartirIgual 2.1. El libro en formato electrónico, que está basado en un 100% sobre CentOS 4 y 5, está disponible sin costo a través de la zona de descargas de Alcance Libre en este enlace. También, por primera vez desde 2006 esta disponible en formato impreso, en esta ocasión a través de Lulu.com. Correcciones, reportes de errores y sugerencias, por favor publicarlas en este enlace o bien en el formulario en este otro enlace.

Guía de errores comunes en Unix-Linux

Friday, July 17th, 2009

Nos mandan una guía de los errores mas comunes cometidos en ambientes de Unix-Linux:

This article explains UNIX and Linux errors and provides workarounds and resolutions to them that may crop up. Discover the most common errors in UNIX and Linux and how to avoid them.

Introducción a VimScript

Wednesday, July 8th, 2009

Nos mandan un artículo introductorio a Vimscript, que es un método para extender y automatizar tareas en el editor de texto vim (VImproved):

In part-1 you can begin to understand the fundamental components of the Vimscript programming language with simple script examples. In Part-2 you can learn how to create and deploy new user defined functions in the Vimscript language.

Comunidad de Ubuntu en México

Sunday, June 28th, 2009

Saludos, soy  Tognu (MOTU)

De parte de los desarrolladores de Ubuntu y Canonical, indiquenme si requieren apoyo de algun tipo, ya que mi labor en México es apoyar la difusión de el software libre, linux y por supuesto de Ubuntu.
Nuestra intención es difundir los beneficios de Ubuntu en un clima de participación, donde las ideas de todos los usuarios son bienvenidas para mejorar este fantástico sistema operativo.

Así mismo, en nuestro sitio www.ubuntu.com encontrarán las herramientas necesarias para iniciarse en Ubuntu, solucionar problemas o simplemente intercambiar opiniones.

https://wiki.ubuntu.com/tognu

usando Esteganografía para evitar ser observado

Monday, June 8th, 2009

Nos mandan un artículo introductorio a las técnicas de esteganografía (esconder información dentro de otra):

Some of the more nefarious Steganography tactics include hiding information for illegal reasons. In fact, organizations such as Al-Qaeda and other terrorist are known to use this process to hide information in harmless images hosted on Web sites. Learn whats at stake and how to detect and thwart Steganography techniques and blunt its effectiveness.

Usando las listas de acceso con NFS v4

Monday, June 8th, 2009

Nos mandan un artículo de como usar los ACL’s (Access Control List) de la nueva NFSv4 (Network File System – Version 4):

Here’s a great cheat sheet on managing NFSv4 ACLs on different filesystem with different commands. This article discusses and compares the different commands that you might use to migrate from one filesystem to another.

Técnicas de prueba con Python

Monday, June 8th, 2009

Nos mandan un artículo sobre el uso de frameworks para la prueba y debug de programas en Python.

Look at how the leading Python testing frameworks provide robust auto-discovery of your application tests. Make sure your applications are written right the first time, and that they stay working through months and years of further tweaks and improvements.

Haciendo scripts con Vmscript para el editor VIM

Sunday, May 10th, 2009

Nos mandan un artículo introductorio a VmScript que es un lenguaje que permite extender las funcionalidades del editor vim :

Vimscript is a mechanism for reshaping and extending the Vim editor. Scripting allows you to create new tools, simplify common tasks, and even redesign and replace existing editor features. This article introduces the fundamental components of the Vimscript programming language: values, variables, expressions, statements, functions, and commands. These features are demonstrated and explained through a series of simple examples.

Multiproceso con Python

Wednesday, March 25th, 2009

Nos mandan un artículo de como utilizar aplicaciones de Python aprovechando las arquitecturas multi-core actuales:

Learn to scale your UNIX Python applications to multiple cores by using the multiprocessing module which is built into Python 2.6. Multiprocessing mimics parts of the threading API in Python to give the developer a high level of control over flocks of processes, but also incorporates many additional features unique to processes.