Rénich's Blog

gnu-linux

HowTo: Cómo agrego un usuario efectivamente a un grupo?

Sun 03 July 2011

Bueno, generalmente; cuando estás colaborando con otros usuarios, necesitas grupos en común. Una forma efectiva de hacer esto sería:

# Crear el grupo
groupadd webdev

# Ponerle un password al grupo
gpasswd webdev

# Restríngelo
gpasswd -R webdev

# Luego, un usuario, para entrar, debe aplicar para ser miembro
newgrp webdev

# O, también, puedes …

HowTo: Cómo conectarte a AxtelConmigo desde Fedora 15

Sat 18 June 2011

Ah, qué chido y qué fácil!

Primero, este servicio es la onda. Te permite conectarte desde cualquier dispositivo con un SIP a tu teléfono y recibir o marcar desde ahí!

La onda es registrarse en http://www.axtelconmigo.com.mx/ y tener una línea axtel (obviamente)

Luego, viene lo interesante …

introbella is on the move!

Tue 07 June 2011

Oh yeah! I really like making this announcement.

introbella is on it! We're making new songs and we're gonna be releasing everything in english from now on! World, get ready for some really cool music!

Our newest project is to compose a few EPs. 4-6 songs per album and let …

BoxGrinder 0.9.2 soporta a CloudSigma!

Thu 19 May 2011

Qué buena noticia!

Hoy me contactó Robert para darme la buena noticia!

No sabes qué es BoxGrinder?! Es una madre para crear servers en la nube; con un simple comandito y una definición.

Te invito a ver el tutorial que pongo al fondo. Está de mega-pelos. Así, puedes crear servers …

HowTo: Deploy using git

Fri 13 May 2011

This one is not mine. It's, actually, a transcript. Please, check out the source at the bottom

#
# Local
#

# Create a website
mkdir website && cd website
git init
echo 'Hello, world!' > index.html
git add index.html
git commit -q -m "The humble beginnings of my web site."

# add remotes
git …